@mytec: iter5 ready for test

This commit is contained in:
2026-01-30 12:12:13 +02:00
parent 1a3c3e0f11
commit a03e9746d4
6 changed files with 124 additions and 44 deletions

View File

@@ -41,3 +41,13 @@
.dark .leaflet-tile-pane {
filter: brightness(0.8) contrast(1.1) saturate(0.8);
}
/* Flash animation for batch-updated sites */
@keyframes flash-update {
0%, 100% { background-color: transparent; }
50% { background-color: rgba(59, 130, 246, 0.3); }
}
.flash-update {
animation: flash-update 0.6s ease-in-out;
}