FreeTube/src/renderer/components/ft-video-player/ft-video-player.css

32 lines
516 B
CSS
Raw Normal View History

/* stylelint-disable liberty/use-logical-spec */
2020-02-16 19:30:00 +01:00
.relative {
position: relative;
}
.ftVideoPlayer {
width: 100%;
}
.ftVideoPlayer.vjs-user-inactive {
cursor: none;
}
:deep(.sponsorBlockMarker), :deep(.chapterMarker) {
position: absolute;
opacity: 0.6;
}
:deep(.sponsorBlockMarker) {
block-size: 100%;
background-color: var(--primary-color);
}
:deep(.chapterMarker) {
2022-11-02 03:37:04 +01:00
height: 100%;
top: 0;
2022-11-02 03:37:04 +01:00
width: 2px;
z-index: 2;
2022-11-02 03:37:04 +01:00
background-color: #000;
}
/* stylelint-enable liberty/use-logical-spec */