Add AMEV Gleichzeitigkeitsfaktor-Auswähler und einklappbare Seitenleiste

- Gzf-Picker-Modal mit AMEV-Tabelle 3 (Planungshilfe für elektrische
  Leistungsbilanzen) im Projektgerät-Modal und im globalen Geräteformular
- Docker-Deploy-Tooling (docker-start.sh, run-migrations.js) für den
  produktiven Container
- Seitenleiste ist jetzt einklappbar (Icon-only, Zustand in localStorage)
This commit is contained in:
Grovy311 2026-08-03 17:07:14 +02:00
parent 74bea1a3c9
commit 9bd22dfcb7
11 changed files with 349 additions and 41 deletions

View file

@ -1219,3 +1219,68 @@ a.kpi:hover {
max-height: calc(100vh - 5.5rem);
}
}
/* ── Seitenleiste: eingeklappter Zustand ─────────────────────────────── */
.app-shell {
transition: grid-template-columns 0.18s ease;
}
.app-shell-collapsed {
grid-template-columns: 64px 1fr;
}
.sidebar {
transition: padding 0.18s ease;
}
.sidebar-brand {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8px;
}
.sidebar-toggle {
background: rgba(255, 255, 255, 0.08);
border: 0;
border-radius: 6px;
color: #fff;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 0.8rem;
line-height: 1;
width: 26px;
height: 26px;
}
.sidebar-toggle:hover {
background: rgba(255, 255, 255, 0.18);
}
.sidebar-collapsed .sidebar-brand {
padding: 16px 10px;
flex-direction: column;
align-items: center;
}
.sidebar-collapsed .sidebar-brand-text {
display: none;
}
.sidebar-collapsed .sidebar-nav {
padding: 12px 8px;
}
.sidebar-collapsed .sidebar-link {
justify-content: center;
padding: 10px;
}
.sidebar-collapsed .sidebar-section-label,
.sidebar-collapsed .sidebar-label {
display: none;
}