[backport] Fix assigned to issues overflow

stable
Juanfran 2015-01-30 07:50:01 +01:00 committed by Xavier Julián
parent aee04ca801
commit fd14e3d334
1 changed files with 6 additions and 4 deletions

View File

@ -52,11 +52,9 @@
width: 75px; width: 75px;
} }
.subject { .subject {
flex-basis: 300px;
flex-grow: 7;
flex-shrink: 0;
overflow: hidden; overflow: hidden;
padding-right: 1rem; padding-right: 1rem;
width: 100%;
a { a {
@include ellipsis(100%); @include ellipsis(100%);
display: block; display: block;
@ -72,13 +70,17 @@
.assigned-field, .assigned-field,
.created-field , .created-field ,
.assigned-field { .assigned-field {
flex-basis: 120px; flex-basis: 140px;
flex-grow: 1; flex-grow: 1;
flex-shrink: 0; flex-shrink: 0;
padding: 0 1rem; padding: 0 1rem;
position: relative; position: relative;
text-align: left; text-align: left;
} }
.assigned-field {
flex: 0 0 160px;
max-width: 160px;
}
.issue-assignedto { .issue-assignedto {
cursor: pointer; cursor: pointer;
position: relative; position: relative;