mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
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:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user