5 * We provide some sane print styling for Drupal using Zen's layout method.
11 /* underline all links */
14 text-decoration: underline !important;
17 /* Don't underline header */
19 #site-name a:visited {
20 text-decoration: none !important;
23 /* Add visible URL after links. */
24 #content a[href]:after {
25 content: " (" attr(href) ")";
29 /* Only display useful links. */
30 #content a[href^="javascript:"]:after,
31 #content a[href^="#"]:after {
35 /* Add visible title after abbreviations. */
36 #content abbr[title]:after {
37 content: " (" attr(title) ")";
41 /* Un-float the content */
46 padding: 0 !important;
49 /* Turn off any background colors or images */
57 background-color: transparent !important;
58 background-image: none !important;
61 /* Hide sidebars and nav elements */
65 .region-sidebar-first,
66 .region-sidebar-second,
73 .forum-topic-navigation,
80 /* If you un-comment the "page { overflow-y: hidden; }" ruleset, Firefox clips
81 the content after the first page. */
86 } /* End @media print */