1
1
mirror of https://github.com/go-gitea/gitea synced 2025-09-28 03:28:13 +00:00

Remove arrows on numeric inputs (#8516)

* Nothing needs the arrows for input, especially 2FA

* Moved into LESS
This commit is contained in:
Nicholas Smith
2019-10-18 11:26:13 -05:00
committed by Lauris BH
parent 23045c7d53
commit 05e437f8fd
2 changed files with 12 additions and 0 deletions

View File

@@ -140,6 +140,16 @@
width: 100% !important;
}
}
input[type=number] {
-moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
}
}