From 44221b858c71cb9f21a1f8a6dc0d2350516ae145 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sat, 31 Jan 2026 10:44:11 -0500 Subject: [PATCH] Fix thead/tbody alignment by adding matching border to header The tbody first column had a 6px left border for priority indicator, but the thead first column didn't have this border, causing misalignment. Co-Authored-By: Claude Opus 4.5 --- assets/css/dashboard.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index d6d1966..9fdddca 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -1486,6 +1486,11 @@ tbody tr.keyboard-selected td { text-shadow: 0 0 5px rgba(0, 255, 65, 0.5); } +/* Priority indicator border - match header and body first column */ +thead tr th:first-child { + border-left: 6px solid var(--terminal-green); +} + tbody tr td:first-child { border-left: 6px solid; }