From 39ffe0f6b23c95525a345453a587155650ba4536 Mon Sep 17 00:00:00 2001 From: Narvis Bot Date: Tue, 3 Mar 2026 01:12:43 -0800 Subject: [PATCH] fix: resolve fullscreen overlay issues with header, map section, and map controls (#887, #859, #829) - Give header z-index above fullscreen panels so variant switcher stays clickable (#887) - Hide map section when a panel is fullscreen (#859) - Ensure map legend and layer toggles are hidden during fullscreen (#829) Co-Authored-By: Claude Opus 4.6 --- src/styles/main.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/styles/main.css b/src/styles/main.css index dad91cb5f..543aad2e7 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -2197,6 +2197,17 @@ body.live-news-fullscreen-active .panels-grid > *:not(.live-news-fullscreen) { visibility: hidden !important; } +/* Keep header above fullscreen panels so variant switcher stays clickable (#887) */ +body.live-news-fullscreen-active .header { + position: relative; + z-index: 10001; +} + +/* Hide map section behind fullscreen panel (#859) */ +body.live-news-fullscreen-active .map-section { + visibility: hidden !important; +} + .live-indicator-btn { background: transparent; border: none;