From aa9e2891853b3018878dc38c6649ea4267689541 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Sun, 16 Aug 2026 11:03:07 +0200 Subject: [PATCH] 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 --- app/web/static/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/web/static/style.css b/app/web/static/style.css index e053f71..27edfbd 100644 --- a/app/web/static/style.css +++ b/app/web/static/style.css @@ -364,7 +364,8 @@ form.stacked-form label { form.stacked-form input[type="text"], 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; color: var(--text); padding: 0.5rem 0.65rem;