commit
a105ccb483
|
@ -1,6 +1,7 @@
|
||||||
div.wrapper(tg-taskboard, ng-controller="TaskboardController as ctrl",
|
div.wrapper(tg-taskboard, ng-controller="TaskboardController as ctrl",
|
||||||
ng-init="section='backlog'")
|
ng-init="section='backlog'")
|
||||||
section.main.taskboard
|
section.main.taskboard
|
||||||
|
.taskboard-inner
|
||||||
h1
|
h1
|
||||||
span(tg-bo-bind="project.name", class="project-name-short")
|
span(tg-bo-bind="project.name", class="project-name-short")
|
||||||
span.green(tg-bo-bind="sprint.name")
|
span.green(tg-bo-bind="sprint.name")
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
.taskboard {
|
.taskboard {
|
||||||
display: flex;
|
height: 100vh;
|
||||||
flex-direction: column;
|
overflow: hidden;
|
||||||
max-height: 100vh;
|
|
||||||
h1,
|
h1,
|
||||||
.graphics-container,
|
.graphics-container,
|
||||||
.summary {
|
.summary {
|
||||||
|
@ -11,3 +10,10 @@
|
||||||
@include slide(300px, hidden);
|
@include slide(300px, hidden);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.taskboard-inner {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
|
@ -47,6 +47,7 @@ $column-margin: 0 10px 0 0;
|
||||||
.taskboard-table {
|
.taskboard-table {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -109,7 +110,7 @@ $column-margin: 0 10px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.taskboard-table-body {
|
.taskboard-table-body {
|
||||||
height: 700px;
|
height: 100%;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.task-column {
|
.task-column {
|
||||||
|
|
Loading…
Reference in New Issue