forked from moodle-an-hochschulen/moodle-local_profilecohort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (64 loc) · 1.74 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
/* Style the rules and actions on the view/edit rules page. */
.localprofile-rule-actions {
color: #888;
}
.localprofile-flash {
animation-duration: 1s;
animation-name: localprofile-flash;
}
@keyframes localprofile-flash {
from {
background-color: inherit;
}
25% {
background-color: #468847;
}
50% {
background-color: #468847;
}
to {
background-color: inherit;
}
}
.localprofile-combined {
background-color: #f9f9f9;
border: 1px solid #ccc;
margin: 5px;
padding: 20px;
}
.localprofile-combined .localprofile-fieldwrapper + .localprofile-fieldwrapper .localprofile-value {
display: none;
}
.localprofile-fieldwrapper.todelete,
.localprofile-fieldwrapper.todelete span,
.localprofile-fieldwrapper.todelete div,
.localprofile-fieldwrapper.todelete fieldset,
.localprofile-fieldwrapper.todelete label,
.localprofile-fieldwrapper.todelete select,
.localprofile-fieldwrapper.todelete input {
color: #c38a8a;
text-decoration: line-through solid currentColor;
}
.localprofile-fieldwrapper.todelete label.deleterule {
color: #888;
text-decoration: none;
}
/* Style the rules and actions on the view/edit rules page. */
form #id_hiddenheading legend {
display: none;
}
/* Add some space to the admin page intro */
.path-admin-local-profilecohort #intro {
margin-bottom: 1rem;
}
/* Style the Bootstrap collapse header on the cohort members page. */
#profilecohort-cohortlist .card-header a {
background-repeat: no-repeat;
padding-left: 20px;
}
#profilecohort-cohortlist .card-header a.collapsed {
background-image: url([[pix:core|t/collapsed]]);
}
#profilecohort-cohortlist .card-header a:not(.collapsed) {
background-image: url([[pix:core|t/expanded]]);
}