feat: hover-only title tooltip on map markers; click navigates to entry

This commit is contained in:
2026-06-19 22:05:52 +02:00
parent f7df6ef37e
commit 044e74f5d3
5 changed files with 43 additions and 22 deletions
+15
View File
@@ -437,6 +437,21 @@ body::after {
.maplibregl-canvas-container.maplibregl-interactive { cursor: grab; }
.maplibregl-canvas-container.maplibregl-interactive:active { cursor: grabbing; }
/* Hover tooltip (title only, non-interactive) */
.map-tip-popup { pointer-events: none; }
.map-tip-popup .maplibregl-popup-content {
padding: var(--space-2) var(--space-3);
}
.map-tip {
font-family: var(--font-ui);
font-size: var(--text-sm);
font-weight: 500;
color: var(--color-ink);
white-space: nowrap;
user-select: none;
display: block;
}
/* ── Stats page ──────────────────────────────────────────────────────────────── */
.stats-heading {