forked from moodlehq/moodle-local_codechecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
48 lines (48 loc) · 1.36 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
#page-admin-local-codechecker-index .local_codechecker_results h2 {
font-weight: bold;
font-style: normal;
}
#page-admin-local-codechecker-index .local_codechecker_results ul {
display: block;
list-style-type: none;
padding: 0;
margin: 0;
}
#page-admin-local-codechecker-index .local_codechecker_results li {
font-weight: normal;
font-style: normal;
display: block;
list-style-type: none;
padding: 0;
margin: 0;
}
#page-admin-local-codechecker-index .local_codechecker_results .fail.error {
color: #600;
margin-left: 2em;
}
#page-admin-local-codechecker-index .local_codechecker_results .fail.warning {
color: #960;
margin-left: 2em;
}
#page-admin-local-codechecker-index .local_codechecker_results .good {
color: #060;
}
#page-admin-local-codechecker-index .local_codechecker_results pre span {
color: #888;
}
#page-admin-local-codechecker-index .local_codechecker_results pre {
margin-top: 1em;
margin-bottom: 0;
color: #222;
background-color: #ddd;
padding: 0.5em;
word-break: break-all;
word-wrap: break-word;
}
#page-admin-local-codechecker-index .local_codechecker_results h3 :link,
#page-admin-local-codechecker-index .local_codechecker_results h3 :visited {
color: inherit;
}
#page-admin-local-codechecker-index tt {
display: inline; /* Override silly rule in Canvas theme. */
}