From 7fddfdba0bfd8c8f8ebbbbefa591af4292ba7007 Mon Sep 17 00:00:00 2001 From: rene Date: Fri, 17 Apr 2026 10:19:09 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20map-fab=20Buttons=20explizit=20wei=C3=9F?= =?UTF-8?q?=20(#fff)=20=E2=80=94=20Dark=20Mode=20machte=20sie=20schwarz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/static/css/components.css | 11 ++++++----- backend/static/js/app.js | 2 +- backend/static/sw.js | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/backend/static/css/components.css b/backend/static/css/components.css index f872d42..97676f4 100644 --- a/backend/static/css/components.css +++ b/backend/static/css/components.css @@ -1892,18 +1892,19 @@ textarea.form-control { width: 44px; height: 44px; border-radius: 50%; - background: var(--c-surface); - border: 1.5px solid var(--c-border); - box-shadow: 0 2px 8px rgba(0,0,0,0.2); + 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; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; - transition: background 0.15s, border-color 0.15s; + transition: background 0.15s; -webkit-tap-highlight-color: transparent; } -.map-fab:hover { background: var(--c-surface-2); } +.map-fab:hover { background: #f0f0f0; } .map-fab--pin.active { background: var(--c-danger); border-color: var(--c-danger); diff --git a/backend/static/js/app.js b/backend/static/js/app.js index 88b6a3a..c9abcd3 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 = '93'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '94'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const App = (() => { diff --git a/backend/static/sw.js b/backend/static/sw.js index ba8ae58..e86f40d 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-v118'; +const CACHE_VERSION = 'by-v119'; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten