From d0f087db2df65bd4b6c4c4558ea39f14f38733c7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 17 Feb 2017 00:42:52 +0100 Subject: Add UI to view report details, remove reported statuses, quick links to resolve/silence/suspend from report --- app/assets/stylesheets/admin.scss | 45 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) (limited to 'app/assets/stylesheets/admin.scss') diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 7d056bc06..f7c5a5698 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -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; +} -- cgit