diff --git a/src/components/Map/Geocoder.vue b/src/components/Map/Geocoder.vue index bced98857654bf96357be5d021f22a618423745b..f4a65eb647916de25ced0e143efc620656763be3 100644 --- a/src/components/Map/Geocoder.vue +++ b/src/components/Map/Geocoder.vue @@ -6,6 +6,7 @@ <button class="button-geocoder" @click="toggleGeocoder" + title="Rechercher une adresse" > <i class="search icon" /> </button> diff --git a/src/components/Map/Geolocation.vue b/src/components/Map/Geolocation.vue index d94c83b413d7a1b0351ce8a8b6198cb335916bce..b09bb74d58c142d4943f49f70e7a0c3cf7c8030e 100644 --- a/src/components/Map/Geolocation.vue +++ b/src/components/Map/Geolocation.vue @@ -3,6 +3,7 @@ <button :class="['button-geolocation', { tracking }]" @click.prevent="toggleTracking" + title="Me localiser" > <i class="crosshairs icon" /> </button> @@ -55,6 +56,9 @@ button.button-geolocation { line-height: 1.15; cursor: pointer; } +button.button-geolocation:hover { + background-color: #ebebeb; + } button.button-geolocation.tracking { background-color: rgba(255, 145, 0, 0.904); color: #fff;