From 0b8cbc73131e595bd1bcfbb49eacdd5bb2d28e90 Mon Sep 17 00:00:00 2001 From: Carsten Graf Date: Mon, 8 Sep 2025 21:58:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20remaining=20white=20sectio?= =?UTF-8?q?ns=20in=20admin-dashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed .modal-content background to dark theme - Fixed .link-stat-card background to dark theme - Updated text colors in link statistics cards - Changed close button color to match dark theme - All sections now consistently use dark design --- public/css/admin-dashboard.css | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/public/css/admin-dashboard.css b/public/css/admin-dashboard.css index 2d765e3..b466482 100644 --- a/public/css/admin-dashboard.css +++ b/public/css/admin-dashboard.css @@ -202,17 +202,18 @@ body { } .modal-content { - background-color: white; + background-color: rgba(26, 26, 46, 0.95); margin: 10% auto; padding: 20px; border-radius: 10px; width: 90%; max-width: 500px; position: relative; + border: 1px solid rgba(255, 255, 255, 0.1); } .close { - color: #aaa; + color: #8892b0; float: right; font-size: 28px; font-weight: bold; @@ -435,21 +436,22 @@ body { .link-stat-card { text-align: center; - background: white; + background: rgba(26, 26, 46, 0.95); border-radius: 8px; padding: 20px; - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); + border: 1px solid rgba(255, 255, 255, 0.1); } .link-stat-number { font-size: 2em; font-weight: bold; - color: #1e3c72; + color: #00d4ff; margin-bottom: 8px; } .link-stat-label { - color: #6c757d; + color: #8892b0; font-size: 0.9em; font-weight: 500; }