From 070ad9397c7c8082d4f23c37cd17c1619923054a Mon Sep 17 00:00:00 2001 From: anti Date: Wed, 22 Apr 2026 17:29:39 -0400 Subject: [PATCH] style(web): skip row-hover highlight on empty-state rows Hovering the empty-state row in LiveLogs/Dashboard tables briefly lit the full-width td with the data-row glow. Tag the placeholder tr with .empty-row and scope the .logs-table hover rule to :not(.empty-row). --- decnet_web/src/components/Dashboard.css | 2 +- decnet_web/src/components/Dashboard.tsx | 2 +- decnet_web/src/components/LiveLogs.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/decnet_web/src/components/Dashboard.css b/decnet_web/src/components/Dashboard.css index bac67bf3..fb23792e 100644 --- a/decnet_web/src/components/Dashboard.css +++ b/decnet_web/src/components/Dashboard.css @@ -372,7 +372,7 @@ border-bottom: 1px solid rgba(48, 54, 61, 0.5); } -.logs-table tr:hover { +.logs-table tr:not(.empty-row):hover { background-color: rgba(0, 255, 65, 0.03); } diff --git a/decnet_web/src/components/Dashboard.tsx b/decnet_web/src/components/Dashboard.tsx index 20210be6..007eb0bd 100644 --- a/decnet_web/src/components/Dashboard.tsx +++ b/decnet_web/src/components/Dashboard.tsx @@ -417,7 +417,7 @@ const Dashboard: React.FC = ({ searchQuery }) => { ); }) : ( - + { ); }) : ( - +