fix kanban column width when the user fold & unfold

stable
Juanfran 2014-11-18 12:45:03 +01:00
parent 02d507a281
commit 3c6018ae0f
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
$column-width: 300px; $column-width: 300px;
$column-folded-width: 30px; $column-folded-width: 30px;
$column-flex: 1; $column-flex: 0;
$column-shrink: 0; $column-shrink: 0;
$column-margin: 0 10px 0 0; $column-margin: 0 10px 0 0;
@ -53,7 +53,7 @@ $column-margin: 0 10px 0 0;
position: absolute; position: absolute;
} }
.task-colum-name { .task-colum-name {
@include table-flex-child(); @include table-flex-child($column-flex, $column-width, $column-shrink, $column-width);
@include table-flex(); @include table-flex();
@include justify-content(space-between); @include justify-content(space-between);
@extend %large; @extend %large;
@ -90,7 +90,7 @@ $column-margin: 0 10px 0 0;
overflow-x: auto; overflow-x: auto;
width: 100%; width: 100%;
.task-column { .task-column {
@include table-flex-child(); @include table-flex-child($column-flex, $column-width, $column-shrink, $column-width);
margin: $column-margin; margin: $column-margin;
overflow-y: auto; overflow-y: auto;
&:last-child { &:last-child {