Hide watched overlay on hover

This commit is contained in:
PrestonN 2019-08-09 09:38:37 -04:00
parent 9e2ff44ccd
commit f2440e1959
2 changed files with 6 additions and 4 deletions

View File

@ -647,6 +647,10 @@ a {
color: #FFEB3B; color: #FFEB3B;
} }
.videoThumbnail:hover .videoWatched {
visibility: hidden;
}
.blogFeed a { .blogFeed a {
font-size: 20px; font-size: 20px;
font-weight: bold; font-weight: bold;

View File

@ -136,8 +136,7 @@
position: relative; position: relative;
bottom: 40px; bottom: 40px;
color: white; color: white;
background-color: black; background-color: rgba(0,0,0,0.7);
opacity: 0.7;
padding: 2px; padding: 2px;
font-size: 13px; font-size: 13px;
text-align: right; text-align: right;
@ -146,11 +145,10 @@
.videoWatched { .videoWatched {
width: 100%; width: 100%;
height: 155px; height: 155px;
background-color: black; background-color: rgba(0,0,0,0.4);
color: white; color: white;
position: relative; position: relative;
bottom: 187px; bottom: 187px;
opacity: 0.4;
pointer-events: none; pointer-events: none;
} }