From 76764c4374c532dd485a7b9ccfe098ea2ebc1ceb Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 13 Dec 2020 15:19:28 +0100 Subject: [PATCH] web: fix background for readonly inputs --- web/src/authentik.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/authentik.css b/web/src/authentik.css index f1257272f..e3ea71e13 100644 --- a/web/src/authentik.css +++ b/web/src/authentik.css @@ -154,6 +154,9 @@ select[multiple] { background-color: var(--ak-dark-background-light); color: var(--ak-dark-foreground); } + .pf-c-form-control[readonly] { + background-color: var(--ak-dark-background-light); + } .pf-c-button.pf-m-control { --pf-c-button--after--BorderColor: var(--ak-dark-background-lighter) var(--ak-dark-background-lighter) var(--pf-c-button--m-control--after--BorderBottomColor) var(--ak-dark-background-lighter); background-color: var(--ak-dark-background-light);