Remove number picker's increase/decrease buttons
We can't style them, and they don't fit the noVNC CSS style - we are better off without them.
This commit is contained in:
parent
deb76f97cd
commit
28e1717cf9
|
@ -88,6 +88,20 @@ textarea {
|
||||||
vertical-align: baseline; /* Firefox gives "text-bottom" by default */
|
vertical-align: baseline; /* Firefox gives "text-bottom" by default */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ------- NUMBER PICKERS ------- */
|
||||||
|
|
||||||
|
/* We can't style the number spinner buttons:
|
||||||
|
https://github.com/w3c/csswg-drafts/issues/8777 */
|
||||||
|
input[type=number]::-webkit-inner-spin-button,
|
||||||
|
input[type=number]::-webkit-outer-spin-button {
|
||||||
|
/* Get rid of increase/decrease buttons in WebKit */
|
||||||
|
appearance: none;
|
||||||
|
}
|
||||||
|
input[type=number] {
|
||||||
|
/* Get rid of increase/decrease buttons in Firefox */
|
||||||
|
appearance: textfield;
|
||||||
|
}
|
||||||
|
|
||||||
/* ------- BUTTON ACTIVATIONS -------- */
|
/* ------- BUTTON ACTIVATIONS -------- */
|
||||||
|
|
||||||
/* A color overlay that depends on the activation level. The level can then be
|
/* A color overlay that depends on the activation level. The level can then be
|
||||||
|
|
Loading…
Reference in New Issue