Skip to content

Commit

Permalink
improve bounding box icons behavior in production environment (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliotjordan authored and tampakis committed Dec 13, 2016
1 parent fe47b43 commit 09806fe
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file removed app/assets/images/geo_concerns/img/filter-icon.png
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
width: 246px;
}
.leaflet-control-geocoder-icon {
background-image: url(images/geocoder.png);
background-image: url(image_path('geo_concerns/images/geocoder.png'));
background-repeat: no-repeat;
background-position: center;
}
.leaflet-control-geocoder-throbber .leaflet-control-geocoder-icon {
background-image: url(images/throbber.gif);
background-image: url(image_path('geo_concerns/images/throbber.gif'));
}

.leaflet-control-geocoder-form-no-error {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
div.leaflet-marker-icon.location-filter.resize-marker {
background: url( img/resize-handle.png ) no-repeat;
background: url(image_path('geo_concerns/images/resize-handle.png')) no-repeat;
cursor: move;
}
div.leaflet-marker-icon.location-filter.move-marker {
background: url( img/move-handle.png ) no-repeat;
background: url(image_path('geo_concerns/images/move-handle.png')) no-repeat;
cursor: move;
}

Expand Down

0 comments on commit 09806fe

Please sign in to comment.