changeset 3610:81473293cd9a

client: configuration: morphology: removed select fields for greater/lower than
author Markus Kottlaender <markus@intevation.de>
date Wed, 05 Jun 2019 12:30:36 +0200
parents e1021fd60190
children eb694e47782a
files client/src/components/systemconfiguration/MorphologyClassbreaks.vue
diffstat 1 files changed, 1 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/systemconfiguration/MorphologyClassbreaks.vue	Wed Jun 05 12:15:05 2019 +0200
+++ b/client/src/components/systemconfiguration/MorphologyClassbreaks.vue	Wed Jun 05 12:30:36 2019 +0200
@@ -11,12 +11,6 @@
           v-for="(value, i) in classbreaks"
           :key="i"
         >
-          <select class="form-control form-control-sm">
-            <option>&lt;</option>
-            <option>&le;</option>
-            <option>&gt;</option>
-            <option>&ge;</option>
-          </select>
           <input
             v-model="classbreaks[i]"
             type="number"
@@ -52,12 +46,6 @@
           v-for="(value, i) in compareClassbreaks"
           :key="i"
         >
-          <select class="form-control form-control-sm">
-            <option>&lt;</option>
-            <option>&le;</option>
-            <option>&gt;</option>
-            <option>&ge;</option>
-          </select>
           <input
             v-model="compareClassbreaks[i]"
             type="number"
@@ -96,9 +84,7 @@
 
 <style lang="sass" scoped>
 .classbreak
-  width: 130px
-  input
-    width: 30px
+  width: 92px
 </style>
 
 <script>