Disable arrow buttons on number input fileds

This commit is contained in:
bumi 2020-10-24 13:40:30 +02:00
parent 8e45d9206c
commit 986b8d3aa4
2 changed files with 11 additions and 4 deletions

View File

@ -54,6 +54,13 @@
color: #fff;
opacity: 0.3;
}
input[type=number] {
-moz-appearance: textfield;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input.amount {
width: 300px;
}

File diff suppressed because one or more lines are too long