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
|
/**
* @file
* Print styling
*
* We provide some sane print styling for Drupal using Zen's layout method.
*/
@media print {
/* line 14, ../../../sass/sass/print.scss */
a:link,
a:visited {
/* underline all links */
text-decoration: underline !important;
}
/* line 17, ../../../sass/sass/print.scss */
#site-name a:link, #site-name
a:visited {
/* Don't underline header */
text-decoration: none !important;
}
/* line 23, ../../../sass/sass/print.scss */
#content a[href]:after {
/* Add visible URL after links. */
content: " (" attr(href) ")";
font-weight: normal;
font-size: 14px;
}
/* line 30, ../../../sass/sass/print.scss */
#content a[href^="javascript:"]:after,
#content a[href^="#"]:after {
/* Only display useful links. */
content: "";
}
/* line 34, ../../../sass/sass/print.scss */
#content abbr[title]:after {
/* Add visible title after abbreviations. */
content: " (" attr(title) ")";
}
/* line 39, ../../../sass/sass/print.scss */
#content {
/* Un-float the content */
float: none !important;
width: 100% !important;
margin: 0 !important;
padding: 0 !important;
}
/* line 49, ../../../sass/sass/print.scss */
body,
#page,
#main,
#content {
/* Turn off any background colors or images */
color: #000;
background-color: transparent !important;
background-image: none !important;
}
/* line 68, ../../../sass/sass/print.scss */
#skip-link,
#toolbar,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.breadcrumb,
.tabs,
.action-links,
.links,
.book-navigation,
.forum-topic-navigation,
.pager,
.feed-icons {
/* Hide sidebars and nav elements */
visibility: hidden;
display: none;
}
}
/* End @media print */
|