From 58faf3876cc355e1ab8ca16828ae8eca40345bd3 Mon Sep 17 00:00:00 2001 From: Scarriffle Date: Sat, 30 May 2026 22:07:20 +0200 Subject: [PATCH] fix: hartcodiertes Blau bei "heute"-Spalte & Admin-Badge entfernt - .month-col.today nutzt jetzt --today-color statt fixem Blau (Spaltenhintergrund passt nun zum Tageskreis / Theme-Farbe) - .badge-admin nutzt --primary-dim statt fixem Blau Co-Authored-By: Claude Opus 4.8 --- frontend/css/app.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/css/app.css b/frontend/css/app.css index a128caf..23458a4 100644 --- a/frontend/css/app.css +++ b/frontend/css/app.css @@ -509,7 +509,7 @@ a { color: var(--primary); text-decoration: none; } } .month-col:last-child { border-right: none; } .month-col:hover { background: var(--bg-hover); } -.month-col.today { background: rgba(66,133,244,.08); } +.month-col.today { background: color-mix(in srgb, var(--today-color) 9%, transparent); } .month-col.month-selected { background: var(--primary-dim); } .month-col.month-selected .cell-day { border: 2px solid var(--primary); color: var(--primary); font-weight: 700; } .month-col.month-selected .cell-day.today { background: var(--today-color); color: #fff; border: none; } @@ -1057,7 +1057,7 @@ a { color: var(--primary); text-decoration: none; } .settings-section h4 { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; } .badge-admin { font-size: 10px; padding: 2px 6px; - background: rgba(66,133,244,.2); color: var(--primary); + background: var(--primary-dim); color: var(--primary); border-radius: 10px; font-weight: 600; } .users-list-item {