From 497602b4de75368b897bcb0549d0f74e36f89206 Mon Sep 17 00:00:00 2001 From: Christian Binder Date: Wed, 22 Nov 2006 21:52:56 +0000 Subject: [PATCH] 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) --- phpgwapi/templates/idots/print.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/phpgwapi/templates/idots/print.css b/phpgwapi/templates/idots/print.css index 7cba1ad4a1..cab972730a 100644 --- a/phpgwapi/templates/idots/print.css +++ b/phpgwapi/templates/idots/print.css @@ -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; } \ No newline at end of file