From 44dc9ca9dd1014198f4365bec932289a1d1f7aef Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 27 Apr 2025 21:03:24 +0600 Subject: [PATCH] web/app.css: add focus ring for select & fix active button focus color --- web/src/app.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/src/app.css b/web/src/app.css index 437ff9ef..f352beeb 100644 --- a/web/src/app.css +++ b/web/src/app.css @@ -245,7 +245,8 @@ button, .button { } button:focus-visible, -a:focus-visible { +a:focus-visible, +select:focus-visible { outline: var(--focus-ring); outline-offset: var(--focus-ring-offset); } @@ -301,7 +302,7 @@ button[disabled] { /* important is used because active class is toggled by state */ /* and added to the end of the list, taking priority */ .active:focus-visible { - color: var(--sidebar-highlight) !important; + color: var(--white); background-color: var(--blue) !important; }