fix kanban & backlog column width in IE11

stable
Juanfran 2015-01-14 15:21:32 +01:00
parent 99d183085f
commit 7f4c12e3b8
2 changed files with 4 additions and 2 deletions

View File

@ -58,10 +58,10 @@ $column-margin: 0 10px 0 0;
}
.task-colum-name {
@extend %large;
@include table-flex-child($column-flex, $column-width, $column-shrink, $column-width);
@include table-flex();
background: $whitish;
border-top: 3px solid $gray-light;
flex: auto 0 auto;
justify-content: space-between;
margin: $column-margin;
max-width: $column-width;

View File

@ -54,15 +54,17 @@ $column-margin: 0 10px 0 0;
}
.task-colum-name {
@extend %large;
@include table-flex-child($column-flex, $column-width, $column-shrink, $column-width);
@include table-flex();
background: $whitish;
border-top: 3px solid $gray-light;
flex: auto 0 auto;
justify-content: space-between;
margin: $column-margin;
max-width: $column-width;
padding: .5rem .5rem .5rem 1rem;
position: relative;
text-transform: uppercase;
width: $column-width;
&:last-child {
margin-right: 0;
}