bitque/jirs-client/js/css/reports.scss
2021-01-19 21:57:48 +01:00

85 lines
2.1 KiB
SCSS

#reports {
> .top {
> .graph {
margin-top: 15px;
> .graphHeader {
margin-bottom: 15px;
}
}
> .issueList {
display: block;
margin-top: 15px;
> .issueListHeader {
margin-bottom: 15px;
}
> .issue {
padding: {
top: 10px;
bottom: 10px;
}
display: grid;
grid-template-columns: 124px 130px calc(100% - 250px);
grid-template-areas: "type number name" "priority desc desc" "updatedAt desc desc";
&:hover {
background-color: var(--issue-background-selected);
}
.number {
grid-area: number;
> .styledLink {
line-height: 1;
> .styledIcon, > span {
line-height: 1;
}
}
}
.type {
grid-area: type;
}
.priority {
grid-area: priority;
}
.name {
grid-area: name;
}
.desc {
grid-area: desc;
margin-top: 10px;
font-size: 12px;
color: var(--textLight);
pre * {
font-size: 12px;
color: var(--textLight);
}
}
.updatedAt {
grid-area: updatedAt;
align-self: end;
color: var(--textLight);
font-size: 12px;
}
}
> .issue.selected {
color: var(--primary);
font-family: var(--font-bold);
}
> .issue.nonSelected {
color: var(--textLight);
font-family: var(--font-regular);
}
}
}
}