From e1b969446de7609cc2a92eee56b2b1b5e628ccab Mon Sep 17 00:00:00 2001 From: Hicks-99 <94490389+Hicks-99@users.noreply.github.com> Date: Sun, 8 Sep 2024 02:04:47 +0200 Subject: [PATCH] web: fix readonly fields appearing white in dark theme (#11271) fix(ui): Correct readonly fields appearing white in dark theme Signed-off-by: Hicks-99 <94490389+Hicks-99@users.noreply.github.com> --- web/src/common/styles/theme-dark.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/common/styles/theme-dark.css b/web/src/common/styles/theme-dark.css index 003af46c79..ba3d26a882 100644 --- a/web/src/common/styles/theme-dark.css +++ b/web/src/common/styles/theme-dark.css @@ -155,7 +155,7 @@ select[multiple] option:checked { background-color: var(--ak-dark-background-light); } .pf-c-form-control[readonly] { - background-color: var(--ak-dark-background-light); + background-color: var(--ak-dark-background-light) !important; } .pf-c-switch__input:checked ~ .pf-c-switch__label { --pf-c-switch__input--checked__label--Color: var(--ak-dark-foreground);