Last active
January 26, 2021 22:19
-
-
Save ZackBoe/2c8b0e4ec8cbea910fcc0891198f328d to your computer and use it in GitHub Desktop.
YouTube watched video overlay userstyle
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
.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.3rem; | |
color: white; | |
background: #000c; | |
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
Jan 26, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment