From 83df9d71ac78ed43051112e22a2a1e4e7af92b8b Mon Sep 17 00:00:00 2001 From: mi Date: Fri, 14 Nov 2025 21:01:46 +1000 Subject: [PATCH] :wheelchair: focus styles for archive --- static/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 555326d..3b3e9f4 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -577,6 +577,14 @@ main { display: block; } +/* Enhanced focus indicator for archive items */ +.archive-item a:focus, +.archive-item a:focus-visible { + outline: 3px solid var(--color-primary); + outline-offset: -3px; /* Inset the outline so it's inside the border */ + background: var(--color-hover-bg); +} + .archive-item img { width: 100%; height: var(--archive-thumbnail-height);