Fix: Karte position:fixed + Mobile-Sidebar CSS-Kaskade
- .map-full-layout: position:fixed statt absolute;inset:0 mit expliziten Offsets (header/nav/sidebar) — unabhängig von height-Kette, überdeckt Sidebar nicht mehr - layout.css: Mobile Drawer-CSS nach Base-#sidebar-Regel verschoben (vorher: display:none hat gewonnen weil später im File) - map.js: zweites invalidateSize() nach 600ms - SW by-v28 → by-v29
This commit is contained in:
parent
e5bf841d45
commit
1c8ed88dac
4 changed files with 30 additions and 18 deletions
|
|
@ -1565,9 +1565,20 @@ textarea.form-control {
|
|||
ZENTRALE KARTE (map.js)
|
||||
============================================================ */
|
||||
.map-full-layout {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
position: fixed;
|
||||
top: calc(var(--header-height) + var(--safe-top));
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: calc(var(--nav-bottom-height) + var(--safe-bottom));
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.map-full-layout {
|
||||
top: 0;
|
||||
left: var(--nav-sidebar-width);
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
.map-full {
|
||||
width: 100%;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue