From 492e83db04316552e27105e628d94c53cc6982d5 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Fri, 20 Dec 2024 15:57:06 +0100 Subject: [PATCH] fix(color): set aria-pressed (activated) text color for non-buttons --- front/src/style/colors.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/style/colors.scss b/front/src/style/colors.scss index 9e2b5efea..c864d2b16 100644 --- a/front/src/style/colors.scss +++ b/front/src/style/colors.scss @@ -486,6 +486,7 @@ // Fallback for `active` indicators [aria-pressed=true] { + color: var(--pressed-color, var(--active-color)); background-color: var(--pressed-background-color, var(--active-background-color)); }