changeset 2351:9c4d6a61ad1d

staging: fix vanishing buttons when (U)BN list becomes too long
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 20 Feb 2019 11:08:20 +0100
parents ed6b0a43d42f
children 0d7b51930028
files client/src/components/staging/StagingDetail.vue
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/staging/StagingDetail.vue	Wed Feb 20 10:58:32 2019 +0100
+++ b/client/src/components/staging/StagingDetail.vue	Wed Feb 20 11:08:20 2019 +0100
@@ -125,7 +125,7 @@
         <div v-else class="empty"></div>
       </div>
     </div>
-    <div v-if="show && bottlenecks.length > 0">
+    <div v-if="show && bottlenecks.length > 0" class="bottlenecksdetails">
       <div
         v-for="(bottleneck, index) in bottlenecks"
         :key="index"
@@ -501,6 +501,10 @@
 </script>
 
 <style lang="scss" scoped>
+.bottlenecksdetails {
+  overflow-y: auto;
+  max-height: 250px;
+}
 .diffs {
   overflow-y: auto;
   max-height: 250px;