Fix: Gassi Desktop — Scrollbalken im Listen-Panel ausgeblendet (SW by-v884)

This commit is contained in:
rene 2026-05-12 17:52:29 +02:00
parent 33f550a313
commit 9deb04c02d
5 changed files with 15 additions and 11 deletions

View file

@ -406,7 +406,7 @@ async def serve_media(path: str, request: _Request):
raise _HE(404, "Nicht gefunden.") raise _HE(404, "Nicht gefunden.")
return _media_response(filepath) return _media_response(filepath)
APP_VER = "883" # muss mit APP_VER in app.js übereinstimmen APP_VER = "884" # muss mit APP_VER in app.js übereinstimmen
@app.get("/.well-known/assetlinks.json") @app.get("/.well-known/assetlinks.json")
async def assetlinks(): async def assetlinks():

View file

@ -3563,7 +3563,7 @@ html.modal-open {
padding-top: 52px; padding-top: 52px;
position: relative; position: relative;
} }
/* Liste: feste Breite links, scrollbar */ /* Liste: feste Breite links, scrollbar unsichtbar */
#walks-list-view { #walks-list-view {
display: block !important; display: block !important;
width: 380px; width: 380px;
@ -3571,6 +3571,10 @@ html.modal-open {
flex-shrink: 0; flex-shrink: 0;
border-right: 1px solid var(--c-border); border-right: 1px solid var(--c-border);
overflow-y: auto; overflow-y: auto;
scrollbar-width: none; /* Firefox */
}
#walks-list-view::-webkit-scrollbar {
display: none; /* Chrome / Safari / macOS */
} }
/* Karte: Rest des Platzes, sticky */ /* Karte: Rest des Platzes, sticky */
#walks-map-view { #walks-map-view {

View file

@ -101,9 +101,9 @@
</script> </script>
<!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung --> <!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung -->
<link rel="stylesheet" href="/css/design-system.css?v=883"> <link rel="stylesheet" href="/css/design-system.css?v=884">
<link rel="stylesheet" href="/css/layout.css?v=883"> <link rel="stylesheet" href="/css/layout.css?v=884">
<link rel="stylesheet" href="/css/components.css?v=883"> <link rel="stylesheet" href="/css/components.css?v=884">
</head> </head>
<body> <body>
@ -583,10 +583,10 @@
<div id="modal-container"></div> <div id="modal-container"></div>
<!-- JS: Reihenfolge ist wichtig — erst Basis, dann Features --> <!-- JS: Reihenfolge ist wichtig — erst Basis, dann Features -->
<script src="/js/api.js?v=883"></script> <script src="/js/api.js?v=884"></script>
<script src="/js/ui.js?v=883"></script> <script src="/js/ui.js?v=884"></script>
<script src="/js/app.js?v=883"></script> <script src="/js/app.js?v=884"></script>
<script src="/js/worlds.js?v=883"></script> <script src="/js/worlds.js?v=884"></script>
<!-- Feature-Seiten werden lazy geladen --> <!-- Feature-Seiten werden lazy geladen -->

View file

@ -3,7 +3,7 @@
Router, State-Management, Navigation, Initialisierung. Router, State-Management, Navigation, Initialisierung.
============================================================ */ ============================================================ */
const APP_VER = '883'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VER = '884'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
const APP_VERSION = '1.5.1'; // ← semantische Version, wird bei make release gesetzt const APP_VERSION = '1.5.1'; // ← semantische Version, wird bei make release gesetzt
const IS_STAGING = location.hostname === 'staging.banyaro.app'; const IS_STAGING = location.hostname === 'staging.banyaro.app';
// Cache-Bust-Parameter nach Update-Reload sofort entfernen // Cache-Bust-Parameter nach Update-Reload sofort entfernen

View file

@ -3,7 +3,7 @@
Offline-Cache + Push Notifications + Tile-Cache Offline-Cache + Push Notifications + Tile-Cache
============================================================ */ ============================================================ */
const CACHE_VERSION = 'by-v883'; const CACHE_VERSION = 'by-v884';
const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_STATIC = `${CACHE_VERSION}-static`;
const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten
const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache const CACHE_API = 'ban-yaro-api-v1'; // API-Response-Cache