Merge pull request #15 from rainwashed/main

added style for the volume bar to match that of the progress bar in order to have it with the scheme
This commit is contained in:
Sammwy 2025-01-21 19:56:25 -03:00 committed by GitHub
commit 8d259ed081
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 96 additions and 1 deletions

View file

@ -364,7 +364,7 @@ function App() {
🎵 🎵
</span> </span>
<span> <span>
<input type="range" min="0" max="100" step="5" draggable="false" value={audioVol} onChange={(e) => setAudioVol(parseInt(e.target?.value))} /> <input className="shadow-sm volume_bar focus:border-pink-500" type="range" min="0" max="100" step="5" draggable="false" value={audioVol} onChange={(e) => setAudioVol(parseInt(e.target?.value))} />
</span> </span>
</div> </div>
</div> </div>

View file

@ -52,3 +52,98 @@ body {
transform: translate(2px, -4px) rotate(-1deg); transform: translate(2px, -4px) rotate(-1deg);
} }
} }
/* styling is done for the volume bar to match the rest of the miku theme. code was generated from: https://danielstern.ca/range.css/?ref=css-tricks#/ and background was replaced with linear-gradient */
input[type=range].volume_bar {
width: 100%;
margin: 5px 0;
background-color: transparent;
-webkit-appearance: none;
}
input[type=range].volume_bar:focus {
outline: none;
}
input[type=range].volume_bar::-webkit-slider-runnable-track {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
border: 0;
border-radius: 25px;
width: 100%;
height: 5px;
cursor: pointer;
}
input[type=range].volume_bar::-webkit-slider-thumb {
margin-top: -5px;
width: 20px;
height: 15px;
background: rgba(6, 182, 212, 0.93);
border: 1px solid #0891b2;
border-radius: 50px;
cursor: pointer;
-webkit-appearance: none;
}
input[type=range].volume_bar:focus::-webkit-slider-runnable-track {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
}
input[type=range].volume_bar::-moz-range-track {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
border: 0;
border-radius: 25px;
width: 100%;
height: 5px;
cursor: pointer;
}
input[type=range].volume_bar::-moz-range-thumb {
width: 20px;
height: 15px;
background: rgba(6, 182, 212, 0.93);
border: 1px solid #0891b2;
border-radius: 50px;
cursor: pointer;
}
input[type=range].volume_bar::-ms-track {
background: transparent;
border-color: transparent;
border-width: 6.8px 0;
color: transparent;
width: 100%;
height: 5px;
cursor: pointer;
}
input[type=range].volume_bar::-ms-fill-lower {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
border: 0;
border-radius: 50px;
}
input[type=range].volume_bar::-ms-fill-upper {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
border: 0;
border-radius: 50px;
}
input[type=range].volume_bar::-ms-thumb {
width: 20px;
height: 15px;
background: rgba(6, 182, 212, 0.93);
border: 1px solid #0891b2;
border-radius: 50px;
cursor: pointer;
margin-top: 0px;
/*Needed to keep the Edge thumb centred*/
}
input[type=range].volume_bar:focus::-ms-fill-lower {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
}
input[type=range].volume_bar:focus::-ms-fill-upper {
background: linear-gradient(to bottom right, rgba(236, 72, 153, 1), rgba(59, 130, 246, 1));
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
/* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
input[type=range].volume_bar {
margin: 0;
/*Edge starts the margin from the thumb, not the track as other browsers do*/
}
}