Last active
November 23, 2022 22:29
-
-
Save parsingphase/d974aca8c33fe0fed18e15735c9b0e5a to your computer and use it in GitHub Desktop.
CSS to make un-described images more evident
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Use this CSS either as a browser stylesheet or, if you run your own instance, as Site Custom CSS, to | |
* make images without alt-text obvious in your web interface. | |
* | |
* Hover over any obscured image to view it normally. | |
* | |
* Safari user stylesheet: Safari -> Settings -> Advanced Stylesheet | |
* Chrome / Firefox: see https://www.thoughtco.com/user-style-sheet-3469931 | |
* Mastodon (v4) admin: Preferences -> Administration -> Appearance -> Custom CSS | |
*/ | |
.app-holder#mastodon img:not([alt]) { | |
border: solid red 12px !important; | |
opacity: 0.2; | |
width: 95%; | |
height: 90%; | |
} | |
.app-holder#mastodon img:not([alt]):hover { | |
border: none !important; | |
opacity: 1; | |
width: 100%; | |
height: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment