From 80ff31748bc5a51dceb80bf473731af9d347a936 Mon Sep 17 00:00:00 2001 From: Aneurin Barker Snook Date: Sat, 5 Sep 2026 00:51:24 +0100 Subject: [PATCH] Explore card rows: match the kanban card's hover style .card-row now highlights its border-color on hover, same as .kanban-card, instead of tinting .card-row__link's background -- a card should look the same hovered whichever view shows it. Co-Authored-By: Claude Sonnet 5 --- web/src/style.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web/src/style.css b/web/src/style.css index d139b5c..f5b0bdc 100644 --- a/web/src/style.css +++ b/web/src/style.css @@ -548,6 +548,12 @@ h1 { background: var(--surface); } +/* Same hover treatment as .kanban-card -- just the border, no background + tint -- since a card looks the same card whichever view it's shown in. */ +.card-row:hover { + border-color: var(--accent); +} + /* Wraps the text + status badge -- the whole row is a link to the card's own view, except the delete button (a sibling, so it isn't nested inside it). */ .card-row__link { @@ -562,10 +568,6 @@ h1 { text-decoration: none; } -.card-row__link:hover { - background: var(--bg); -} - .card-row__text { flex: 1; min-width: 0;