Merge pull request #302 from taigaio/fix-assigned-to-overflow
fix assigned to issues overflowstable
commit
4e76d2a584
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue