mirror of
https://github.com/loof2736/scyfin.git
synced 2025-11-03 16:08:53 +01:00
chapters
This commit is contained in:
parent
9afe7a516f
commit
be7370232a
21
CSS/chapters-on-player.css
Normal file
21
CSS/chapters-on-player.css
Normal file
@ -0,0 +1,21 @@
|
||||
/* Display Chapters on time bar */
|
||||
.sliderMarker {
|
||||
position: absolute !important;
|
||||
width: 2px !important;
|
||||
height: 12px !important;
|
||||
transform: translate3d(0, 25%, 0) !important;
|
||||
}
|
||||
|
||||
.sliderMarker.unwatched {
|
||||
background-color: rgba(255, 255, 255, 0.3) !important;
|
||||
}
|
||||
|
||||
.sliderMarker.watched {
|
||||
background-color: transparent !important; /* Initially invisible */
|
||||
transition: background-color 0.3s ease; /* Smooth transition */
|
||||
}
|
||||
|
||||
.sliderMarker.watched:hover {
|
||||
background-color: #00a4dc !important; /* Visible on hover */
|
||||
transform: scale(2.05);
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user