forked from learnweb/moodle-block_groups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
47 lines (40 loc) · 1010 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.block_groups div.memberlist {
list-style: url('[[pix:i/navigationitem]]');
}
.block_groups input.blockgroupsandgroupingcheckbox {
cursor: pointer;
display: none;
text-align: left;
}
.block_groups input.blockgroupsandgroupingcheckbox ~ label::before {
content: url('[[pix:t/collapsed]]');
}
.block_groups input.blockgroupsandgroupingcheckbox:checked ~ label::before {
content: url('[[pix:t/expanded]]');
}
.block_groups input.blockgroupsandgroupingcheckbox ~ ul {
display: none;
}
.block_groups input.blockgroupsandgroupingcheckbox:checked ~ ul {
display: block;
list-style: url('[[pix:i/navigationitem]]');
padding-left: 16px;
}
.block_groups .rightalign {
float: right;
}
.block_groups .hiddengroups {
opacity: 0.5;
}
.block_groups img {
margin-right: 5px;
margin-top: 3px;
vertical-align: top;
}
.block_groups li {
line-height: 22px;
}
.block_groups .block-groups-warning,
.block_groups .block-groups-spinner {
padding-right: 6px;
}