comparison client/src/components/staging/StagingDetail.vue @ 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
comparison
equal deleted inserted replaced
2350:ed6b0a43d42f 2351:9c4d6a61ad1d
123 </div> 123 </div>
124 </div> 124 </div>
125 <div v-else class="empty"></div> 125 <div v-else class="empty"></div>
126 </div> 126 </div>
127 </div> 127 </div>
128 <div v-if="show && bottlenecks.length > 0"> 128 <div v-if="show && bottlenecks.length > 0" class="bottlenecksdetails">
129 <div 129 <div
130 v-for="(bottleneck, index) in bottlenecks" 130 v-for="(bottleneck, index) in bottlenecks"
131 :key="index" 131 :key="index"
132 class="d-flex flex-row" 132 class="d-flex flex-row"
133 > 133 >
499 STATES: STATES 499 STATES: STATES
500 }; 500 };
501 </script> 501 </script>
502 502
503 <style lang="scss" scoped> 503 <style lang="scss" scoped>
504 .bottlenecksdetails {
505 overflow-y: auto;
506 max-height: 250px;
507 }
504 .diffs { 508 .diffs {
505 overflow-y: auto; 509 overflow-y: auto;
506 max-height: 250px; 510 max-height: 250px;
507 } 511 }
508 512