Hide number input spinners
This commit is contained in:
parent
90273a0109
commit
f3f3a153d5
2 changed files with 9 additions and 0 deletions
8
static/css/style.css
Normal file
8
static/css/style.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
input[type=number]::-webkit-inner-spin-button,
|
||||
input[type=number]::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
input[type="number"] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
|
@ -14,6 +14,7 @@
|
|||
|
||||
<link href="/bs/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/fa/css/all.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<script src="/js/jquery-3.3.1.min.js"></script>
|
||||
<script src="/bs/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue