forked from Syxton/moodle-block_massaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
91 lines (74 loc) · 1.98 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#block-massaction {
max-width: 400px;
}
.block-massaction-select-containing-div {
display: flex;
align-items: center;
}
/* The following adaptions of colors are needed because option elements of select cannot be styled due to
* browser limitations.
*/
#block-massaction-control-section-list-select,
#block-massaction-control-section-list-moveto,
#block-massaction-control-section-list-duplicateto {
background-color: transparent;
width: 100%;
}
.block-massaction-section-select-help-icon {
padding-left: 0.3em;
}
#block-massaction-control-section-list-select option {
color: var(--dark);
}
#block-massaction-control-section-list-select option:disabled {
color: var(--gray);
}
#block-massaction-control-section-list-moveto option,
#block-massaction-control-section-list-duplicateto option {
color: var(--dark);
}
#block-massaction-control-section-list-moveto option:disabled,
#block-massaction-control-section-list-duplicateto option:disabled {
color: var(--gray);
}
#block-massaction-control-deselectlist {
position: relative;
float: right;
}
.block-massaction .block-massaction-action {
position: relative;
margin-left: 0.5em;
}
.block-massaction-action > div:hover {
cursor: pointer;
background-color: var(--light);
}
.block-massaction-action > form {
margin-top: 5px;
margin-bottom: 5px;
}
#block-massaction-help-icon {
text-align: center;
padding: 0.2em;
}
#block-massaction-module-list {
margin-top: 3em;
}
.block-massaction-checkbox {
/* In case the checkbox is overlapping with another element, let's make sure the checkbox is still clickable */
z-index: 1;
}
.block-massaction-checkbox-legacy {
position: absolute;
transform: translate(0.4rem, 1.4rem);
}
.block-massaction-courseselectbox,
.block-massaction-sectionselectbox {
display: flex;
justify-content: center;
min-height: 60vh;
}
.block-massaction-courseselectbox form,
.block-massaction-sectionselectbox form {
max-width: 600px;
}