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>
This commit is contained in:
Hicks-99
2024-09-08 02:04:47 +02:00
committed by GitHub
parent 88928d7f72
commit e1b969446d

View File

@ -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);