Fix slider thumb style on Firefox (#3)

This commit is contained in:
Samuel Breznjak 2025-01-25 18:13:42 +01:00 committed by GitHub
commit ec2cc713f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 3 deletions

View file

@ -436,7 +436,8 @@ body {
var(--border-dark);
}
input::-webkit-slider-thumb {
input::-webkit-slider-thumb,
input::-moz-range-thumb {
-webkit-appearance: none;
appearance: none;
width: 8px;
@ -447,6 +448,7 @@ body {
box-sizing: border-box;
border-color: var(--border-light) var(--border-dark) var(--border-dark)
var(--border-light);
border-radius: 0;
}
label {

2
css/cs16.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -414,7 +414,8 @@ body {
var(--border-dark);
}
input::-webkit-slider-thumb {
input::-webkit-slider-thumb,
input::-moz-range-thumb {
-webkit-appearance: none;
appearance: none;
width: 8px;
@ -425,6 +426,7 @@ body {
box-sizing: border-box;
border-color: var(--border-light) var(--border-dark) var(--border-dark)
var(--border-light);
border-radius: 0;
}
label {