From dbb3eb16645ad941996d325b670fdbd428183436 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sat, 3 May 2025 10:47:40 -0500 Subject: [PATCH] Better look for hovering. --- frontend/src/components/tables/table.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/tables/table.css b/frontend/src/components/tables/table.css index 23d885e7..9000d4ea 100644 --- a/frontend/src/components/tables/table.css +++ b/frontend/src/components/tables/table.css @@ -95,12 +95,15 @@ html { /* Style for rows with no streams */ .no-streams-row { - background-color: rgba(255, 68, 68, 0.15) !important; + background-color: rgba(239, 68, 68, 0.15) !important; + box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.3); + /* Add subtle border */ } -/* Make sure hover effect still works on rows with no streams */ +/* Special hover effect for rows with no streams */ .table-striped .tbody .tr.no-streams-row:hover { - background-color: rgb(68, 68, 68) !important; + background-color: rgba(239, 68, 68, 0.3) !important; + /* Darker red on hover */ } /* Prevent text selection when shift key is pressed */