fix(ags): make slider knob work even when at 0
This commit is contained in:
parent
3bc5c9ce97
commit
4e19e5525a
3 changed files with 3 additions and 1 deletions
|
@ -148,7 +148,7 @@ export const PositionSlider = (player, params) => EventBox({
|
||||||
s.setCss(`highlight { background-color: ${player.colors.value.buttonAccent}; }
|
s.setCss(`highlight { background-color: ${player.colors.value.buttonAccent}; }
|
||||||
slider { background-color: ${player.colors.value.buttonAccent}; }
|
slider { background-color: ${player.colors.value.buttonAccent}; }
|
||||||
slider:hover { background-color: ${player.colors.value.hoverAccent}; }
|
slider:hover { background-color: ${player.colors.value.hoverAccent}; }
|
||||||
trough { background-color: ${player.colors.value.buttonAccent}; }`);
|
trough { background-color: ${player.colors.value.buttonText}; }`);
|
||||||
}],
|
}],
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
|
|
|
@ -93,6 +93,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
trough {
|
trough {
|
||||||
|
margin: 0 8px;
|
||||||
border-radius: 2em;
|
border-radius: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -657,6 +657,7 @@ calendar:indeterminate {
|
||||||
border-radius: 2em; }
|
border-radius: 2em; }
|
||||||
|
|
||||||
.position-slider trough {
|
.position-slider trough {
|
||||||
|
margin: 0 8px;
|
||||||
border-radius: 2em; }
|
border-radius: 2em; }
|
||||||
|
|
||||||
.position-slider slider {
|
.position-slider slider {
|
||||||
|
|
Loading…
Reference in a new issue