1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 15:21:13 +03:00

Fix input slider styles in Firefox

This commit is contained in:
Marliana Lara 2018-07-18 15:59:04 -04:00
parent 91900d5534
commit 4057df07ba
No known key found for this signature in database
GPG Key ID: 38C73B40DFA809EE

View File

@ -278,9 +278,10 @@
height: 1px;
width: 100%;
}
&::-webkit-slider-thumb {
-webkit-appearance: none;
background: @at-color-input-slider-thumb;
background-color: @at-color-input-slider-thumb;
border-radius: 50%;
border: none;
cursor: pointer;
@ -288,6 +289,24 @@
margin-top: -7px;
width: 16px;
}
}
input[type=range]::-moz-range-thumb {
-webkit-appearance: none;
background-color: @at-color-input-slider-thumb;
border-radius: 50%;
border: none;
cursor: pointer;
height: 16px;
width: 16px;
}
input[type=range]::-moz-range-track {
background: @at-color-input-slider-track;
cursor: pointer;
height: 1px;
width: 100%;
}
input[type=range][disabled] {