-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (38 loc) · 1.32 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
/* Positioning of icons */
.block_course_overview_campus .hidecourseicon {
float: right;
margin-left: 20px;
}
.block_course_overview_campus a:first-of-type > .icon {
margin-left: inherit; /* Get rid of a unneeded Moodle core behaviour here */
}
/* Used for hiding courses in courselist */
.coc-hidden {
display: none;
}
/* Hidden courses management */
#coc-hiddencoursesmanagement-bottom,
#coc-hiddencoursesmanagement-top {
font-size: 90%;
text-align: center; /* For some reason, the Bootstrap class text-center does not work here yet */
}
#coc-hiddencoursescount {
color: darkred;
}
/* Filter submit appearance */
#coc-filtersubmit {
text-align: center; /* For some reason, the Bootstrap class justify-content-center does not work here yet */
}
.jsenabled #coc-filtersubmit {
display: none; /* Hide submit button when JS is enabled */
}
/* Course list appearance */
#coc-courselist .coursebox h3 {
margin: 0; /* Remove standard margin from h3 heading*/
padding: 0 0 0 .5rem; /* Keep some of the left padding where the course news icon was previously */
}
#coc-courselist .coc-metainfo {
font-size: 85%;
font-weight: normal; /* To prevent the text from being shown in bold as it's still a h3 heading*/
white-space: pre-wrap; /* To support multiple whitespaces before and after pipe */
}