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;
}
.videoThumbnail:hover .videoWatched {
visibility: hidden;
}
.blogFeed a {
font-size: 20px;
font-weight: bold;

View File

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