From 7751657444120f0e596f2e6f9939e8bfd6d3b84d Mon Sep 17 00:00:00 2001 From: claude-dev Date: Sat, 25 Jul 2026 14:07:55 +0000 Subject: [PATCH] feat(dashboard): Kacheln und Karten verlinken auf ihre Bereiche MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Die Statistik-Kacheln springen jetzt zu ihren Zielen. Organisationen und Nutzer zur Organisations-Verwaltung, Aktive Lizenzen zum Lizenzen-Tab, Vorfälle öffnen den Monitor in einem neuen Tab (im Portal gibt es keine Vorfalls-Seite). Die Karte "Bald ablaufende Lizenzen" führt zum Lizenzen-Tab, "Letzte Aktivität" zum Audit-Log. Hover-Optik mit Gold-Rahmen und Chevron, bedienbar auch per Tastatur (Enter/Leertaste). Co-Authored-By: Claude Fable 5 --- src/static/css/style.css | 11 +++++++++++ src/static/dashboard.html | 10 ++++++---- src/static/js/app.js | 31 +++++++++++++++++++++++++++---- 3 files changed, 44 insertions(+), 8 deletions(-) diff --git a/src/static/css/style.css b/src/static/css/style.css index 40badd4..8620aa3 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -1390,3 +1390,14 @@ details.adv-section .adv-hint { grid-column: 1 / -1; font-size: 12px; color: var [data-theme="light"] .audit-entry-detail summary { color: #475569; } [data-theme="light"] /* === Verwendungs-Sicht (Phase 6) === */ .activity-cell { color: #475569; } + +/* === Verlinkte Dashboard-Kacheln und -Karten === */ +.stat-card-link { cursor: pointer; transition: border-color 0.15s ease, transform 0.15s ease; } +.stat-card-link:hover, .stat-card-link:focus-visible { + border-color: var(--accent); + transform: translateY(-1px); +} +.card-link { cursor: pointer; transition: border-color 0.15s ease; } +.card-link:hover, .card-link:focus-visible { border-color: var(--accent); } +.card-link .card-link-chevron { color: var(--text-muted); transition: color 0.15s ease, transform 0.15s ease; } +.card-link:hover .card-link-chevron { color: var(--accent); transform: translateX(2px); } diff --git a/src/static/dashboard.html b/src/static/dashboard.html index 2dfa3b7..241fc42 100644 --- a/src/static/dashboard.html +++ b/src/static/dashboard.html @@ -6,7 +6,7 @@ AegisSight Monitor-Verwaltung - +