mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
Visual: improve number inputs padding and make spinners bigger (#2068)
This commit is contained in:
committed by
GitHub
parent
442bd90237
commit
8955efc890
@@ -1,5 +1,16 @@
|
||||
input[type=number] {
|
||||
padding-right: 0; // Setting the padding-right to zero, as some versions Firefox render the arrow-buttons on number inputs useless.
|
||||
padding-right: 6px;
|
||||
}
|
||||
@supports (-moz-appearance:none) {
|
||||
input[type=number] {
|
||||
padding: 6px 2px; // decrease horizontal padding, as some versions of Firefox render the arrow-buttons on number inputs useless otherwise
|
||||
}
|
||||
}
|
||||
input[type=number]::-webkit-inner-spin-button,
|
||||
input[type=number]::-webkit-outer-spin-button {
|
||||
opacity: 1;
|
||||
cursor: pointer;
|
||||
padding: 8px 4px;
|
||||
}
|
||||
|
||||
.sidebar-nav li > a > .fa {
|
||||
|
||||
Reference in New Issue
Block a user