hotfix slider thumb

This commit is contained in:
Samuel Breznjak 2025-01-25 19:25:36 +01:00
parent ec2cc713f9
commit 75ce39a6af
3 changed files with 31 additions and 4 deletions

View file

@ -436,8 +436,7 @@ body {
var(--border-dark); var(--border-dark);
} }
input::-webkit-slider-thumb, input::-webkit-slider-thumb {
input::-moz-range-thumb {
-webkit-appearance: none; -webkit-appearance: none;
appearance: none; appearance: none;
width: 8px; width: 8px;
@ -451,6 +450,21 @@ body {
border-radius: 0; border-radius: 0;
} }
input::-moz-range-thumb {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 8px;
height: 16px;
background: var(--bg);
cursor: pointer;
border: 1px solid;
box-sizing: border-box;
border-color: var(--border-light) var(--border-dark) var(--border-dark)
var(--border-light);
border-radius: 0;
}
label { label {
color: var(--secondary--text); color: var(--secondary--text);
font-size: 1rem; font-size: 1rem;

2
css/cs16.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -414,7 +414,20 @@ body {
var(--border-dark); var(--border-dark);
} }
input::-webkit-slider-thumb, input::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 8px;
height: 16px;
background: var(--bg);
cursor: pointer;
border: 1px solid;
box-sizing: border-box;
border-color: var(--border-light) var(--border-dark) var(--border-dark)
var(--border-light);
border-radius: 0;
}
input::-moz-range-thumb { input::-moz-range-thumb {
-webkit-appearance: none; -webkit-appearance: none;
appearance: none; appearance: none;