Skip to content

Instantly share code, notes, and snippets.

@ZackBoe
Created August 25, 2022 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackBoe/bac560f4796cdb2fe43a44258322ca27 to your computer and use it in GitHub Desktop.
Save ZackBoe/bac560f4796cdb2fe43a44258322ca27 to your computer and use it in GitHub Desktop.
YouTube Watched Overlay for Stylus
@-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;
}
}
@ZackBoe
Copy link
Author

ZackBoe commented Aug 25, 2022

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment