mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 13:08:01 +02:00
Bug Fixes
This commit is contained in:
parent
f303f91108
commit
2838030839
6 changed files with 27 additions and 24 deletions
|
@ -72,7 +72,8 @@ function Save() {
|
|||
<button
|
||||
id="btn-play-pause"
|
||||
aria-label="Play or Pause"
|
||||
:class="'bi bi-' + player.state.status"
|
||||
class="bi"
|
||||
:class="'bi-' + player.state.status"
|
||||
@click="player.toggle('play')"></button>
|
||||
|
||||
<div id="statusbar-progress" class="range-wrap">
|
||||
|
@ -225,6 +226,7 @@ input[type='range']:focus {
|
|||
|
||||
/* Webkit */
|
||||
input[type='range']::-webkit-slider-thumb {
|
||||
background-color: var(--color-foreground);
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
opacity: 0;
|
||||
|
@ -232,7 +234,6 @@ input[type='range']::-webkit-slider-thumb {
|
|||
}
|
||||
input[type='range']:hover::-webkit-slider-thumb,
|
||||
#vol input[type='range']::-webkit-slider-thumb {
|
||||
background-color: var(--color-foreground);
|
||||
opacity: 1;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
|
@ -290,6 +291,7 @@ input[type='range']::-moz-range-track {
|
|||
height: 0.25rem;
|
||||
background-color: var(--color-foreground);
|
||||
transition: width 0.4s ease;
|
||||
z-index: 2;
|
||||
}
|
||||
.range-wrap input[type='range'] {
|
||||
--w: 100%;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue