From d447d6b2db97b9afb004c08fc39a4697efc39c8f Mon Sep 17 00:00:00 2001 From: Gavin Morrow Date: Tue, 24 Mar 2026 21:27:26 -0400 Subject: [PATCH] Add active styling to `li a`s Should make it feel nicer/more responsive to use. --- server/priv/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/server/priv/style.css b/server/priv/style.css index c3a16e7..a45f03c 100644 --- a/server/priv/style.css +++ b/server/priv/style.css @@ -91,6 +91,12 @@ body { background-color: var(--li-color-bg); &.highlight { + /* TODO: show highlight differently from active */ + /* TODO: constrast between highlight bg and headsign is too low */ + --li-normal-color-bg: var(--color-bg-row-highlight); + } + + &:active { --li-normal-color-bg: var(--color-bg-row-highlight); } -- 2.51.2