fixing range input for /27204

This commit is contained in:
x
2024-06-10 18:36:24 +02:00
parent c0751b3615
commit 8dba281d3c

View File

@@ -4290,3 +4290,32 @@ pre {
height: 190px;
background-size: cover;
}
input[type=range]{
width: 100px;
}
input[type=range]::-moz-range-track {
width: 100px;
height: 5px;
background: #ddd;
border: none;
border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
background: #2080da;
}
input[type=range]:-moz-focusring{
outline: 1px solid white;
outline-offset: -1px;
}
input[type=range]:focus::-moz-range-track {
background: #ccc;
}