Last active
April 15, 2023 16:33
-
-
Save lucaswerkmeister/97d20beb80b4be84abd85ea0946e1d10 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* tentative style for wikis.world; mainly based on https://userstyles.world/style/7548/mastodon-alt-text-indicator */ | |
/* highlight media without alt text in posts */ | |
:is( | |
.status, | |
.detailed-status | |
) :is( | |
.audio-player__canvas, | |
.media-gallery__item-gifv-thumbnail:not(:fullscreen), | |
.media-gallery__item-thumbnail img, | |
.video-player:not(.fullscreen) video | |
):is( | |
:not([title]), | |
[title=""] | |
) { | |
/* add a border (outline would avoid affecting layout but isn’t visible, idk why) */ | |
border: #ac6600 dashed 2px; /* Yellow30 */ | |
/* reduce the impact of the border on the layout */ | |
box-sizing: border-box; | |
} | |
/* ensure the whole border is visible in multi-image galleries */ | |
.media-gallery { | |
overflow: visible; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also, to match the license of the original styles, I hereby release the contents of this gist (including its history so far) under CC0 1.0 :)