From 9f3ccfb7c78838042555bc9fbf2707d79da68671 Mon Sep 17 00:00:00 2001 From: "gcp-cherry-pick-bot[bot]" <98988430+gcp-cherry-pick-bot[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 15:31:08 +0100 Subject: [PATCH] web/flows: fix device picker incorrect foreground color (cherry-pick #8067) (#8069) web/flows: fix device picker incorrect foreground color (#8067) Signed-off-by: Jens Langhammer Co-authored-by: Jens L --- .../authenticator_validate/AuthenticatorValidateStage.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts b/web/src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts index 351b890d6..403a80756 100644 --- a/web/src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts +++ b/web/src/flow/stages/authenticator_validate/AuthenticatorValidateStage.ts @@ -89,6 +89,9 @@ export class AuthenticatorValidateStage display: flex; align-items: center; } + :host([theme="dark"]) .authenticator-button { + color: var(--ak-dark-foreground) !important; + } i { font-size: 1.5rem; padding: 1rem 0;