Added css rules to modify the html sliders
This commit is contained in:
parent
3c39f91082
commit
a14f3aa0d5
2 changed files with 66 additions and 0 deletions
|
@ -64,3 +64,36 @@ background-color: #4CAF50;
|
||||||
.toast.error {
|
.toast.error {
|
||||||
background-color: #f44336;
|
background-color: #f44336;
|
||||||
}
|
}
|
||||||
|
input[type=range] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
width: 70%;
|
||||||
|
height: 7px;
|
||||||
|
margin: 4px 0;
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
input[type=range]:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
input[type=range]::-webkit-slider-thumb {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #a1a1a1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
input[type=range]::-moz-range-thumb {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #a1a1a1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
input[type=range]::-ms-thumb {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #a1a1a1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
|
@ -64,3 +64,36 @@ background-color: #4CAF50;
|
||||||
.toast.error {
|
.toast.error {
|
||||||
background-color: #f44336;
|
background-color: #f44336;
|
||||||
}
|
}
|
||||||
|
input[type=range] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
width: 70%;
|
||||||
|
height: 7px;
|
||||||
|
margin: 4px 0;
|
||||||
|
background-color: #ddd;
|
||||||
|
}
|
||||||
|
input[type=range]:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
input[type=range]::-webkit-slider-thumb {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #a1a1a1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
input[type=range]::-moz-range-thumb {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #a1a1a1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
input[type=range]::-ms-thumb {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
border-radius: 10%;
|
||||||
|
background-color: #a1a1a1;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
Loading…
Reference in a new issue