From f3c15e25825c65d836f616bbc737a5704121e6ef Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 19 Mar 2026 10:55:50 -0400 Subject: [PATCH] Fix table row blink when cursor leaves the table transition:all was firing on every row simultaneously when the cursor left the table. Scoped it to background-color only. Also removed the inset box-shadow from tr:hover which forced repaint layer thrashing. Co-Authored-By: Claude Sonnet 4.6 --- assets/css/dashboard.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index a0c3260..117e549 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -321,7 +321,7 @@ a:not(.btn):hover::after { /* Smooth table row selection animation */ tbody tr { - transition: all 0.2s ease; + transition: background-color 0.15s ease; } /* Button press effect */ @@ -1807,7 +1807,6 @@ th:has(input[type="checkbox"])::before { tr:hover { background-color: rgba(0, 255, 65, 0.08); - box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1); } /* Keyboard navigation selected row */