diff --git a/static/index.html b/static/index.html index d07ccf8..b5d472c 100644 --- a/static/index.html +++ b/static/index.html @@ -365,6 +365,33 @@ if ('serviceWorker' in navigator) { pointer-events: none; transition: opacity 0.5s; } + /* EXIF Photos Map markers */ + .exif-marker-icon { + background: none !important; + border: none !important; + } + .exif-marker-dot { + width: 12px; height: 12px; + background: var(--accent); + border: 2px solid #fff; + border-radius: 50%; + box-shadow: 0 1px 4px rgba(0,0,0,0.4); + } + .exif-marker-highlight { + width: 20px !important; height: 20px !important; + background: #f59e0b !important; + border: 3px solid #fff !important; + box-shadow: 0 0 0 3px rgba(245,158,11,0.4), 0 2px 8px rgba(0,0,0,0.5) !important; + animation: exifSearchPulse 1.5s ease-in-out infinite; + } + @keyframes exifSearchPulse { + 0%, 100% { box-shadow: 0 0 0 3px rgba(245,158,11,0.4), 0 2px 8px rgba(0,0,0,0.5); } + 50% { box-shadow: 0 0 0 6px rgba(245,158,11,0.25), 0 2px 12px rgba(0,0,0,0.6); } + } + .leaflet-popup-content-wrapper { + border-radius: 10px !important; + } + @@ -497,6 +524,36 @@ if ('serviceWorker' in navigator) {
+ +