-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
51 lines (48 loc) · 1.1 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
/* Print styles */
@media print {
/* Archive print css */
#page-mod-quiz-report #page-header {
display: none;
}
#page-mod-quiz-report #page-footer {
display: none;
}
#page-mod-quiz-report #report-region-wrap {
display: none;
}
#page-mod-quiz-report #block-region-side-pre {
display: none;
}
#page-mod-quiz-report #block-region-side-post {
display: none;
}
fieldset#id_preferencesuser {
display: none;
}
header[role=banner] {
display: none;
}
#region-main.has-blocks {
display: block;
width: 100%;
}
div[role=main] .generaltable.generalbox.quizreviewsummary:not(:first-of-type) {
page-break-before: always;
}
div.history.clearfix,
div.que .info {
page-break-inside: avoid;
}
}
@media print and (min-width: 1200px) {
.row-fluid .span9,
.row-fluid [class*="span"]:first-child {
width: 100%;
}
}
@media print and (min-width: 768px) {
.row-fluid .span9,
.row-fluid [class*="span"]:first-child {
width: 100%;
}
}