Files
swingmusic-extended/src/assets/scss/ProgressBar.scss
T
geoffrey45 5476575d10 major redesign: move to rounded and extra spaceous UI
+ fix `play next` bug
+ add new folder banner image
+ add new now playing component
+ move to gray4 for accent color
+ increase image sizes, for clean UI
2022-08-18 02:55:46 +03:00

73 lines
1.3 KiB
SCSS

input[type="range"] {
-webkit-appearance: none;
margin-right: 15px;
width: calc(100% - 2px);
height: 0.3rem;
border-radius: 5px;
background: $gray linear-gradient(90deg, $accent, $accent) no-repeat;
background-size: 100% 100%;
&::-webkit-slider-thumb {
-webkit-appearance: none;
height: 0;
width: 0.8rem;
border-radius: 50%;
background: $accent;
}
&::-moz-range-thumb {
-webkit-appearance: none;
height: 0;
border-radius: 50%;
background: $accent;
border: none;
}
&::-ms-thumb {
-webkit-appearance: none;
height: 0;
width: 0.8rem;
border-radius: 50%;
background: $accent;
border: none;
}
}
/* Input Thumb */
input[type="range"]::-webkit-slider-thumb:hover {
background: $accent;
}
input[type="range"]::-moz-range-thumb:hover {
background: $accent;
}
input[type="range"]::-ms-thumb:hover {
background: $accent;
}
/* Input Track */
input[type="range"]::-webkit-slider-runnable-track {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}
input[type="range"]::-moz-range-track {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}
input[type="range"]::-ms-track {
-webkit-appearance: none;
box-shadow: none;
border: none;
background: transparent;
}