adds volume slider

dummy tho. pranked.
This commit is contained in:
2024-03-04 18:37:08 +01:00
parent 6f4da4046d
commit dfad694d2f
2 changed files with 67 additions and 0 deletions
+28
View File
@@ -293,10 +293,38 @@ input[type="range"]#seek::-webkit-slider-runnable-track{
background-image:url(img/vol-select.svg);
}
input[type="range"]#volume::-webkit-slider-thumb {
background: transparent;
-webkit-appearance: none;
background-image:url(img/vol-select.svg);
transform: translateY(1px);
}
#volume::-moz-range-track {
background: none;
background-image: url(img/slider.svg);
background-position: 0 50%;
background-size: contain;
background-repeat:no-repeat;
box-shadow: none;
border: none;
border-bottom: 1px solid white;
border-right: 1px solid white;
height: 19px;
}
#volume::-webkit-slider-runnable-track {
background: none;
background-image: url(img/slider.svg);
background-position: 0 50%;
background-size: contain;
background-repeat:no-repeat;
box-shadow: none;
border: none;
border-bottom: 1px solid white;
border-right: 1px solid white;
height: 19px;
}
/* Clippy */