diff --git a/backend/static/css/components.css b/backend/static/css/components.css index 25906b3..f872d42 100644 --- a/backend/static/css/components.css +++ b/backend/static/css/components.css @@ -1461,18 +1461,20 @@ textarea.form-control { padding: var(--space-1) var(--space-3); } .places-locate-btn { - font-size: 1.3rem; - width: 38px; - height: 38px; - border-radius: 50%; - background: var(--c-surface); - border: 1.5px solid var(--c-border); - box-shadow: 0 2px 6px rgba(0,0,0,0.15); - cursor: pointer; - display: flex; - align-items: center; - justify-content: center; + width: 40px; + height: 40px; + border-radius: 50%; + background: #fff; + color: #333; + border: 2px solid rgba(0,0,0,0.2); + box-shadow: 0 2px 8px rgba(0,0,0,0.25); + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + margin: 10px; } +.places-locate-btn:hover { background: #f0f0f0; } /* ============================================================ ROUTEN — Komoot-Stil (routes.js) diff --git a/backend/static/js/app.js b/backend/static/js/app.js index 77a9d87..88b6a3a 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 = '92'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '93'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const App = (() => { diff --git a/backend/static/js/pages/places.js b/backend/static/js/pages/places.js index 22cc562..8aa1fa8 100644 --- a/backend/static/js/pages/places.js +++ b/backend/static/js/pages/places.js @@ -139,7 +139,7 @@ window.Page_places = (() => { L.Control.Locate = L.Control.extend({ onAdd() { const btn = L.DomUtil.create('button', 'places-locate-btn'); - btn.innerHTML = ''; + btn.innerHTML = ''; btn.title = 'Meinen Standort'; btn.onclick = async () => { try { diff --git a/backend/static/sw.js b/backend/static/sw.js index 2f374f7..ba8ae58 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-v117'; +const CACHE_VERSION = 'by-v118'; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten