mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-20 14:27:42 +00:00
Bell sound on wanted calls. Closes #117
This commit is contained in:
+13
-1
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user