From ba101912dc21394f5a0760e64dc59a68f47f09e4 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 6 Nov 2020 22:48:06 +0000 Subject: [PATCH] Bug 26962: Make print.css pure black Test plan: 1. Generate some different notice/slips like ISSUESLIP, HOLD_SLIP, any slip you like 2. Inspect and see that body, p tags and see that the computed color is #333333 or #000066. 3. Apply patch 4. The computed style for color should not be #00000 5. This prints much better, especially on thermal/receipt printers Signed-off-by: David Cook Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/css/print.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/print.css b/koha-tmpl/intranet-tmpl/prog/css/print.css index e3c89ae412..4ac12e18a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/print.css +++ b/koha-tmpl/intranet-tmpl/prog/css/print.css @@ -15,14 +15,14 @@ a:hover { body { background-color : #FFF; - color : #333333; + color : #000000; font-family : arial, geneva, sans-serif; font-size : 14px; margin : 0px 0px 0px 0px; } caption { - color : #000066; + color : #000000; font-size : 18px; font-weight : bold; margin-top : 5px; @@ -36,7 +36,7 @@ form { h1 { - color : #000066; + color : #000000; font-size : 22px; font-weight : bold; margin-bottom : 3px; @@ -48,7 +48,7 @@ h1#logo { } h2 { - color : #000066; + color : #000000; font-size : 20px; font-weight : bold; margin-bottom : 3px; @@ -56,7 +56,7 @@ h2 { } h3 { - color : #000066; + color : #000000; font-size : 18px; font-weight : bold; margin-bottom : 3px; @@ -64,7 +64,7 @@ h3 { } h4 { - color : #000066; + color : #000000; font-size : 16px; font-weight : bold; margin-bottom : 3px; @@ -72,7 +72,7 @@ h4 { } h5 { - color : #000066; + color : #000000; font-size : 15px; font-weight : bold; margin-bottom : 1px; @@ -80,7 +80,7 @@ h5 { } h6 { - color : #000066; + color : #000000; font-size : 14px; font-weight : bold; margin-bottom : 1px; @@ -231,12 +231,12 @@ td.debit { } #receipt a:link { - color : #000066; + color : #000000; text-decoration: none; } #receipt a:visited { - color : #000066; + color : #000000; text-decoration: none; } -- 2.11.0