summaryrefslogtreecommitdiffstats
path: root/webapp/sass/routes
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmoodspin@users.noreply.github.com>2016-05-12 00:30:00 +0500
committerChristopher Speller <crspeller@gmail.com>2016-05-11 15:30:00 -0400
commit04f7273461a130e93f19af935df673016ab1dbc7 (patch)
treea6afa95b17ba8455fb20f899870b1c929a1b40bd /webapp/sass/routes
parent7babccfa511995708ac3eab1efeb5f2bfcf7455e (diff)
downloadchat-04f7273461a130e93f19af935df673016ab1dbc7.tar.gz
chat-04f7273461a130e93f19af935df673016ab1dbc7.tar.bz2
chat-04f7273461a130e93f19af935df673016ab1dbc7.zip
Improving compliance stuff (#2963)
* Improving compliance stuff * Fixing padding on mobile
Diffstat (limited to 'webapp/sass/routes')
-rw-r--r--webapp/sass/routes/_admin-console.scss11
-rw-r--r--webapp/sass/routes/_compliance.scss38
-rw-r--r--webapp/sass/routes/_module.scss1
3 files changed, 39 insertions, 11 deletions
diff --git a/webapp/sass/routes/_admin-console.scss b/webapp/sass/routes/_admin-console.scss
index 65fefdb33..0f47e7529 100644
--- a/webapp/sass/routes/_admin-console.scss
+++ b/webapp/sass/routes/_admin-console.scss
@@ -160,17 +160,6 @@
width: 100%;
}
- .compliance__panel,
- .audit__panel {
- background-color: $white;
- border: 1px solid $border-gray;
- height: 70vh;
- margin-top: 10px;
- overflow: auto;
- padding: 5px;
- width: 100%;
- }
-
.app__content {
color: #333;
diff --git a/webapp/sass/routes/_compliance.scss b/webapp/sass/routes/_compliance.scss
new file mode 100644
index 000000000..57eb538c6
--- /dev/null
+++ b/webapp/sass/routes/_compliance.scss
@@ -0,0 +1,38 @@
+@charset 'UTF-8';
+
+.compliance-panel__table,
+.audit-panel__table {
+ background-color: $white;
+ border: 1px solid $border-gray;
+ margin-top: 10px;
+ max-height: 70vh;
+ min-height: 100px;
+ overflow: auto;
+ padding: 5px;
+ width: 100%;
+}
+
+.compliance-panel,
+.audit-panel {
+ .row {
+ > .form-group {
+ padding-left: 0;
+
+ &:first-child {
+ padding-left: 15px;
+ }
+ }
+
+ label {
+ font-weight: 600;
+ }
+ }
+
+ .fa-refresh {
+ margin-right: 5px;
+ }
+}
+
+.compliance-panel {
+ margin-bottom: 3em;
+}
diff --git a/webapp/sass/routes/_module.scss b/webapp/sass/routes/_module.scss
index 4f3f6f9cd..11b815007 100644
--- a/webapp/sass/routes/_module.scss
+++ b/webapp/sass/routes/_module.scss
@@ -4,6 +4,7 @@
@import 'activity-log';
@import 'admin-console';
@import 'backstage';
+@import 'compliance';
@import 'docs';
@import 'error-page';
@import 'loading';