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 */ /* Fullscreen */
.chat-window.fullscreen { .chat-window.fullscreen {
bottom: 0; bottom: auto;
right: 0; right: auto;
left: 0; top: 50%;
top: 0; left: 50%;
width: 100%; transform: translate(-50%, -50%);
height: 100%; width: min(700px, calc(100vw - 48px));
border-radius: 0; height: min(80vh, calc(100vh - 48px));
border: none; border-radius: 12px;
z-index: 10000; z-index: 10000;
} }