Join us on IRC: #infoanarchy on irc.oftc.net — channel blog
Help:Printable
From iA wiki
&printable=yes in the URL, e.g.
http://meta.wikimedia.org/w/wiki.phtml?title=Help:Template&printable=yes
gives a printable version, apparently only when logged in. Other skins than Monobook have a link to this URL. Printing an ordinary page should also automatically print this version, even though it is not on the screen.
[edit]
CSS
http://meta.wikimedia.org/style/wikiprintable.css :
/* MediaWiki print stylesheet */
body {
color: #000000; background: #ffffff;
}
/* MSIE/Win doesn't understand 'inherit' */
a, a.external, a.new, a.stub {
color: black ! important;
text-decoration: none ! important;
}
#article {
margin: 0 ! important;
}
/* Continue ... */
a, a.external, a.new, a.stub {
color: inherit ! important;
text-decoration: inherit ! important;
}
/* Hide ugly UI stuff */
#quickbar, #topbar, #footer, #siteNotice,
.editsection, .toctoggle {
display: none;
}
/* */
#article {
position: relative;
margin: inherit ! important;
}
/* Show some stuff */
.urlexpansion {
display: inline ! important;
}
.printfooter {
border-top: solid 1px black;
display: block ! important;
}
/* Old stuff, fixme:
.bodytext { }
a.CBlink { color: #0000AA; text-decoration: none; font-size: 12pt; }
a.interwiki, a.external { color: #3333BB; text-decoration: none; }
h1.pagetitle { padding-bottom: 0; margin-bottom: 0; }
i.link, u.link { color: #000066; }
p.subtitle { padding-top: 0; margin-top: 0; }
*/

