Browse Source

Removing spinner controls from number input field

pull/160/head
Benard Ebinu 8 years ago
parent
commit
5cc76b0650
2 changed files with 14 additions and 1 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +13
    -0
      edivorce/apps/core/static/css/main.scss

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 13
- 0
edivorce/apps/core/static/css/main.scss View File

@ -126,6 +126,19 @@ img {
max-width: 100%;
height: auto;
}
/* For Firefox */
input[type='number'] {
-moz-appearance:textfield;
}
/* Webkit browsers like Safari and Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Bootstrap Overrides*/
.table > tbody > tr > td,
.table > tbody > tr > th,


Loading…
Cancel
Save