From: lpsolit%gmail.com <> Date: Sun, 22 Oct 2006 07:40:33 +0000 (+0000) Subject: Bug 110152: Offer CSS2 "paged media" for people who print the show_bug page - Patch... X-Git-Tag: bugzilla-2.23.4~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=762caad4f6ef2236c31e20f35bd9132fb5092bec;p=thirdparty%2Fbugzilla.git Bug 110152: Offer CSS2 "paged media" for people who print the show_bug page - Patch by Frédéric Buclin r=bkor a=justdave --- diff --git a/skins/standard/global.css b/skins/standard/global.css index b00ec851b7..c2701523ae 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -280,3 +280,15 @@ body > dl > dt { dl dl > dt { border-top: none; } + +/* Rules specific for printing */ +@media print { + #header, #footer { + display: none; + } + + body { + background-image: none; + background-color: #fff; + } +}