Add UI to view report details, remove reported statuses, quick links to resolve/silence/suspend from report

This commit is contained in:
Eugen Rochko
2017-02-17 00:42:52 +01:00
parent 9c88d1b99e
commit d0f087db2d
4 changed files with 118 additions and 3 deletions

View File

@ -93,7 +93,7 @@
margin-bottom: 40px;
}
p {
& > p {
font-size: 14px;
line-height: 18px;
color: $color2;
@ -104,6 +104,13 @@
font-weight: 500;
}
}
hr {
margin: 20px 0;
border: 0;
background: transparent;
border-bottom: 1px solid $color1;
}
}
.simple_form {
@ -180,3 +187,39 @@
}
}
}
.report-accounts {
display: flex;
margin-bottom: 20px;
}
.report-accounts__item {
flex: 1 1 0;
& > strong {
display: block;
margin-bottom: 10px;
font-weight: 500;
font-size: 14px;
line-height: 18px;
color: $color2;
}
&:first-child {
margin-right: 10px;
}
}
.report-status {
display: flex;
margin-bottom: 10px;
.activity-stream {
flex: 2 0 auto;
margin-right: 20px;
}
}
.report-status__actions {
flex: 0 0 auto;
}