about summary refs log tree commit diff
path: root/app/assets/stylesheets/admin.scss
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-02-17 00:42:52 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-02-17 00:42:52 +0100
commitd0f087db2df65bd4b6c4c4558ea39f14f38733c7 (patch)
tree01b92005cb0a221469a67492643480f8e461831d /app/assets/stylesheets/admin.scss
parent9c88d1b99ea2baa5e55251dc98f10b1ee0559ee9 (diff)
Add UI to view report details, remove reported statuses, quick links to resolve/silence/suspend from report
Diffstat (limited to 'app/assets/stylesheets/admin.scss')
-rw-r--r--app/assets/stylesheets/admin.scss45
1 files changed, 44 insertions, 1 deletions
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;
+}