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 <noreply@anthropic.com>
This commit is contained in:
2026-01-31 11:06:13 -05:00
parent 44221b858c
commit df367b9914

View File

@@ -322,21 +322,6 @@ a:not(.btn):hover::after {
/* Smooth table row selection animation */ /* Smooth table row selection animation */
tbody tr { tbody tr {
transition: all 0.2s ease; 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 */ /* Button press effect */