2022-03-16 12:11:30 +01:00
|
|
|
/* custom number input */
|
2022-11-04 20:35:28 +01:00
|
|
|
.customnumberinput {
|
2022-03-16 12:11:30 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 2.2rem;
|
|
|
|
}
|
2022-11-04 20:35:28 +01:00
|
|
|
.customnumberinput button {
|
2022-03-16 12:11:30 +01:00
|
|
|
min-width: 2.5rem !important;
|
|
|
|
width: 2.5rem !important;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2022-11-04 20:35:28 +01:00
|
|
|
.customnumberinput-minus {
|
2022-03-16 12:11:30 +01:00
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2022-11-04 20:35:28 +01:00
|
|
|
.customnumberinput-plus {
|
2022-03-16 12:11:30 +01:00
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2022-11-04 20:35:28 +01:00
|
|
|
.customnumberinput input[type="number"] {
|
2022-03-16 12:11:30 +01:00
|
|
|
max-height: 100%;
|
2022-11-04 20:35:28 +01:00
|
|
|
width: 4rem;
|
2022-03-16 12:11:30 +01:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: .9rem;
|
|
|
|
color: var(--color);
|
|
|
|
text-align: center;
|
|
|
|
background: var(--glass-bg-color2);
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0 !important;
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
appearance: textfield;
|
|
|
|
}
|