Feinschliff Phase 2: Dashboard Redesign, RAM Check, Accordions

This commit is contained in:
Hitonabi
2026-06-20 22:30:40 +02:00
parent e3be7fbfb5
commit 8b76adc96e
10 changed files with 358 additions and 119 deletions
+17
View File
@@ -140,3 +140,20 @@ button:disabled{opacity:.5;cursor:not-allowed}
opacity:0;transition:.25s;pointer-events:none;max-width:90vw;z-index:50}
.toast.show{opacity:1}
.toast.err{border-color:var(--err);color:#ffb4ae}
/* ---- Accordion (Guides) ---- */
.guide-acc { border-bottom: 1px solid var(--line); }
.guide-acc:last-child { border-bottom: none; }
.guide-acc summary {
padding: 16px 20px;
font-weight: 600;
cursor: pointer;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.guide-acc summary::-webkit-details-marker { display: none; }
.guide-acc summary::after { content: "▼"; font-size: 10px; color: var(--mut); transition: transform 0.2s; }
.guide-acc[open] summary::after { transform: rotate(180deg); }
.guide-acc .acc-body { padding: 0 20px 20px 20px; }