87 lines
1.9 KiB
SCSS
87 lines
1.9 KiB
SCSS
.search-result-table {
|
|
border-top: 1px solid $whitish;
|
|
.row {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: .5rem;
|
|
|
|
.ref {
|
|
margin-right: .5rem;
|
|
}
|
|
.user-stories {
|
|
overflow: hidden;
|
|
padding-right: 1rem;
|
|
width: 100%;
|
|
}
|
|
.status,
|
|
.points,
|
|
.sprint {
|
|
flex: 0 0 150px;
|
|
flex-grow: 0;
|
|
max-width: 150px;
|
|
padding: 0 1rem;
|
|
text-align: center;
|
|
}
|
|
.assigned-to {
|
|
flex: 0 0 150px;
|
|
max-width: 150px;
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
.row-selected {
|
|
background: lighten($primary, 60%);
|
|
transition: background .2s ease-in;
|
|
}
|
|
|
|
// TODO: refactor xaviju
|
|
.user-story-name {
|
|
input {
|
|
vertical-align: top;
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.icon {
|
|
@include font-size(medium);
|
|
color: $gray-light;
|
|
&:hover {
|
|
color: $grayer;
|
|
transition: color .3s linear;
|
|
}
|
|
}
|
|
}
|
|
.table-main {
|
|
@include font-size(small);
|
|
border-bottom: 1px solid $whitish;
|
|
}
|
|
.status,
|
|
.points,
|
|
.sprint {
|
|
position: relative;
|
|
}
|
|
.avatar {
|
|
align-items: center;
|
|
display: flex;
|
|
img {
|
|
width: 35px;
|
|
}
|
|
.avatar-caption {
|
|
display: block;
|
|
margin-left: .5rem;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 80px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-result-table-header {
|
|
@include font-type(bold);
|
|
}
|