diff client/src/components/map/toolbar/Identify.vue @ 1299:2738a6ae9ad8

fontawesome 4 -> 5 An icon was not displayed on a specific system/environment. No clue why... good moment to switch to version 5 of fontawesome
author Markus Kottlaender <markus@intevation.de>
date Fri, 23 Nov 2018 10:24:29 +0100
parents bc55ffaeb639
children 92d9dec88add
line wrap: on
line diff
--- a/client/src/components/map/toolbar/Identify.vue	Thu Nov 22 17:00:26 2018 +0100
+++ b/client/src/components/map/toolbar/Identify.vue	Fri Nov 23 10:24:29 2018 +0100
@@ -1,6 +1,6 @@
 <template>
     <div @click="$store.commit('application/showIdentify', !showIdentify)" class="toolbar-button">
-        <i :class="['fa fa-info', {inverted: showIdentify}]"></i>
+        <font-awesome-icon icon="info" :class="{'text-info': showIdentify}"></font-awesome-icon>
     </div>
 </template>