[Backport] fix taskboard with 28" screens

stable
Juanfran 2015-03-20 08:10:26 +01:00 committed by David Barragán Merino
parent 3be01527da
commit 9a53594ba5
3 changed files with 21 additions and 13 deletions

View File

@ -1,6 +1,7 @@
div.wrapper(tg-taskboard, ng-controller="TaskboardController as ctrl",
ng-init="section='backlog'")
section.main.taskboard
.taskboard-inner
h1
span(tg-bo-bind="project.name", class="project-name-short")
span.green(tg-bo-bind="sprint.name")

View File

@ -1,7 +1,6 @@
.taskboard {
display: flex;
flex-direction: column;
max-height: 100vh;
height: 100vh;
overflow: hidden;
h1,
.graphics-container,
.summary {
@ -11,3 +10,10 @@
@include slide(300px, hidden);
}
}
.taskboard-inner {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}

View File

@ -47,6 +47,7 @@ $column-margin: 0 10px 0 0;
.taskboard-table {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
width: 100%;
}
@ -109,7 +110,7 @@ $column-margin: 0 10px 0 0;
}
.taskboard-table-body {
height: 700px;
height: 100%;
overflow: auto;
width: 100%;
.task-column {