fix: revert unintended destroy() behavior change and CSS formatting noise

- destroy(): restore unconditional cleanup of all map instances (safer
  for edge cases where stale refs might exist after mode switches)
- Revert cosmetic CSS changes: combinator spacing, keyframe
  reformatting, missing newline at EOF
This commit is contained in:
Elie Habib
2026-03-04 08:26:19 +04:00
parent 96bbf7cb4e
commit 15f922beda
2 changed files with 10 additions and 32 deletions

View File

@@ -2212,7 +2212,7 @@ body.live-news-fullscreen-active .map-legend {
display: none !important;
}
body.live-news-fullscreen-active .panels-grid>*:not(.live-news-fullscreen) {
body.live-news-fullscreen-active .panels-grid > *:not(.live-news-fullscreen) {
visibility: hidden !important;
}
@@ -12511,15 +12511,8 @@ a.prediction-link:hover {
}
@keyframes globe-beta-pulse {
0%,
100% {
box-shadow: 0 0 6px rgba(0, 229, 255, 0.3), 0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 8px rgba(0, 229, 255, 0.05);
}
50% {
box-shadow: 0 0 10px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.25), inset 0 0 12px rgba(0, 229, 255, 0.1);
}
0%, 100% { box-shadow: 0 0 6px rgba(0, 229, 255, 0.3), 0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 8px rgba(0, 229, 255, 0.05); }
50% { box-shadow: 0 0 10px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.25), inset 0 0 12px rgba(0, 229, 255, 0.1); }
}
/* deck.gl Controls */
@@ -16568,18 +16561,7 @@ body.has-breaking-alert .panels-grid {
}
@keyframes globe-pulse {
0% {
transform: scale(1);
opacity: 0.6;
}
70% {
transform: scale(2.5);
opacity: 0;
}
100% {
transform: scale(2.5);
opacity: 0;
}
}
0% { transform: scale(1); opacity: 0.6; }
70% { transform: scale(2.5); opacity: 0; }
100% { transform: scale(2.5); opacity: 0; }
}