remove number input stepper

This commit is contained in:
MaysWind
2023-07-08 22:56:16 +08:00
parent 427eaed544
commit ac730d6086
2 changed files with 21 additions and 0 deletions
+11
View File
@@ -1,3 +1,14 @@
/** Global style **/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
/** Common class **/ /** Common class **/
.disabled { .disabled {
opacity: 0.55 !important; opacity: 0.55 !important;
+10
View File
@@ -10,6 +10,16 @@ body {
user-select: none; user-select: none;
} }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance: textfield;
}
/** Common class **/ /** Common class **/
.no-right-border { .no-right-border {
border-right: 0; border-right: 0;