From 15065336c31d3262adde9c20f96ff2f89479fde0 Mon Sep 17 00:00:00 2001 From: Melchior Reimers Date: Sun, 25 Jan 2026 14:35:49 +0100 Subject: [PATCH] fixing dashboard --- dashboard/public/index.html | 112 +++++++++++++++++++++++++++--------- 1 file changed, 84 insertions(+), 28 deletions(-) diff --git a/dashboard/public/index.html b/dashboard/public/index.html index 4aed718..cf2a361 100644 --- a/dashboard/public/index.html +++ b/dashboard/public/index.html @@ -117,45 +117,55 @@ .report-step { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; - padding: 1rem; + padding: 1.5rem; border-radius: 12px; overflow: hidden; - max-height: 500px; + max-height: 1000px; + margin-bottom: 1.5rem; + border: 1px solid rgba(255, 255, 255, 0.05); } .step-active { background: rgba(56, 189, 248, 0.05); border: 1px solid rgba(56, 189, 248, 0.2); opacity: 1 !important; + box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); } .step-completed { - max-height: 50px; - opacity: 0.6; + max-height: 80px; + opacity: 0.7; cursor: pointer; - padding-top: 0.5rem; - padding-bottom: 0.5rem; + padding-top: 1rem; + padding-bottom: 1rem; + background: rgba(255, 255, 255, 0.02); } .step-completed:hover { opacity: 1; - background: rgba(255, 255, 255, 0.02); + background: rgba(255, 255, 255, 0.04); + border-color: rgba(56, 189, 248, 0.3); } .step-completed select, - .step-completed input { - display: none; + .step-completed input, + .step-completed .relative, + .step-completed .pt-8, + .step-completed .grid { + display: none !important; } .step-summary { - font-size: 0.8rem; + font-size: 0.85rem; color: #38bdf8; font-weight: 700; - margin-top: -2px; + margin-top: 0.5rem; background: rgba(56, 189, 248, 0.1); - padding: 2px 8px; - border-radius: 4px; - display: inline-block; + padding: 6px 12px; + border-radius: 8px; + display: block; + width: fit-content; + border: 1px solid rgba(56, 189, 248, 0.2); } .spinner { @@ -292,6 +302,7 @@