diff --git a/VERSION b/VERSION index 304d0b0..8061414 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1125 \ No newline at end of file +1126 \ No newline at end of file diff --git a/backend/static/css/components.css b/backend/static/css/components.css index cc37ed5..a6954fd 100644 --- a/backend/static/css/components.css +++ b/backend/static/css/components.css @@ -8182,7 +8182,7 @@ svg.empty-state-icon { background: rgba(0, 0, 0, var(--wbg-dim, 0.38)); backdrop-filter: blur(var(--wbg-blur, 18px)) saturate(1.6); -webkit-backdrop-filter: blur(var(--wbg-blur, 18px)) saturate(1.6); - border: 1px solid rgba(99, 130, 220, 0.90); + border: 1px solid var(--wborder, rgba(99, 130, 220, 0.55)); border-radius: 20px; padding: 16px 18px; color: white; @@ -8205,7 +8205,7 @@ svg.empty-state-icon { background: rgba(0, 0, 0, var(--wbg-dim, 0.32)); backdrop-filter: blur(var(--wbg-blur, 12px)); -webkit-backdrop-filter: blur(var(--wbg-blur, 12px)); - border: 1px solid rgba(99, 130, 220, 0.90); + border: 1px solid var(--wborder, rgba(99, 130, 220, 0.55)); border-radius: 16px; padding: 12px 16px; display: flex; @@ -8266,8 +8266,11 @@ svg.empty-state-icon { /* Chip/Banner-Abdunklung + Blur: einheitlich auf allen drei Welten (reduziert) */ .world-panel { --wbg-dim: 0.14; --wbg-blur: 3px; } -/* Chip-Rahmen: einheitlich auf allen drei Welten (WELT-Look, blau, deutlich) */ -.world-chip { border: 1px solid rgba(99, 130, 220, 0.90); } +/* Rahmenfarbe je Welt (Alpha einheitlich 0.55) — gilt für Chips + Banner oben */ +#wp-jetzt { --wborder: rgba(196, 132, 58, 0.55); } +#wp-hund { --wborder: rgba(196, 132, 58, 0.55); } +#wp-welt { --wborder: rgba(99, 130, 220, 0.55); } +.world-chip { border: 1px solid var(--wborder, rgba(99, 130, 220, 0.55)); } /* Sektion-Label über Chip-Gruppen */ .world-section-label { @@ -8290,6 +8293,7 @@ svg.empty-state-icon { background: rgba(0, 0, 0, var(--wbg-dim, 0.32)); backdrop-filter: blur(var(--wbg-blur, 12px)); -webkit-backdrop-filter: blur(var(--wbg-blur, 12px)); + border: 1px solid var(--wborder, rgba(99, 130, 220, 0.55)); border-radius: 14px; padding: 10px 6px 9px; display: flex; diff --git a/backend/static/index.html b/backend/static/index.html index 1c70afb..db4ce24 100644 --- a/backend/static/index.html +++ b/backend/static/index.html @@ -86,14 +86,14 @@ Ban Yaro - + - - - - - + + + + + @@ -617,11 +617,11 @@ - - - - - + + + + + @@ -631,7 +631,7 @@ - + diff --git a/backend/static/js/app.js b/backend/static/js/app.js index bc9bd03..6d72217 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 = '1125'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen +const APP_VER = '1126'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen const APP_VERSION = '1.6.0'; // ← semantische Version, wird bei make release gesetzt window.APP_VER = APP_VER; // global verfügbar für andere Module (z.B. offline-indicator) window.APP_VERSION = APP_VERSION; diff --git a/backend/static/landing.html b/backend/static/landing.html index 7e85b4e..5c38e15 100644 --- a/backend/static/landing.html +++ b/backend/static/landing.html @@ -4,7 +4,7 @@ - + Ban Yaro — Die Hunde-App für Deutschland, Österreich & Schweiz diff --git a/backend/static/sw.js b/backend/static/sw.js index af1da4a..6fe3c33 100644 --- a/backend/static/sw.js +++ b/backend/static/sw.js @@ -4,7 +4,7 @@ ============================================================ */ // ← EINZIGE Stelle für die Version — STATIC_ASSETS und CACHE_VERSION leiten sich ab -const VER = '1125'; +const VER = '1126'; const CACHE_VERSION = `by-v${VER}`; const CACHE_STATIC = `${CACHE_VERSION}-static`; const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten