changeset 2940:601797a85a86

client: toolbar: merged pointer class into toolbar-button class
author Markus Kottlaender <markus@intevation.de>
date Thu, 04 Apr 2019 17:40:50 +0200
parents 988cfa4c5aac
children c0162cbb5775
files client/src/components/toolbar/Toolbar.vue
diffstat 1 files changed, 8 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/toolbar/Toolbar.vue	Thu Apr 04 17:34:17 2019 +0200
+++ b/client/src/components/toolbar/Toolbar.vue	Thu Apr 04 17:40:50 2019 +0200
@@ -6,13 +6,13 @@
           (expandToolbar ? 'expanded' : 'collapsed')
       "
     >
-      <Identify class="pointer" />
-      <Layers class="pointer" />
-      <Profiles class="pointer" />
-      <Gauges class="pointer" />
-      <Linetool class="pointer" />
-      <Polygontool class="pointer" />
-      <Pdftool class="pointer" />
+      <Identify />
+      <Layers />
+      <Profiles />
+      <Gauges />
+      <Linetool />
+      <Polygontool />
+      <Pdftool />
     </div>
     <div
       @click="$store.commit('application/expandToolbar', !expandToolbar)"
@@ -34,6 +34,7 @@
   overflow: hidden;
   transition: max-height 0.4s;
   margin-bottom: auto;
+  cursor: pointer;
 }
 
 .toolbar-collapsed {