changeset 1080:264d328f9ebb

made bottleneck list scrollable
author Markus Kottlaender <markus@intevation.de>
date Fri, 26 Oct 2018 14:25:41 +0200
parents 5979b63cce9d
children e78bba829566
files client/src/bottlenecks/Bottlenecks.vue
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/bottlenecks/Bottlenecks.vue	Fri Oct 26 14:19:53 2018 +0200
+++ b/client/src/bottlenecks/Bottlenecks.vue	Fri Oct 26 14:25:41 2018 +0200
@@ -19,7 +19,7 @@
                 </div>-->
                 <div></div>
             </div>
-            <div class="d-flex flex-column">
+            <div class="d-flex flex-column bottleneck-list">
                 <div v-for="bottleneck in filteredAndSortedBottlenecks" :key="bottleneck.name" class="border-top">
                     <div class="d-flex flex-row justify-content-between p-2">
                         <div>
@@ -212,6 +212,11 @@
   display: block;
 }
 
+.bottleneck-list {
+  overflow-y: auto;
+  max-height: 500px;
+}
+
 .surveys {
   max-height: 0;
   overflow: hidden;