Merge branch '57551-collapse-board-list-fix' into 'master'

Add flex styles to board list only if board list is expanded

Closes #57551

See merge request gitlab-org/gitlab-ce!25113
This commit is contained in:
Phil Hughes 2019-02-12 14:27:25 +00:00
commit 453dec0a57
2 changed files with 8 additions and 1 deletions

View File

@ -221,7 +221,7 @@ export default {
</script>
<template>
<div class="board-list-component d-flex flex-column">
<div class="board-list-component">
<div v-if="loading" class="board-list-loading text-center" aria-label="Loading issues">
<gl-loading-icon />
</div>

View File

@ -164,6 +164,13 @@
display: none;
}
}
&:not(.is-collapsed) {
.board-list-component {
display: flex;
flex-direction: column;
}
}
}
.board-inner {