Bell sound on wanted calls. Closes #117

This commit is contained in:
Ian Renton
2026-08-15 12:02:40 +01:00
parent 3006ee38cb
commit fe4826b729
14 changed files with 50 additions and 29 deletions
+13 -1
View File
@@ -206,6 +206,15 @@ div.band-spot-wanted {
animation: wantedanim 1.5s ease-in-out alternate infinite;
}
@keyframes wantedanim {
0% {
background-color: #cf9e3d;
}
100% {
background-color: #e1b655;
}
}
.leaflet-marker-icon.marker-icon-wanted::after {
content: "";
width: 20px;
@@ -217,14 +226,17 @@ div.band-spot-wanted {
position: absolute;
z-index: -1;
border-radius: 1000%;
animation: wantedanimshadow 1.5s ease-in-out alternate infinite;
}
@keyframes wantedanim {
@keyframes wantedanimshadow {
0% {
background-color: #cf9e3d;
box-shadow: 0px 0px 10px 15px #cf9e3d;
}
100% {
background-color: #e1b655;
box-shadow: 0px 0px 10px 15px #e1b655;
}
}