summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Eipert <git@leipert.io>2018-03-16 23:03:39 +0100
committerLukas Eipert <git@leipert.io>2018-03-16 23:03:39 +0100
commit82e889505a299653dcd70737864f7f3981bd1f8c (patch)
treefbf4eab5c7bca41bf00871f77563ecef5c127b0e
parent3ffd8bd4284febfabbab0f7af21d969314eab078 (diff)
downloadgitlab-ce-le-issue-boards-height-calculation.tar.gz
Revert "get rid of unnecessary height calculations by using flex"le-issue-boards-height-calculation
This reverts commit 5c4a58581eb2e0061187a1b0acb60807516424fe.
-rw-r--r--app/assets/stylesheets/pages/boards.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index 429a00237c5..c03d4c2eebf 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -167,8 +167,6 @@
background: $gray-light;
border: 1px solid $border-color;
border-radius: $border-radius-default;
- display: flex;
- flex-direction: column;
}
.board-header {
@@ -230,6 +228,7 @@
}
.board-blank-state {
+ height: calc(100% - 49px);
padding: $gl-padding;
background-color: $white-light;
}
@@ -253,7 +252,8 @@
}
.board-list-component {
- overflow-y: auto;
+ height: calc(100% - 49px);
+ overflow: hidden;
position: relative;
}
@@ -263,6 +263,8 @@
margin-bottom: 0;
padding: 5px;
list-style: none;
+ overflow-y: scroll;
+ overflow-x: hidden;
}
.board-list-loading {