Clean directives. Fix mouse-wheel on input number

This commit is contained in:
Gustavo Maximiliano Cortez 2016-08-23 09:37:21 -03:00
commit ce833c6ef9
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
8 changed files with 22 additions and 218 deletions

View file

@ -1045,3 +1045,13 @@ input[type="number"] {
.calculator .button-calc .columns { padding: 20px; }
.calculator .header-calc { top: 18%; }
}
/* Turn Off Number Input Spinners */
input[type=number] {
&::-webkit-inner-spin-button, &::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
}