From 4443a71a98bddc515e2e45083f72fc9c160e273b Mon Sep 17 00:00:00 2001 From: Carsten Graf Date: Mon, 8 Sep 2025 22:00:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20white=20page-stats-content?= =?UTF-8?q?=20cards=20in=20admin-dashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added dark background to .page-stats-content container - Updated .page-item cards with subtle dark background - Added hover effects for better interactivity - Improved visual consistency with dark theme - All page statistics cards now match dark design --- public/css/admin-dashboard.css | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/public/css/admin-dashboard.css b/public/css/admin-dashboard.css index b466482..07b4b05 100644 --- a/public/css/admin-dashboard.css +++ b/public/css/admin-dashboard.css @@ -386,20 +386,32 @@ body { .page-stats-content { font-size: 0.9em; line-height: 1.6; + background: rgba(26, 26, 46, 0.95); + border-radius: 8px; + padding: 15px; + border: 1px solid rgba(255, 255, 255, 0.1); } .page-stats-content .page-item { display: flex; justify-content: space-between; align-items: center; - padding: 8px 0; - border-bottom: 1px solid rgba(255, 255, 255, 0.1); + padding: 12px 15px; + margin: 8px 0; + background: rgba(255, 255, 255, 0.05); + border-radius: 6px; + border: 1px solid rgba(255, 255, 255, 0.1); + transition: background-color 0.3s ease; } .page-stats-content .page-item:last-child { border-bottom: none; } +.page-stats-content .page-item:hover { + background: rgba(255, 255, 255, 0.1); +} + .page-stats-content .page-name { font-weight: 500; color: #ffffff;