From df367b99146e45c6bcb0216c1c33e293cc895d63 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Sat, 31 Jan 2026 11:06:13 -0500 Subject: [PATCH] Remove tbody tr::before pseudo-element causing column misalignment The ::before element on tbody tr was creating a blank column space that didn't affect the thead, causing visual misalignment. Co-Authored-By: Claude Opus 4.5 --- assets/css/dashboard.css | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index 9fdddca..f9ba43e 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -322,21 +322,6 @@ a:not(.btn):hover::after { /* Smooth table row selection animation */ tbody tr { transition: all 0.2s ease; - position: relative; -} - -tbody tr::before { - content: '>'; - position: absolute; - left: -20px; - opacity: 0; - color: var(--terminal-green); - transition: all 0.2s ease; -} - -tbody tr:hover::before { - opacity: 1; - left: -15px; } /* Button press effect */