🔧 Fix remaining white sections in admin-dashboard

- 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
This commit is contained in:
2025-09-08 21:58:31 +02:00
parent 450dc0f73a
commit 0b8cbc7313

View File

@@ -202,17 +202,18 @@ body {
} }
.modal-content { .modal-content {
background-color: white; background-color: rgba(26, 26, 46, 0.95);
margin: 10% auto; margin: 10% auto;
padding: 20px; padding: 20px;
border-radius: 10px; border-radius: 10px;
width: 90%; width: 90%;
max-width: 500px; max-width: 500px;
position: relative; position: relative;
border: 1px solid rgba(255, 255, 255, 0.1);
} }
.close { .close {
color: #aaa; color: #8892b0;
float: right; float: right;
font-size: 28px; font-size: 28px;
font-weight: bold; font-weight: bold;
@@ -435,21 +436,22 @@ body {
.link-stat-card { .link-stat-card {
text-align: center; text-align: center;
background: white; background: rgba(26, 26, 46, 0.95);
border-radius: 8px; border-radius: 8px;
padding: 20px; 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 { .link-stat-number {
font-size: 2em; font-size: 2em;
font-weight: bold; font-weight: bold;
color: #1e3c72; color: #00d4ff;
margin-bottom: 8px; margin-bottom: 8px;
} }
.link-stat-label { .link-stat-label {
color: #6c757d; color: #8892b0;
font-size: 0.9em; font-size: 0.9em;
font-weight: 500; font-weight: 500;
} }