From 4a71710276ed0e5204e88b10769439b0c17a1ce3 Mon Sep 17 00:00:00 2001 From: Tim Wilkinson Date: Sun, 1 Dec 2024 15:00:27 -0800 Subject: [PATCH] Fix dhcp option input field number styling (#1731) --- files/app/resource/css/admin.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/files/app/resource/css/admin.css b/files/app/resource/css/admin.css index 24fafd0d..5a0f0e03 100755 --- a/files/app/resource/css/admin.css +++ b/files/app/resource/css/admin.css @@ -133,6 +133,7 @@ #ctrl-modal input[type=text], #ctrl-modal input[type=password], +#ctrl-modal input[type=number], #ctrl-modal input[type=file] { color: var(--ctrl-modal-fg-color); @@ -148,6 +149,7 @@ } #ctrl-modal input[type=text]:invalid, #ctrl-modal input[type=password]:invalid, +#ctrl-modal input[type=number]:invalid, #ctrl-modal select:invalid { border-color: var(--ctrl-modal-border-color-error) !important; @@ -160,12 +162,14 @@ } #ctrl-modal .noborder input[type=text], #ctrl-modal .noborder input[type=password], +#ctrl-modal .noborder input[type=number], #ctrl-modal .noborder input[type=file] { border-color: transparent; } #ctrl-modal input[type=text]:disabled, #ctrl-modal input[type=password]:disabled, +#ctrl-modal input[type=number]:disabled, #ctrl-modal input[type=file]:disabled, #ctrl-modal select:disabled {