From 9bf10f184b2df90638060dbf800d09868f359d5b Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Sun, 12 Jul 2026 14:48:36 +0200 Subject: [PATCH] Suppress :focus-visible outline on mode toggle buttons --- web/templates/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/templates/index.html b/web/templates/index.html index 14dcf57..795a5e7 100644 --- a/web/templates/index.html +++ b/web/templates/index.html @@ -156,6 +156,12 @@ border-left: 1px solid var(--rule); } + .mode-btn:focus, + .mode-btn:focus-visible { + outline: none; + box-shadow: none; + } + .mode-btn.active { background: var(--ink); color: var(--white);