From cd027c0bec2c6eb9113bd0b52753f68d3edd65a3 Mon Sep 17 00:00:00 2001 From: Claude Dev Date: Sun, 15 Mar 2026 13:31:31 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20Chat-Vollbild=20als=20zentriertes=20gro?= =?UTF-8?q?=C3=9Fes=20Overlay=20statt=20echtem=20Fullscreen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 700px breit, 80vh hoch, zentriert, mit Rand und abgerundeten Ecken. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/static/css/style.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/static/css/style.css b/src/static/css/style.css index dc4f859..f6422b6 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -4843,14 +4843,14 @@ a.map-popup-article:hover { /* Fullscreen */ .chat-window.fullscreen { - bottom: 0; - right: 0; - left: 0; - top: 0; - width: 100%; - height: 100%; - border-radius: 0; - border: none; + bottom: auto; + right: auto; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: min(700px, calc(100vw - 48px)); + height: min(80vh, calc(100vh - 48px)); + border-radius: 12px; z-index: 10000; }