#ffffff — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #ffffff, aggregated by home.social.
-
For some weird reason in the snippets of code, the hex colour
#ffffffis counted as a hashtag but#000000isn't.Maybe it's to reduce false positives, so messages like "Rust is the #1 programming language" don't get "#1" counted as a hashtag.
-
It's extremely fun playing around with some of the parameters and seeing what you get. In the following bit of code instead of moving halfway from X to P, the code moves a smaller distance, 0.4 times. This generalisation of moving halfway is called linear interpolation (or
lerp), with this case using t = 0.4.<canvas id="canvas" width="720" height="720"></canvas>
<script>
const ctx = canvas.getContext("2d");
ctx.fillStyle = "#000000";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#ffffff";
let x = 0.5, y = 0;
function lerp(x0, x1, t) {
return x0 + (x1 - x0) * t;
}
const t = 0.4;
for (let i = 0; i < 100000; i++) {
const r = Math.random() * 3;
if (r < 1) {
x = lerp(x, 0.5, t);
y = lerp(y, 0, t);
} else if (r < 2) {
x = lerp(x, 0, t);
y = lerp(y, 1, t);
} else {
x = lerp(x, 1, t);
y = lerp(y, 1, t);
}
ctx.fillRect(x * canvas.width, y * canvas.height, 1, 1);
}
</script> -
Fun fact: Fractals like this Sierpiński triangle can be generated using very little code, enough to fit in a single 1024 character Mastodon post. Copying the following HTML into a text file and opening it in your browser will create a canvas that renders this image.
<canvas id="canvas" width="720" height="720"></canvas>
<script>
const ctx = canvas.getContext("2d");
ctx.fillStyle = "#000000";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#ffffff";
let x = 0.5, y = 0;
for (let i = 0; i < 100000; i++) {
const r = Math.random() * 3;
if (r < 1) {
x = (x + 0.5) / 2;
y /= 2;
} else if (r < 2) {
x /= 2;
y = (y + 1) / 2;
} else {
x = (x + 1) / 2;
y = (y + 1) / 2;
}
ctx.fillRect(x * canvas.width, y * canvas.height, 1, 1);
}
</script> -
If I may present the opinion of an owner of a pair of not-so-gently-used eyeballs, the dotted lines are kind of hard to see, but the text is pretty clear.
I do prefer #000000 on #FFFFFF, but that's just because my eyes need the contrast. XD
-
If I may present the opinion of an owner of a pair of not-so-gently-used eyeballs, the dotted lines are kind of hard to see, but the text is pretty clear.
I do prefer #000000 on #FFFFFF, but that's just because my eyes need the contrast. XD
-
If I may present the opinion of an owner of a pair of not-so-gently-used eyeballs, the dotted lines are kind of hard to see, but the text is pretty clear.
I do prefer #000000 on #FFFFFF, but that's just because my eyes need the contrast. XD
-
If I may present the opinion of an owner of a pair of not-so-gently-used eyeballs, the dotted lines are kind of hard to see, but the text is pretty clear.
I do prefer #000000 on #FFFFFF, but that's just because my eyes need the contrast. XD
-
If I may present the opinion of an owner of a pair of not-so-gently-used eyeballs, the dotted lines are kind of hard to see, but the text is pretty clear.
I do prefer #000000 on #FFFFFF, but that's just because my eyes need the contrast. XD
-
tbh now that I've done it and like how it looks and I gotta say yeah I think light-mode is more comfortable when it's not booty blasting white searing my fucking eyes
I encourage people to stop using eye searing #ffffff white or like have something off white/light grey as another option like how alot of apps have a couple dark mode variations -
tbh now that I've done it and like how it looks and I gotta say yeah I think light-mode is more comfortable when it's not booty blasting white searing my fucking eyes
I encourage people to stop using eye searing #ffffff white or like have something off white/light grey as another option like how alot of apps have a couple dark mode variations -
tbh now that I've done it and like how it looks and I gotta say yeah I think light-mode is more comfortable when it's not booty blasting white searing my fucking eyes
I encourage people to stop using eye searing #ffffff white or like have something off white/light grey as another option like how alot of apps have a couple dark mode variations -
tbh now that I've done it and like how it looks and I gotta say yeah I think light-mode is more comfortable when it's not booty blasting white searing my fucking eyes
I encourage people to stop using eye searing #ffffff white or like have something off white/light grey as another option like how alot of apps have a couple dark mode variations -
tbh now that I've done it and like how it looks and I gotta say yeah I think light-mode is more comfortable when it's not booty blasting white searing my fucking eyes
I encourage people to stop using eye searing #ffffff white or like have something off white/light grey as another option like how alot of apps have a couple dark mode variations -
What’s somehow even worse about this: if I open up the image in Photos on both of my phones, the *same* thing happens. In iOS 18, it’s #ffffff, but in iOS 26, it’s #fefefe. So iOS 26 is not accurately showing me the content of my (admittedly insanely simple) image, for… reasons. Good grief.
(If I’m wrong here or there’s some kind of weird setting I’ve turned on, please do say. But I cannot find anything. I’ve already turned off all accessibility stuff, just to check.)
-
What’s somehow even worse about this: if I open up the image in Photos on both of my phones, the *same* thing happens. In iOS 18, it’s #ffffff, but in iOS 26, it’s #fefefe. So iOS 26 is not accurately showing me the content of my (admittedly insanely simple) image, for… reasons. Good grief.
(If I’m wrong here or there’s some kind of weird setting I’ve turned on, please do say. But I cannot find anything. I’ve already turned off all accessibility stuff, just to check.)
-
What’s somehow even worse about this: if I open up the image in Photos on both of my phones, the *same* thing happens. In iOS 18, it’s #ffffff, but in iOS 26, it’s #fefefe. So iOS 26 is not accurately showing me the content of my (admittedly insanely simple) image, for… reasons. Good grief.
(If I’m wrong here or there’s some kind of weird setting I’ve turned on, please do say. But I cannot find anything. I’ve already turned off all accessibility stuff, just to check.)
-
What’s somehow even worse about this: if I open up the image in Photos on both of my phones, the *same* thing happens. In iOS 18, it’s #ffffff, but in iOS 26, it’s #fefefe. So iOS 26 is not accurately showing me the content of my (admittedly insanely simple) image, for… reasons. Good grief.
(If I’m wrong here or there’s some kind of weird setting I’ve turned on, please do say. But I cannot find anything. I’ve already turned off all accessibility stuff, just to check.)
-
What’s somehow even worse about this: if I open up the image in Photos on both of my phones, the *same* thing happens. In iOS 18, it’s #ffffff, but in iOS 26, it’s #fefefe. So iOS 26 is not accurately showing me the content of my (admittedly insanely simple) image, for… reasons. Good grief.
(If I’m wrong here or there’s some kind of weird setting I’ve turned on, please do say. But I cannot find anything. I’ve already turned off all accessibility stuff, just to check.)
-
@elblogdelazaro Yo lo hice con bg #ffffff. Fue solo una prueba rápida, a ver si mejoraba.
-
@elblogdelazaro Yo lo hice con bg #ffffff. Fue solo una prueba rápida, a ver si mejoraba.
-
@elblogdelazaro Yo lo hice con bg #ffffff. Fue solo una prueba rápida, a ver si mejoraba.
-
@elblogdelazaro Yo lo hice con bg #ffffff. Fue solo una prueba rápida, a ver si mejoraba.
-
@elblogdelazaro Yo lo hice con bg #ffffff. Fue solo una prueba rápida, a ver si mejoraba.
-
The Basic Economics of Home Building
.bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; } .bh__table_cell { padding: 5px; background-color: #FFFFFF; } .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; } .bh__table_header { padding: 5px; background-color:#F1F1F1; } .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important;…
https://somervilleyimby.org/2026/04/30/the-basic-economics-of-home-building/
-
The Basic Economics of Home Building
.bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; } .bh__table_cell { padding: 5px; background-color: #FFFFFF; } .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; } .bh__table_header { padding: 5px; background-color:#F1F1F1; } .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important;…
https://somervilleyimby.org/2026/04/30/the-basic-economics-of-home-building/
-
The Basic Economics of Home Building
.bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; } .bh__table_cell { padding: 5px; background-color: #FFFFFF; } .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; } .bh__table_header { padding: 5px; background-color:#F1F1F1; } .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important;…
https://somervilleyimby.org/2026/04/30/the-basic-economics-of-home-building/
-
The Basic Economics of Home Building
.bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; } .bh__table_cell { padding: 5px; background-color: #FFFFFF; } .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; } .bh__table_header { padding: 5px; background-color:#F1F1F1; } .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important;…
https://somervilleyimby.org/2026/04/30/the-basic-economics-of-home-building/
-
The Basic Economics of Home Building
.bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; } .bh__table_cell { padding: 5px; background-color: #FFFFFF; } .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; } .bh__table_header { padding: 5px; background-color:#F1F1F1; } .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important;…
https://somervilleyimby.org/2026/04/30/the-basic-economics-of-home-building/
-
Stylusで投稿入力Textareaを黒背景にした
こんな感じ/* ==UserStyle==
@name fedibird.com
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://fedibird.com") {
textarea, .compose-form__upload-wrapper {
background-color: #282c37 !important;
color: #ffffff !important;
}
.compose-form .compose-form__buttons-wrapper {
background-color: #282c37 !important;
color: #ffffff !important;}
} -
🌟 Things are not always #000000 and #ffffff"
💌 Inky Hop! ce sont des tattoos temporaires, des badges, des magnets et de la papeterie.
🛍️ www.inkyhop.com
-
🌟 Things are not always #000000 and #ffffff"
💌 Inky Hop! ce sont des tattoos temporaires, des badges, des magnets et de la papeterie.
🛍️ www.inkyhop.com
-
🌟 Things are not always #000000 and #ffffff"
💌 Inky Hop! ce sont des tattoos temporaires, des badges, des magnets et de la papeterie.
🛍️ www.inkyhop.com
-
🌟 Things are not always #000000 and #ffffff"
💌 Inky Hop! ce sont des tattoos temporaires, des badges, des magnets et de la papeterie.
🛍️ www.inkyhop.com
-
🌟 Things are not always #000000 and #ffffff"
💌 Inky Hop! ce sont des tattoos temporaires, des badges, des magnets et de la papeterie.
🛍️ www.inkyhop.com
-
CW: but i do have some cursed yaoi for you: (wesker/spencer) psuedo-incest age-gap and thus (grace/zeno) lmao
they only really show spencer in RE5 but he's so palpatine coded and the way Wesker kills him is so 🫦
cmon man
violent thrust into the NAKED OLD MAN RIB CAGE
whispering seductively into his ear
violently pulling out leaving a yaoi trail of cumblood
that's the fun thing about being the master of your own imagination, i can make everything better by making my own shitty retcon that Wesker was part of the little white girl cloning project. (that shit was the scariest shit, not the actual little creepy girls, but SPENCER TAKING A PHOTO WITH 100 LITTLE GIRLS??? HUH???? ELABORATE ON THAT!!!)
Cuz there's a clear parallel between Wesker learning that he was "manufactured", and Grace "learning" that she was/n't a clone. And they're both white blonde women with blue eyes (eugenicist dream)
Grace just sorta goes along with it cuz she's like damn i kilt all these kids?
But Wesker's hentai mind broken and goes a lil cray cray with the buttworms cuz all his wants and hopes and achievements mean nothing, cuz they're just Spencer's wishes, he's just another mass-manufactured product like a hunter or tyrant or shitter zombie
mind broken hentai wesker greatly interests me for various reasons
I will allow Wesker to be greatly child abused as a little girl in every way that Lisa, Marie, and all the other little girls in these games are abused (literal and implied) by spencer and his corporation. And then he injects "T" and penetrates his psuedo daddy, whispers seductively in his ear, and then pulls out with a yaoi spittrail. The psuedo daddy that apparently GENETICALLY IMPRINTED HIM TO RETURN TO SPENCER UNCONCIOUSLY??? ok groomer
(wesker tops spencer in the end, you have to reverse the murder/abuse/rape on your murderer/abuser/rapist)
oh yeah and the parallels lead to grace/zeno, which is not nearly as abusive but zeno is kinda cordial and nice to grace LMAO. if it was wesker he wouldn't be asking her to input the password very patiently standing for 12 hours in the orange room. or showing her stupid vhs tapes to "try" to "convince" her for an hour and politely chaffeuring her into a helicopter. that's how you know zeno's not a clone and just some jabroni mark who got the same strain of "T", he's not being mean for the love of the game. grace would just be happy to be getting her dick wet with zeno's clean, unwormed, bleached white asshole, and zeno would offer it to ask her for da password. this would be a very unappealing couple to color though because they're both #FFFFFF white like ACTUALLY literally white like Sheamus in the sunlight
grace/wesker would be CRAZY i'd do it, stuttering gurl scouts gotta get their dick wet with weskie buttworms
anyways time to draw zeno/wesker to satisfy my selfcest needs
-
CW: but i do have some cursed yaoi for you: (wesker/spencer) psuedo-incest age-gap and thus (grace/zeno) lmao
they only really show spencer in RE5 but he's so palpatine coded and the way Wesker kills him is so 🫦
cmon man
violent thrust into the NAKED OLD MAN RIB CAGE
whispering seductively into his ear
violently pulling out leaving a yaoi trail of cumblood
that's the fun thing about being the master of your own imagination, i can make everything better by making my own shitty retcon that Wesker was part of the little white girl cloning project. (that shit was the scariest shit, not the actual little creepy girls, but SPENCER TAKING A PHOTO WITH 100 LITTLE GIRLS??? HUH???? ELABORATE ON THAT!!!)
Cuz there's a clear parallel between Wesker learning that he was "manufactured", and Grace "learning" that she was/n't a clone. And they're both white blonde women with blue eyes (eugenicist dream)
Grace just sorta goes along with it cuz she's like damn i kilt all these kids?
But Wesker's hentai mind broken and goes a lil cray cray with the buttworms cuz all his wants and hopes and achievements mean nothing, cuz they're just Spencer's wishes, he's just another mass-manufactured product like a hunter or tyrant or shitter zombie
mind broken hentai wesker greatly interests me for various reasons
I will allow Wesker to be greatly child abused as a little girl in every way that Lisa, Marie, and all the other little girls in these games are abused (literal and implied) by spencer and his corporation. And then he injects "T" and penetrates his psuedo daddy, whispers seductively in his ear, and then pulls out with a yaoi spittrail. The psuedo daddy that apparently GENETICALLY IMPRINTED HIM TO RETURN TO SPENCER UNCONCIOUSLY??? ok groomer
(wesker tops spencer in the end, you have to reverse the murder/abuse/rape on your murderer/abuser/rapist)
oh yeah and the parallels lead to grace/zeno, which is not nearly as abusive but zeno is kinda cordial and nice to grace LMAO. if it was wesker he wouldn't be asking her to input the password very patiently standing for 12 hours in the orange room. or showing her stupid vhs tapes to "try" to "convince" her for an hour and politely chaffeuring her into a helicopter. that's how you know zeno's not a clone and just some jabroni mark who got the same strain of "T", he's not being mean for the love of the game. grace would just be happy to be getting her dick wet with zeno's clean, unwormed, bleached white asshole, and zeno would offer it to ask her for da password. this would be a very unappealing couple to color though because they're both #FFFFFF white like ACTUALLY literally white like Sheamus in the sunlight
grace/wesker would be CRAZY i'd do it, stuttering gurl scouts gotta get their dick wet with weskie buttworms
anyways time to draw zeno/wesker to satisfy my selfcest needs
-
CW: but i do have some cursed yaoi for you: (wesker/spencer) psuedo-incest age-gap and thus (grace/zeno) lmao
they only really show spencer in RE5 but he's so palpatine coded and the way Wesker kills him is so 🫦
cmon man
violent thrust into the NAKED OLD MAN RIB CAGE
whispering seductively into his ear
violently pulling out leaving a yaoi trail of cumblood
that's the fun thing about being the master of your own imagination, i can make everything better by making my own shitty retcon that Wesker was part of the little white girl cloning project. (that shit was the scariest shit, not the actual little creepy girls, but SPENCER TAKING A PHOTO WITH 100 LITTLE GIRLS??? HUH???? ELABORATE ON THAT!!!)
Cuz there's a clear parallel between Wesker learning that he was "manufactured", and Grace "learning" that she was/n't a clone. And they're both white blonde women with blue eyes (eugenicist dream)
Grace just sorta goes along with it cuz she's like damn i kilt all these kids?
But Wesker's hentai mind broken and goes a lil cray cray with the buttworms cuz all his wants and hopes and achievements mean nothing, cuz they're just Spencer's wishes, he's just another mass-manufactured product like a hunter or tyrant or shitter zombie
mind broken hentai wesker greatly interests me for various reasons
I will allow Wesker to be greatly child abused as a little girl in every way that Lisa, Marie, and all the other little girls in these games are abused (literal and implied) by spencer and his corporation. And then he injects "T" and penetrates his psuedo daddy, whispers seductively in his ear, and then pulls out with a yaoi spittrail. The psuedo daddy that apparently GENETICALLY IMPRINTED HIM TO RETURN TO SPENCER UNCONCIOUSLY??? ok groomer
(wesker tops spencer in the end, you have to reverse the murder/abuse/rape on your murderer/abuser/rapist)
oh yeah and the parallels lead to grace/zeno, which is not nearly as abusive but zeno is kinda cordial and nice to grace LMAO. if it was wesker he wouldn't be asking her to input the password very patiently standing for 12 hours in the orange room. or showing her stupid vhs tapes to "try" to "convince" her for an hour and politely chaffeuring her into a helicopter. that's how you know zeno's not a clone and just some jabroni mark who got the same strain of "T", he's not being mean for the love of the game. grace would just be happy to be getting her dick wet with zeno's clean, unwormed, bleached white asshole, and zeno would offer it to ask her for da password. this would be a very unappealing couple to color though because they're both #FFFFFF white like ACTUALLY literally white like Sheamus in the sunlight
grace/wesker would be CRAZY i'd do it, stuttering gurl scouts gotta get their dick wet with weskie buttworms
anyways time to draw zeno/wesker to satisfy my selfcest needs
-
CW: but i do have some cursed yaoi for you: (wesker/spencer) psuedo-incest age-gap and thus (grace/zeno) lmao
they only really show spencer in RE5 but he's so palpatine coded and the way Wesker kills him is so 🫦
cmon man
violent thrust into the NAKED OLD MAN RIB CAGE
whispering seductively into his ear
violently pulling out leaving a yaoi trail of cumblood
that's the fun thing about being the master of your own imagination, i can make everything better by making my own shitty retcon that Wesker was part of the little white girl cloning project. (that shit was the scariest shit, not the actual little creepy girls, but SPENCER TAKING A PHOTO WITH 100 LITTLE GIRLS??? HUH???? ELABORATE ON THAT!!!)
Cuz there's a clear parallel between Wesker learning that he was "manufactured", and Grace "learning" that she was/n't a clone. And they're both white blonde women with blue eyes (eugenicist dream)
Grace just sorta goes along with it cuz she's like damn i kilt all these kids?
But Wesker's hentai mind broken and goes a lil cray cray with the buttworms cuz all his wants and hopes and achievements mean nothing, cuz they're just Spencer's wishes, he's just another mass-manufactured product like a hunter or tyrant or shitter zombie
mind broken hentai wesker greatly interests me for various reasons
I will allow Wesker to be greatly child abused as a little girl in every way that Lisa, Marie, and all the other little girls in these games are abused (literal and implied) by spencer and his corporation. And then he injects "T" and penetrates his psuedo daddy, whispers seductively in his ear, and then pulls out with a yaoi spittrail. The psuedo daddy that apparently GENETICALLY IMPRINTED HIM TO RETURN TO SPENCER UNCONCIOUSLY??? ok groomer
(wesker tops spencer in the end, you have to reverse the murder/abuse/rape on your murderer/abuser/rapist)
oh yeah and the parallels lead to grace/zeno, which is not nearly as abusive but zeno is kinda cordial and nice to grace LMAO. if it was wesker he wouldn't be asking her to input the password very patiently standing for 12 hours in the orange room. or showing her stupid vhs tapes to "try" to "convince" her for an hour and politely chaffeuring her into a helicopter. that's how you know zeno's not a clone and just some jabroni mark who got the same strain of "T", he's not being mean for the love of the game. grace would just be happy to be getting her dick wet with zeno's clean, unwormed, bleached white asshole, and zeno would offer it to ask her for da password. this would be a very unappealing couple to color though because they're both #FFFFFF white like ACTUALLY literally white like Sheamus in the sunlight
grace/wesker would be CRAZY i'd do it, stuttering gurl scouts gotta get their dick wet with weskie buttworms
anyways time to draw zeno/wesker to satisfy my selfcest needs
-
This pairs well with a banner that warns you if an image doesn't have alt text, so you know not to boost it if you want to keep Mastodon accessible to people with vision problems (and encourage alt text, because I love reading people's descriptions of images and often get more out of it if there's alt text):
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "Do not boost - no alt text";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
This pairs well with a banner that warns you if an image doesn't have alt text, so you know not to boost it if you want to keep Mastodon accessible to people with vision problems (and encourage alt text, because I love reading people's descriptions of images and often get more out of it if there's alt text):
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "Do not boost - no alt text";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
This pairs well with a banner that warns you if an image doesn't have alt text, so you know not to boost it if you want to keep Mastodon accessible to people with vision problems (and encourage alt text, because I love reading people's descriptions of images and often get more out of it if there's alt text):
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "Do not boost - no alt text";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
This pairs well with a banner that warns you if an image doesn't have alt text, so you know not to boost it if you want to keep Mastodon accessible to people with vision problems (and encourage alt text, because I love reading people's descriptions of images and often get more out of it if there's alt text):
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "Do not boost - no alt text";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
This pairs well with a banner that warns you if an image doesn't have alt text, so you know not to boost it if you want to keep Mastodon accessible to people with vision problems (and encourage alt text, because I love reading people's descriptions of images and often get more out of it if there's alt text):
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "Do not boost - no alt text";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
@alice
here you go, it's hacky (like all things I make) so hopefully someone else can refine. Only works for the mastodon web interface..media-gallery__item:not(:has(button.media-gallery__alt__label)) {
outline-offset: 0px !important;
border-radius: 0px !important;
border: 2px solid red;}
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "MISSING ALTTEXT";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
@alice
here you go, it's hacky (like all things I make) so hopefully someone else can refine. Only works for the mastodon web interface..media-gallery__item:not(:has(button.media-gallery__alt__label)) {
outline-offset: 0px !important;
border-radius: 0px !important;
border: 2px solid red;}
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "MISSING ALTTEXT";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
@alice
here you go, it's hacky (like all things I make) so hopefully someone else can refine. Only works for the mastodon web interface..media-gallery__item:not(:has(button.media-gallery__alt__label)) {
outline-offset: 0px !important;
border-radius: 0px !important;
border: 2px solid red;}
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "MISSING ALTTEXT";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
@alice
here you go, it's hacky (like all things I make) so hopefully someone else can refine. Only works for the mastodon web interface..media-gallery__item:not(:has(button.media-gallery__alt__label)) {
outline-offset: 0px !important;
border-radius: 0px !important;
border: 2px solid red;}
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "MISSING ALTTEXT";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -
@alice
here you go, it's hacky (like all things I make) so hopefully someone else can refine. Only works for the mastodon web interface..media-gallery__item:not(:has(button.media-gallery__alt__label)) {
outline-offset: 0px !important;
border-radius: 0px !important;
border: 2px solid red;}
.media-gallery__item:not(:has(button.media-gallery__alt__label))::before {
content: "MISSING ALTTEXT";
font-size: 16px;
color:#FFFFFF;
background-color: red;
} -