Created
August 25, 2022 02:13
-
-
Save ZackBoe/bac560f4796cdb2fe43a44258322ca27 to your computer and use it in GitHub Desktop.
YouTube Watched Overlay for Stylus
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
@-moz-document url-prefix("https://www.youtube.com/") { | |
.ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"] { | |
position: relative; | |
} | |
.ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"]:after { | |
position: absolute; | |
bottom: 0; | |
box-sizing: border-box; | |
width: 100%; | |
height: 118px; | |
padding-top: 25%; | |
content: 'WATCHED'; | |
text-align: center; | |
font-size: 1.7rem; | |
color: white; | |
background: #000d; | |
pointer-events: none; | |
transition: opacity ease 0.2s; | |
} | |
.ytd-thumbnail:hover .ytd-thumbnail-overlay-resume-playback-renderer[style="width: 100%;"]:after { | |
opacity: 0; | |
} | |
} |
Author
ZackBoe
commented
Aug 25, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment