2021-01-15 22:57:26 +01:00
|
|
|
#reports {
|
|
|
|
> .top {
|
|
|
|
> .graph {
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
|
|
> .graphHeader {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .issueList {
|
|
|
|
display: block;
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
|
|
> .issueListHeader {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .issue {
|
2021-01-19 21:57:48 +01:00
|
|
|
padding: {
|
|
|
|
top: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
2021-01-19 22:20:29 +01:00
|
|
|
border-bottom: 1px solid var(--borderLight);
|
2021-01-15 22:57:26 +01:00
|
|
|
display: grid;
|
2021-01-19 22:20:29 +01:00
|
|
|
grid-template-columns: 80px 130px calc(100% - 210px);
|
2021-01-19 21:57:48 +01:00
|
|
|
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;
|
2021-01-19 22:20:29 +01:00
|
|
|
> .styledIcon {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
2021-01-19 21:57:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.priority {
|
|
|
|
grid-area: priority;
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
grid-area: name;
|
2021-01-19 22:20:29 +01:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1;
|
2021-01-19 21:57:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.desc {
|
|
|
|
grid-area: desc;
|
|
|
|
margin-top: 10px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--textLight);
|
2021-01-19 22:20:29 +01:00
|
|
|
pre {
|
|
|
|
&:first-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
* {
|
|
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
color: var(--textLight);
|
|
|
|
}
|
2021-01-19 21:57:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.updatedAt {
|
|
|
|
grid-area: updatedAt;
|
|
|
|
align-self: end;
|
|
|
|
color: var(--textLight);
|
2021-01-19 22:20:29 +01:00
|
|
|
font-size: 10px;
|
2021-01-19 21:57:48 +01:00
|
|
|
}
|
2021-01-15 22:57:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .issue.selected {
|
|
|
|
color: var(--primary);
|
|
|
|
font-family: var(--font-bold);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .issue.nonSelected {
|
|
|
|
color: var(--textLight);
|
|
|
|
font-family: var(--font-regular);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|