From f95beac6be21502d1aa0086167981b1fba46b024 Mon Sep 17 00:00:00 2001 From: Carsten Graf Date: Mon, 8 Sep 2025 22:02:39 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20remaining=20white=20page-s?= =?UTF-8?q?tat-card=20elements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated .page-stat-card background to dark theme - Changed border-left color to cyan accent - Updated h3 text color to white - Fixed close button hover color - All page statistics cards now fully dark --- 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 07b4b05..a0fd547 100644 --- a/public/css/admin-dashboard.css +++ b/public/css/admin-dashboard.css @@ -224,7 +224,7 @@ body { } .close:hover { - color: #000; + color: #ffffff; } .form-group { @@ -371,14 +371,15 @@ body { } .page-stat-card { - background: #f8f9fa; + background: rgba(26, 26, 46, 0.95); border-radius: 8px; padding: 20px; - border-left: 4px solid #1e3c72; + border-left: 4px solid #00d4ff; + border: 1px solid rgba(255, 255, 255, 0.1); } .page-stat-card h3 { - color: #1e3c72; + color: #ffffff; margin-bottom: 15px; font-size: 1.2em; }