fix(panel): live news fullscreen now renders above all UI elements (#708)

Move panel element to document.body when entering fullscreen to escape
the panels-grid stacking context (z-index: 1) that trapped it below
the map legend, DEFCON badge, time selector, and layers panel.
This commit is contained in:
Elie Habib
2026-03-02 02:02:37 +04:00
committed by GitHub
parent 799ca5dad8
commit 12f481b5b5
2 changed files with 19 additions and 1 deletions

View File

@@ -1917,7 +1917,7 @@ body.panel-resize-active iframe {
left: 0 !important;
width: 100vw !important;
height: 100vh !important;
z-index: 9999 !important;
z-index: 10000 !important;
border-radius: 0 !important;
margin: 0 !important;
}
@@ -1937,6 +1937,10 @@ body.live-news-fullscreen-active {
overflow: hidden;
}
body.live-news-fullscreen-active .community-widget {
display: none;
}
.live-indicator-btn {
background: transparent;
border: none;