Radar-Timeline: Optik an Status-Pill angeglichen (hell/Border/Blur, Dark-Mode) + tiefer (direkt über die Pill)
This commit is contained in:
parent
22b8ccb784
commit
ea2cdd4f89
6 changed files with 39 additions and 34 deletions
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
1216
|
||||
1217
|
||||
|
|
@ -3053,41 +3053,46 @@ html.modal-open {
|
|||
.map-legend::-webkit-scrollbar { display: none; }
|
||||
|
||||
/* Regenradar-Zeitleiste (RainViewer: ~2h Vergangenheit + ~30min Nowcast, Play/Pause + Slider) */
|
||||
/* Optik wie die Status-Pill darunter (hell/cremefarben, Blur, Border), direkt darüber gesetzt. */
|
||||
.map-radar-timeline {
|
||||
position: absolute;
|
||||
left: 12px;
|
||||
left: var(--space-3);
|
||||
right: 88px; /* Platz für die Ecken-FABs (Speed-Dial / Zurück) rechts */
|
||||
bottom: calc(60px + env(safe-area-inset-bottom, 0px));
|
||||
bottom: calc(var(--space-3) + 40px); /* unmittelbar über der Status-Pill */
|
||||
z-index: 900;
|
||||
display: flex;
|
||||
align-items:center;
|
||||
gap: 10px;
|
||||
padding: 7px 12px;
|
||||
border-radius: 999px;
|
||||
background: rgba(15, 22, 35, 0.82);
|
||||
backdrop-filter: blur(8px);
|
||||
-webkit-backdrop-filter: blur(8px);
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
|
||||
color: #fff;
|
||||
gap: 8px;
|
||||
padding: 4px 12px 4px 5px;
|
||||
border-radius: var(--radius-full);
|
||||
background: rgba(255, 255, 255, 0.88);
|
||||
backdrop-filter: blur(4px);
|
||||
-webkit-backdrop-filter: blur(4px);
|
||||
border: 1px solid var(--c-border-light);
|
||||
color: var(--c-text);
|
||||
pointer-events: auto;
|
||||
}
|
||||
:root[data-theme="dark"] .map-radar-timeline {
|
||||
background: rgba(24, 20, 16, 0.92);
|
||||
border-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.rdr-play {
|
||||
flex-shrink: 0;
|
||||
width: 34px; height: 34px;
|
||||
width: 30px; height: 30px;
|
||||
border: none; border-radius: 50%;
|
||||
background: rgba(255, 255, 255, 0.16);
|
||||
color: #fff; cursor: pointer;
|
||||
background: var(--c-surface-2);
|
||||
color: var(--c-text); cursor: pointer;
|
||||
display: flex; align-items: center; justify-content: center;
|
||||
}
|
||||
.rdr-play:active { background: rgba(255, 255, 255, 0.3); }
|
||||
.rdr-slider { flex: 1; min-width: 0; height: 4px; accent-color: #60a5fa; cursor: pointer; }
|
||||
.rdr-play:active { background: var(--c-border); }
|
||||
.rdr-slider { flex: 1; min-width: 0; height: 4px; accent-color: var(--c-primary); cursor: pointer; }
|
||||
.rdr-time {
|
||||
flex-shrink: 0;
|
||||
font-size: 12px; font-weight: 600;
|
||||
font-size: 11px; font-weight: 600;
|
||||
font-variant-numeric: tabular-nums;
|
||||
min-width: 82px; text-align: right; opacity: 0.92;
|
||||
min-width: 78px; text-align: right; color: var(--c-text-secondary);
|
||||
}
|
||||
.rdr-time.is-forecast { color: #93c5fd; } /* Nowcast/Vorhersage-Frames bläulich */
|
||||
.rdr-time.is-forecast { color: var(--c-primary); } /* Nowcast/Vorhersage-Frames hervorgehoben */
|
||||
|
||||
.map-legend-btn {
|
||||
flex-shrink: 0;
|
||||
|
|
|
|||
|
|
@ -86,14 +86,14 @@
|
|||
<title>Ban Yaro</title>
|
||||
|
||||
<!-- Theme + theme-color Statusleiste vor CSS setzen -->
|
||||
<script src="/js/boot-early.js?v=1216"></script>
|
||||
<script src="/js/boot-early.js?v=1217"></script>
|
||||
|
||||
<!-- CSS: Reihenfolge ist wichtig — ?v= zwingt Browser zur Neuladung -->
|
||||
<link rel="stylesheet" href="/css/design-system.css?v=1216">
|
||||
<link rel="stylesheet" href="/css/layout.css?v=1216">
|
||||
<link rel="stylesheet" href="/css/components.css?v=1216">
|
||||
<link rel="stylesheet" href="/css/utilities.css?v=1216">
|
||||
<link rel="stylesheet" href="/css/lists.css?v=1216">
|
||||
<link rel="stylesheet" href="/css/design-system.css?v=1217">
|
||||
<link rel="stylesheet" href="/css/layout.css?v=1217">
|
||||
<link rel="stylesheet" href="/css/components.css?v=1217">
|
||||
<link rel="stylesheet" href="/css/utilities.css?v=1217">
|
||||
<link rel="stylesheet" href="/css/lists.css?v=1217">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -617,11 +617,11 @@
|
|||
<div id="modal-container"></div>
|
||||
|
||||
<!-- JS: Reihenfolge ist wichtig — erst Basis, dann Features -->
|
||||
<script src="/js/api.js?v=1216"></script>
|
||||
<script src="/js/ui.js?v=1216"></script>
|
||||
<script src="/js/app.js?v=1216"></script>
|
||||
<script src="/js/worlds.js?v=1216"></script>
|
||||
<script src="/js/offline-indicator.js?v=1216"></script>
|
||||
<script src="/js/api.js?v=1217"></script>
|
||||
<script src="/js/ui.js?v=1217"></script>
|
||||
<script src="/js/app.js?v=1217"></script>
|
||||
<script src="/js/worlds.js?v=1217"></script>
|
||||
<script src="/js/offline-indicator.js?v=1217"></script>
|
||||
|
||||
<!-- Feature-Seiten werden lazy geladen -->
|
||||
|
||||
|
|
@ -631,7 +631,7 @@
|
|||
|
||||
|
||||
<!-- Boot: Offline-Banner + SW-Registration (extrahiert für CSP) -->
|
||||
<script src="/js/boot.js?v=1216"></script>
|
||||
<script src="/js/boot.js?v=1217"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
Router, State-Management, Navigation, Initialisierung.
|
||||
============================================================ */
|
||||
|
||||
const APP_VER = '1216'; // ← bei jedem Deploy mit Frontend-Änderungen erhöhen
|
||||
const APP_VER = '1217'; // ← 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;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="color-scheme" content="light dark">
|
||||
<script src="/js/landing-init.js?v=1216"></script>
|
||||
<script src="/js/landing-init.js?v=1217"></script>
|
||||
<title>Ban Yaro — Die Hunde-App für Deutschland, Österreich & Schweiz</title>
|
||||
<meta name="description" content="Ban Yaro: Die kostenlose All-in-One Hunde-App für DACH. Tagebuch, Giftköder-Alarm, Training mit KI, Forum, Wurfbörse, Stammbaum, Inzucht-Check — DSGVO-konform, offline-fähig, ohne App Store.">
|
||||
<meta name="keywords" content="Hunde App, Hunde Community, Wurfbörse, Züchter, Welpen kaufen, Stammbaum Hund, Inzuchtkoeffizient, Hundezucht, Impfpass Hund, Giftköder Alarm, Gassi Community, Hundetraining App, Hunde Forum, Hunde KI, Hundefilm Datenbank, Welpen Marktplatz">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
============================================================ */
|
||||
|
||||
// ← EINZIGE Stelle für die Version — STATIC_ASSETS und CACHE_VERSION leiten sich ab
|
||||
const VER = '1216';
|
||||
const VER = '1217';
|
||||
const CACHE_VERSION = `by-v${VER}`;
|
||||
const CACHE_STATIC = `${CACHE_VERSION}-static`;
|
||||
const CACHE_TILES = 'ban-yaro-tiles-v1'; // bleibt über SW-Updates erhalten
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue