Fixed small issue with number boxes

This commit is contained in:
Nicole Rappe 2025-05-01 01:53:11 -06:00
parent 8a4b9ebb05
commit 9f87ce6a2b

View File

@ -178,38 +178,4 @@ label {
display: inline-block !important;
width: auto !important;
max-width: 1000px; /* or whatever max width you like */
}
/* ======================================= */
/* NUMBER INPUT SPINNER OVERRIDE */
/* ======================================= */
input[type="number"] {
background-color: #2c2c2c;
color: #ccc;
border: 1px solid #444;
padding: 4px;
font-size: 12px;
}
/* Webkit browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
appearance: none;
background-color: #2c2c2c;
border-left: 1px solid #444;
border-right: 1px solid #444;
height: 100%;
width: 16px;
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 4l3 3H3z' fill='%2358a6ff'/%3E%3Cpath d='M6 8l3-3H3z' fill='%2358a6ff'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
background-size: 10px 10px;
cursor: pointer;
}
/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}
}