mirror of
https://github.com/loof2736/scyfin.git
synced 2025-11-05 00:38:53 +01:00
Remove first and last chapter
This commit is contained in:
parent
bf5b7473ff
commit
1145f6c2b0
@ -11,13 +11,30 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.sliderMarker.watched {
|
.sliderMarker.watched {
|
||||||
background-color: red !important; /* Initially invisible */
|
background-color: red !important;
|
||||||
transition: background-color 0.3s ease !important;
|
transition: background-color 0.3s ease !important;
|
||||||
/* z-index: 10 !important; */
|
z-index: 10 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sliderMarker.watched:hover {
|
.sliderMarker.watched:hover {
|
||||||
background-color: #00a4dc !important; /* Visible on hover */
|
background-color: #00a4dc !important;
|
||||||
transform: scale(2.05) !important;
|
transform: scale(2.05) !important;
|
||||||
/* z-index: 11 !important; */
|
z-index: 11 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Remove first and last chapters */
|
||||||
|
.sliderMarker:first-of-type.unwatched {
|
||||||
|
background-color: transparent !important; /* Example color for the first unwatched */
|
||||||
|
}
|
||||||
|
|
||||||
|
.sliderMarker:last-of-type.unwatched {
|
||||||
|
background-color: transparent !important; /* Example color for the last unwatched */
|
||||||
|
}
|
||||||
|
|
||||||
|
.sliderMarker:first-of-type.watched {
|
||||||
|
background-color: transparent !important; /* Example color for the first watched */
|
||||||
|
}
|
||||||
|
|
||||||
|
.sliderMarker:last-of-type.watched {
|
||||||
|
background-color: transparent !important; /* Example color for the last watched */
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user