diff --git a/app/assets/images/geo_concerns/img/move-handle.png b/app/assets/images/geo_concerns/images/move-handle.png similarity index 100% rename from app/assets/images/geo_concerns/img/move-handle.png rename to app/assets/images/geo_concerns/images/move-handle.png diff --git a/app/assets/images/geo_concerns/img/resize-handle.png b/app/assets/images/geo_concerns/images/resize-handle.png similarity index 100% rename from app/assets/images/geo_concerns/img/resize-handle.png rename to app/assets/images/geo_concerns/images/resize-handle.png diff --git a/app/assets/images/geo_concerns/img/filter-icon.png b/app/assets/images/geo_concerns/img/filter-icon.png deleted file mode 100644 index 981d82a1..00000000 Binary files a/app/assets/images/geo_concerns/img/filter-icon.png and /dev/null differ diff --git a/app/assets/stylesheets/geo_concerns/Control.Geocoder.css b/app/assets/stylesheets/geo_concerns/Control.Geocoder.scss similarity index 93% rename from app/assets/stylesheets/geo_concerns/Control.Geocoder.css rename to app/assets/stylesheets/geo_concerns/Control.Geocoder.scss index ddc78ae0..c60daafd 100644 --- a/app/assets/stylesheets/geo_concerns/Control.Geocoder.css +++ b/app/assets/stylesheets/geo_concerns/Control.Geocoder.scss @@ -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 { diff --git a/app/assets/stylesheets/geo_concerns/leaflet-boundingbox.css b/app/assets/stylesheets/geo_concerns/leaflet-boundingbox.scss similarity index 66% rename from app/assets/stylesheets/geo_concerns/leaflet-boundingbox.css rename to app/assets/stylesheets/geo_concerns/leaflet-boundingbox.scss index 6894b3dd..33142781 100644 --- a/app/assets/stylesheets/geo_concerns/leaflet-boundingbox.css +++ b/app/assets/stylesheets/geo_concerns/leaflet-boundingbox.scss @@ -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; }