From 3208358a03e8244c2aafbbcc213e6fbf5bdfc829 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 9 May 2021 12:44:22 +0200 Subject: [PATCH] web: fix font-color of select inputs in dark mode Signed-off-by: Jens Langhammer --- web/src/authentik.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/authentik.css b/web/src/authentik.css index 35b0caea0..6d6715682 100644 --- a/web/src/authentik.css +++ b/web/src/authentik.css @@ -205,6 +205,9 @@ body { color: var(--ak-dark-foreground); } /* inputs */ + optgroup, option { + color: var(--ak-dark-foreground); + } .pf-c-input-group { --pf-c-input-group--BackgroundColor: transparent; }