hide body background-image when printing - this makes it possible to activate printing of backgrounds generally (e.g. in Firefox, looks nice for calendar events), but leave background-white instead of grey (which made spooling very,very slow for some reason)

This commit is contained in:
Christian Binder 2006-11-22 21:52:56 +00:00
parent 990e32e760
commit 497602b4de

View File

@ -56,4 +56,9 @@ tr.th td {
a,a:link,a:visited,a:hover {
font-style: normal;
color: black;
}
/* hide background-image to save print costs and spool time */
body {
background-image: none;
}