From 23d5011e5669099b5177d718f1b6c83eba2d760b Mon Sep 17 00:00:00 2001 From: mikael-lovqvists-claude-agent Date: Sun, 17 May 2026 22:19:44 +0000 Subject: [PATCH] Highlight task rows on hover Co-Authored-By: Claude Sonnet 4.6 --- public/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/style.css b/public/style.css index 9f5f551..ee9bb0c 100644 --- a/public/style.css +++ b/public/style.css @@ -121,6 +121,8 @@ main { padding: 1.25rem; } .task-row[data-priority='normal'] { border-left-color: #5588e0; } .task-row[data-priority='low'] { border-left-color: #555; } +.task-row:hover { background: #2c2c2c; } + .task-row[data-status='done'] { opacity: 0.5; } .task-row[data-status='cancelled'] { opacity: 0.4; text-decoration: line-through; }