fix: Chat-Vollbild als zentriertes großes Overlay statt echtem Fullscreen

700px breit, 80vh hoch, zentriert, mit Rand und abgerundeten Ecken.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
Claude Dev
2026-03-15 13:31:31 +01:00
Ursprung 4a0577d3f4
Commit cd027c0bec

Datei anzeigen

@@ -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;
}