blob: 5fca916f03a6d0ab8b2621d47726d96ef7d6f33f (
plain) (
tree)
|
|
@import '_variables';
@import '_mixins';
@import '_miniature';
.video-thumbnail {
@include miniature-thumbnail;
.progress-bar {
height: 3px;
width: 100%;
position: absolute;
bottom: 0;
background-color: rgba(0, 0, 0, 0.20);
div {
height: 100%;
background-color: var(--mainColor);
}
}
.video-thumbnail-watch-later-overlay,
.video-thumbnail-label-overlay,
.video-thumbnail-duration-overlay {
@include static-thumbnail-overlay;
border-radius: 3px;
font-size: 12px;
font-weight: $font-bold;
z-index: z(miniature);
}
.video-thumbnail-label-overlay {
position: absolute;
padding: 0 5px;
left: 5px;
top: 5px;
&.warning { background-color: orange; }
&.danger { background-color: red; }
}
.video-thumbnail-duration-overlay {
position: absolute;
padding: 0 5px;
right: 5px;
bottom: 5px;
}
.video-thumbnail-actions-overlay {
position: absolute;
display: flex;
flex-direction: column;
right: 5px;
top: 5px;
opacity: 0;
div:not(:first-child) {
margin-top: 2px;
}
.video-thumbnail-watch-later-overlay {
padding: 3px;
my-global-icon {
width: 22px;
height: 22px;
@include apply-svg-color(#fff);
}
}
}
}
|