Table search results fix for IE11
parent
8792efec39
commit
6e81016322
|
@ -10,26 +10,27 @@
|
||||||
align-content: center;
|
align-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
padding: .5rem;
|
padding: .5rem;
|
||||||
&:hover {
|
&:hover {
|
||||||
background: lighten($green-taiga, 60%);
|
background: lighten($green-taiga, 60%);
|
||||||
transition: background .2s ease-in;
|
transition: background .2s ease-in;
|
||||||
}
|
}
|
||||||
.user-stories {
|
.user-stories {
|
||||||
flex-basis: 0;
|
flex-basis: 300px;
|
||||||
flex-grow: 5;
|
flex-grow: 10;
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
}
|
}
|
||||||
.status,
|
.status,
|
||||||
.points {
|
.points {
|
||||||
flex-basis: 100px;
|
flex-basis: 150px;
|
||||||
flex-grow: 1;
|
flex-grow: 0;
|
||||||
padding: 0 1rem;
|
padding: 0 1rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.assigned-to {
|
.assigned-to {
|
||||||
flex-basis: 250px;
|
flex-basis: 150px;
|
||||||
flex-grow: 1;
|
flex-grow: 0;
|
||||||
padding: 0 1rem;
|
padding: 0 1rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -79,11 +80,13 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
img {
|
img {
|
||||||
flex-basis: 35px;
|
width: 35px;
|
||||||
}
|
}
|
||||||
figcaption {
|
figcaption {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
|
flex-basis: 60%;
|
||||||
margin-left: .5rem;
|
margin-left: .5rem;
|
||||||
|
max-width: 60%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
Loading…
Reference in New Issue