How can I easily tell (on a phone) if an image has alt text or not on Mastodon. Would be great if Mastodon visibly flagged images that don’t have alt text with a warning in the interface so we know not to boost posts that don’t have it.
@aral long tap. The popup menu with options shows the alt text and the url on top.
@aral that's in chrome when the image is not opened. In firefox it shows only the url when the image is not opened and only the alt text if the image is opened.
@GidiKroon Ah, thanks. So on Safari on iOS, I have to tap to view the imagine in full and then long tap (the latter doesn’t work when imagine is in the post).
@aral speaking of which: I would really like to have an option to describe a picture when boosting a toot without image description
@StroomAfwaarts Me too :)
@aral Experimental POC in Stylus for Firefox I just tried:
```css
div.media-gallery img {
border-left:5px dashed red;
}
div.media-gallery img[alt] {
border-left:5px solid green;
}
```