From a0fe5e50ebe98b4c746ea2cea7be41409e8d6bd9 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 29 Nov 2025 11:02:13 +0530 Subject: [PATCH] ui: Fix dark theme color for select-all button Tests: - Select-all button in create backup page has mostly unchanged color in light mode and more consistent color in dark mode. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- static/themes/default/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/themes/default/css/main.css b/static/themes/default/css/main.css index 71fd14f60..6856663cd 100644 --- a/static/themes/default/css/main.css +++ b/static/themes/default/css/main.css @@ -766,7 +766,7 @@ input[type='submit'].running-status-button { */ .select-all-label { border: 1px solid var(--bs-secondary-border-subtle); - background-color: var(--neutral-light-color); + background-color: var(--bs-tertiary-bg); border-radius: 0.25rem; padding: 0.5rem 1rem 0.25rem; margin-left: -1rem;