From 712e9b70ce36f1406a3bfd9696710b37b230f501 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sat, 31 Jan 2026 10:40:37 -0500 Subject: [PATCH] Fix table header alignment by removing prompt from checkbox column The '> ' prefix was being added to the checkbox header column, causing misalignment with the data rows. 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 b332630..d6d1966 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -1463,6 +1463,11 @@ th::before { margin-right: 4px; } +/* Remove prompt from checkbox header column */ +th:has(input[type="checkbox"])::before { + content: none; +} + tr:hover { background-color: rgba(0, 255, 65, 0.08); box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);