Files
chrome-extensions-samples/samples/blink1/style.css
Reilly Grant 33a0129b6e Use the new chrome.hid add/remove events to support multiple blink(1)s.
This change allows the user to have multiple blink(1) devices connected
to their computer. A selection box is used to switch between them. The
new chrome.hid.onDeviceAdded and chrome.hid.onDeviceRemoved events are
used to keep this list up to date.
2014-12-09 17:28:24 -08: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;
}