From 8b3923200d3135cc09bc80584bc882c82999136b Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 28 Apr 2021 21:55:01 +0200 Subject: [PATCH] web: fix text-colour for form help text Signed-off-by: Jens Langhammer --- web/src/authentik.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/authentik.css b/web/src/authentik.css index b7b34e288..b6b2cbab0 100644 --- a/web/src/authentik.css +++ b/web/src/authentik.css @@ -100,6 +100,9 @@ body { .ak-initial-load h1 { color: var(--ak-dark-foreground); } +.form-help-text { + color: var(--pf-global--Color--100); +} @media (prefers-color-scheme: dark) { :root { @@ -239,6 +242,9 @@ body { .pf-c-check__label { color: var(--ak-dark-foreground); } + .form-help-text { + color: var(--ak-dark-foreground); + } /* inputs help text */ .pf-c-form__helper-text:not(.pf-m-error) { color: var(--ak-dark-foreground);