mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-30 13:59:35 +07:00
19 lines
292 B
CSS
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;
|
|
}
|