From 117e75fcfe9d8ef8747712f7b08f5029197e1203 Mon Sep 17 00:00:00 2001 From: Carsten Graf Date: Mon, 8 Sep 2025 22:05:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20table=20hover=20effects=20?= =?UTF-8?q?and=20text=20visibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated .data-table tr:hover to use subtle dark background - Fixed .data-table th background and text colors - Updated table cell text colors to white - Fixed border colors to match dark theme - Table text is now readable on hover --- public/css/admin-dashboard.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/public/css/admin-dashboard.css b/public/css/admin-dashboard.css index a0fd547..9a41214 100644 --- a/public/css/admin-dashboard.css +++ b/public/css/admin-dashboard.css @@ -177,17 +177,18 @@ body { .data-table td { padding: 12px; text-align: left; - border-bottom: 1px solid #eee; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + color: #ffffff; } .data-table th { - background: #f5f5f5; + background: rgba(255, 255, 255, 0.1); font-weight: bold; - color: #333; + color: #ffffff; } .data-table tr:hover { - background: #f9f9f9; + background: rgba(255, 255, 255, 0.1); } .modal {