From 3e0bdb98836d5647eff5235955c7cb4d04948d67 Mon Sep 17 00:00:00 2001 From: Ajit Mehrotra Date: Tue, 10 Feb 2026 16:43:17 -0500 Subject: [PATCH] fix(css): exclude webgui styles from buttons/selects in api components --- emhttp/plugins/dynamix/styles/default-base.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emhttp/plugins/dynamix/styles/default-base.css b/emhttp/plugins/dynamix/styles/default-base.css index 0ac1f9323..57be40503 100755 --- a/emhttp/plugins/dynamix/styles/default-base.css +++ b/emhttp/plugins/dynamix/styles/default-base.css @@ -2274,9 +2274,9 @@ div#title.ud { input[type="button"], input[type="reset"], input[type="submit"], - button, - button[type="button"], - a.button { + button:where(:not(.unapi *)), + button[type="button"]:where(:not(.unapi *)), + a.button:where(:not(.unapi *)) { font-family: clear-sans; font-size: 1.2rem; font-weight: normal; @@ -2346,7 +2346,7 @@ div#title.ud { color: var(--blue-700); } - select { + select:where(:not(.unapi *)) { min-width: 188px; max-width: 314px; padding: 6px 14px 6px 6px;