aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorZarino Zappia <mail@zarino.co.uk>2019-05-01 20:07:11 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2019-05-02 07:43:12 +0100
commit26d2bb9dddb0f9e10267ec47dbcb4a1571021a8b (patch)
treed285122f2ec320fc498b3fc9601a353e8e470096 /web
parent1a1422783f9ffd10970e4b4439bee32f3ceb8fc7 (diff)
Custom layout for admin user permission checkboxes
Diffstat (limited to 'web')
-rw-r--r--web/cobrands/sass/_admin.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/web/cobrands/sass/_admin.scss b/web/cobrands/sass/_admin.scss
index 8b701cfc6..1f55c62df 100644
--- a/web/cobrands/sass/_admin.scss
+++ b/web/cobrands/sass/_admin.scss
@@ -217,3 +217,26 @@ $button_bg_col: #a1a1a1; // also search bar (tables)
.danger-zone {
text-align: #{$right};
}
+
+.permissions-checkboxes {
+ margin: 0;
+
+ & > li {
+ border-top: 1px solid $table_border_color;
+ list-style: none;
+ padding: 0;
+ margin: 1em 0;
+ padding-top: 1em;
+ font-weight: bold;
+
+ @media (min-width: 48em) {
+ display: grid;
+ grid-template-columns: 10em auto;
+ grid-column-gap: 1em;
+ }
+ }
+
+ ul {
+ font-weight: normal;
+ }
+}