From d2e300940225d3faaa1207391af6a31f8fb73f35 Mon Sep 17 00:00:00 2001 From: rene Date: Thu, 30 Apr 2026 10:57:52 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Desktop=20overflow-y:visible=20auf=20#pa?= =?UTF-8?q?ge-content=20=E2=80=94=20verhindert=20Event-Capture,=20SW=20by-?= =?UTF-8?q?v543?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/static/css/layout.css | 4 +++- backend/static/js/app.js | 2 +- backend/static/sw.js | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/backend/static/css/layout.css b/backend/static/css/layout.css index 7204ce9..399a9c7 100644 --- a/backend/static/css/layout.css +++ b/backend/static/css/layout.css @@ -36,7 +36,9 @@ flex-direction: row; } #page-content { - min-height: unset; + min-height: unset; + overflow-y: visible; /* nicht als Scroll-Container — Window scrollt */ + overflow-x: visible; padding-bottom: 0; padding-left: var(--nav-sidebar-width); } diff --git a/backend/static/js/app.js b/backend/static/js/app.js index e4f12b2..0219c85 100644 --- a/backend/static/js/app.js +++ b/backend/static/js/app.js @@ -3,7 +3,7 @@ Router, State-Management, Navigation, Initialisierung. ============================================================ */ -const APP_VER = '519'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '520'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VERSION = '1.0.0'; // ← semantische Version, wird bei make release gesetzt const IS_STAGING = location.hostname === 'staging.banyaro.app'; diff --git a/backend/static/sw.js b/backend/static/sw.js index 6e20c45..4366185 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -3,7 +3,7 @@ Offline-Cache + Push Notifications + Tile-Cache ============================================================ */ -const CACHE_VERSION = 'by-v542'; +const CACHE_VERSION = 'by-v543'; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache