summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/permissionmanager/style.css')
-rw-r--r--modules-available/permissionmanager/style.css89
1 files changed, 89 insertions, 0 deletions
diff --git a/modules-available/permissionmanager/style.css b/modules-available/permissionmanager/style.css
new file mode 100644
index 00000000..e1fac370
--- /dev/null
+++ b/modules-available/permissionmanager/style.css
@@ -0,0 +1,89 @@
+#switchForm {
+ text-align: center;
+ margin-bottom: 50px;
+}
+
+#saveButton {
+ margin-right: 10px;
+}
+
+
+#roleName {
+ width: 200px;
+ display: inline-block;
+ margin-left: 20px;
+}
+
+.table {
+ margin-top: 20px;
+}
+
+.table > tbody > tr > td {
+ vertical-align: middle;
+ height: 50px;
+}
+
+.scrollingTable {
+ height: 500px;
+ overflow: auto;
+}
+
+.customSpanMargin {
+ display: inline-block;
+ margin-top: 2px;
+ margin-bottom: 2px;
+}
+
+.panel-primary > .panel-heading {
+ background-image: none;
+}
+
+.panel, .row {
+ margin-bottom: 20px;
+}
+
+.list-group, .checkbox {
+ margin: 0;
+}
+
+.disabled {
+ opacity: 0.6;
+}
+
+input[type='checkbox']:disabled {
+ cursor: inherit;
+}
+
+.module-toggle-group {
+ width: 100%;
+ margin-top: 20px;
+}
+
+.module-container {
+ -moz-column-gap: 20px;
+ -webkit-column-gap: 20px;
+ column-gap: 20px;
+}
+
+
+.module-container div {
+ display: inline-block;
+ width: 100%;
+}
+
+
+@media (max-width: 767px) {
+ .module-container {
+ -moz-column-count: 1;
+ -webkit-column-count: 1;
+ column-count: 1;
+ }
+}
+
+@media (min-width: 768px) {
+ .module-container {
+ -moz-column-count: 2;
+ -webkit-column-count: 2;
+ column-count: 2;
+ }
+}