Files
chrome-extensions-samples/apps/samples/blink1/style.css
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

19 lines
292 B
CSS

select {
margin: 2px;
width: 140px;
}
input[type=range] {
outline: none;
-webkit-appearance: none;
width: 140px;
}
input[type=range]::-webkit-slider-runnable-track {
transition: opacity .4s ease-in;
}
input[type=range]:disabled::-webkit-slider-runnable-track {
opacity: 0;
}