Fix audio player

Issue #645
This commit is contained in:
N-Pex 2025-06-19 15:20:43 +02:00
parent c082688bcb
commit 8ff0d6e6cb
3 changed files with 23 additions and 5 deletions

View file

@ -764,6 +764,12 @@ body {
.v-icon {
color: white !important;
}
.v-btn {
background-color: black !important;
}
.v-slider .v-slider-thumb {
color: currentColor !important;
}
}
.play-time {
font-family: "Inter", sans-serif;
@ -776,12 +782,22 @@ body {
flex: 1 1 100%;
height: 30px;
.v-slider__thumb {
.v-slider-thumb {
display: none;
}
&:hover .v-slider__thumb {
&:hover .v-slider-thumb {
display: block;
}
.v-slider-track__background {
height: 1px;
color: currentColor;
}
.v-slider-track__fill {
filter: brightness(2.5);
height: 100%;
border-radius: 0;
opacity: 0.3;
}
}
}