106 lines
2.2 KiB
SCSS
106 lines
2.2 KiB
SCSS
.issues-table {
|
|
display: flex;
|
|
margin-bottom: 2rem;
|
|
&.empty {
|
|
display: none;
|
|
}
|
|
.row {
|
|
&:hover {
|
|
background: lighten($green-taiga, 60%);
|
|
transition: background .2s ease-in;
|
|
}
|
|
.icon {
|
|
display: inline;
|
|
}
|
|
}
|
|
.row-selected {
|
|
background: lighten($green-taiga, 60%);
|
|
transition: background .2s ease-in;
|
|
}
|
|
.title {
|
|
@extend %medium;
|
|
@extend %bold;
|
|
border-bottom: 1px solid $gray-light;
|
|
&:hover {
|
|
background: transparent;
|
|
}
|
|
div {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.table-main {
|
|
@extend %small;
|
|
border-bottom: 1px solid darken($whitish, 4%);
|
|
}
|
|
.avatar {
|
|
align-items: center;
|
|
display: flex;
|
|
img {
|
|
width: 35px;
|
|
}
|
|
figcaption {
|
|
flex-basis: 60%;
|
|
flex-grow: 1;
|
|
margin-left: .5rem;
|
|
}
|
|
}
|
|
.level-field {
|
|
flex-basis: 70px;
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
}
|
|
.subject {
|
|
flex-basis: 300px;
|
|
flex-grow: 7;
|
|
padding-right: 1rem;
|
|
span {
|
|
&:first-child {
|
|
margin-right: .5rem;
|
|
}
|
|
}
|
|
}
|
|
.issue-field,
|
|
.assigned-field,
|
|
.created-field {
|
|
flex-basis: 100px;
|
|
flex-grow: 1;
|
|
padding: 0 1rem;
|
|
position: relative;
|
|
text-align: left;
|
|
}
|
|
.assigned-field {
|
|
flex-basis: 100px;
|
|
flex-grow: 2;
|
|
}
|
|
.issue-assignedto {
|
|
cursor: pointer;
|
|
position: relative;
|
|
&:hover {
|
|
.icon {
|
|
opacity: 1;
|
|
transition: opacity .3s linear;
|
|
}
|
|
}
|
|
figcaption {
|
|
max-width: 60%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
.icon {
|
|
opacity: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: .5rem;
|
|
transition: opacity .3s linear;
|
|
}
|
|
}
|
|
.pop-status {
|
|
@include popover(200px, 20px, 0, '', '');
|
|
&.fix {
|
|
bottom: 0;
|
|
top: auto;
|
|
}
|
|
}
|
|
}
|