Fix unstyled number inputs on the system scheduling form
input[type="number"] was missing from the form field selector added in the redesign, so the scheduler settings fields stayed white-on- white. Caught via manual browser verification. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -364,7 +364,8 @@ form.stacked-form label {
|
|||||||
|
|
||||||
form.stacked-form input[type="text"],
|
form.stacked-form input[type="text"],
|
||||||
form.stacked-form input[type="password"],
|
form.stacked-form input[type="password"],
|
||||||
form.stacked-form input[type="email"] {
|
form.stacked-form input[type="email"],
|
||||||
|
form.stacked-form input[type="number"] {
|
||||||
font: inherit;
|
font: inherit;
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
padding: 0.5rem 0.65rem;
|
padding: 0.5rem 0.65rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user