From 119ef988fe0a9f6bb5e95924b0262ca633069feb Mon Sep 17 00:00:00 2001 From: Claude Dev Date: Tue, 24 Mar 2026 13:43:53 +0100 Subject: [PATCH] InfoBox zentriert am oberen Fensterrand statt rechts --- static/css/globe.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/static/css/globe.css b/static/css/globe.css index 98d49b4..534d6e4 100644 --- a/static/css/globe.css +++ b/static/css/globe.css @@ -433,3 +433,20 @@ html, body { height: 100%; overflow: hidden; background: var(--bg-primary); colo background: var(--bg-primary); color: var(--text); } + +/* === InfoBox zentriert oben === */ +.cesium-viewer-infoBoxContainer { + position: absolute !important; + top: 52px !important; + right: auto !important; + left: 50% !important; + transform: translateX(-50%) !important; + max-width: 500px !important; + width: 90% !important; + max-height: 50vh !important; + z-index: 150 !important; +} +.cesium-infoBox { + max-height: 50vh !important; + overflow-y: auto !important; +}