summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/style.css
diff options
context:
space:
mode:
authorUdo Walter2017-11-30 17:40:00 +0100
committerUdo Walter2017-11-30 17:40:00 +0100
commiteff2f558576ff58cb402c7b28b38620ddc467599 (patch)
tree2a5db71d227f3411731952163d1bd363e80c2b69 /modules-available/permissionmanager/style.css
parent[permissionmanager] fixed bug: role without locations was shown as role with ... (diff)
downloadslx-admin-eff2f558576ff58cb402c7b28b38620ddc467599.tar.gz
slx-admin-eff2f558576ff58cb402c7b28b38620ddc467599.tar.xz
slx-admin-eff2f558576ff58cb402c7b28b38620ddc467599.zip
[permissionmanager] new permission and location chooser in roleeditor
Diffstat (limited to 'modules-available/permissionmanager/style.css')
-rw-r--r--modules-available/permissionmanager/style.css46
1 files changed, 21 insertions, 25 deletions
diff --git a/modules-available/permissionmanager/style.css b/modules-available/permissionmanager/style.css
index abc3270a..bb03d153 100644
--- a/modules-available/permissionmanager/style.css
+++ b/modules-available/permissionmanager/style.css
@@ -10,7 +10,7 @@
#rolename {
width: 200px;
display: inline-block;
- margin-left: 20px;
+ margin-left: 10px;
}
.table {
@@ -41,52 +41,48 @@
margin-bottom: 20px;
}
-.list-group, .checkbox {
- margin: 0;
-}
-
-.faded {
- opacity: 0.6;
-}
-
-.unclickable {
- pointer-events: none;
-}
-input[type='checkbox']:disabled {
- cursor: inherit;
+.tree-container .selected {
+ background-color: rgba(0, 182, 41, 0.23);
}
-.module-toggle-group {
- width: 100%;
- margin-top: 20px;
-}
-
-.module-container {
+.tree-container {
-moz-column-gap: 20px;
-webkit-column-gap: 20px;
column-gap: 20px;
}
-.module-container div {
+.tree-container > ul {
display: inline-block;
width: 100%;
+ padding: 0;
}
-
@media (max-width: 767px) {
- .module-container {
+ .tree-container {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
-@media (min-width: 768px) {
- .module-container {
+@media (min-width: 768px) and (max-width: 991px) {
+ .tree-container {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
}
+
+@media (min-width: 992px) {
+ .tree-container {
+ -moz-column-count: 3;
+ -webkit-column-count: 3;
+ column-count: 3;
+ }
+}
+
+ul {
+ list-style-type: none;
+} \ No newline at end of file