transition hover

This commit is contained in:
Julien9969 2024-08-02 19:01:06 +02:00
parent f6d572bc00
commit bf5b7473ff

View File

@ -13,11 +13,11 @@
.sliderMarker.watched { .sliderMarker.watched {
background-color: red !important; /* Initially invisible */ background-color: red !important; /* Initially invisible */
transition: background-color 0.3s ease !important; transition: background-color 0.3s ease !important;
z-index: 10 !important; /* Higher z-index to be on top */ /* z-index: 10 !important; */
} }
.sliderMarker.watched:hover { .sliderMarker.watched:hover {
background-color: #00a4dc !important; /* Visible on hover */ background-color: #00a4dc !important; /* Visible on hover */
transform: scale(2.05) !important; transform: scale(2.05) !important;
z-index: 11 !important; /* Ensure it stays on top when hovered */ /* z-index: 11 !important; */
} }