Bugzilla – Attachment 115104 Details for
Bug 26962
Koha notice/slips/receipts should print in true black (#000000)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26962: (follow-up) Catch other #000066 occurrences
Bug-26962-follow-up-Catch-other-000066-occurrences.patch (text/plain), 4.50 KB, created by
Lucas Gass (lukeg)
on 2021-01-13 00:15:57 UTC
(
hide
)
Description:
Bug 26962: (follow-up) Catch other #000066 occurrences
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2021-01-13 00:15:57 UTC
Size:
4.50 KB
patch
obsolete
>From 108db8dcdc865596344aec2b267f67f8dfbc251f Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Wed, 13 Jan 2021 00:06:27 +0000 >Subject: [PATCH] Bug 26962: (follow-up) Catch other #000066 occurrences > >Addtional test steps: >-Check printing an invoice, inscept the page and make sure none of the colors are set to #000066 >-For the OPAC you must rebuild the CSS ((https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client) >-Look at some areas where you might print in the OPAC (try a list), inscept the page and make sure there is no colors set to #000066 >-You can also use Jonathan's method of 'git grep -l -c 000066' to make sure no occurrences are left. >-I left macles.tt as is because I am not sure about that template >--- > koha-tmpl/intranet-tmpl/prog/css/print.css | 4 ++-- > .../intranet-tmpl/prog/css/printreceiptinvoice.css | 22 +++++++++++----------- > koha-tmpl/opac-tmpl/bootstrap/css/src/print.scss | 18 +++++++++--------- > 3 files changed, 22 insertions(+), 22 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/css/print.css b/koha-tmpl/intranet-tmpl/prog/css/print.css >index 4ac12e18a0..9a7f0a1f34 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/print.css >+++ b/koha-tmpl/intranet-tmpl/prog/css/print.css >@@ -1,10 +1,10 @@ > a:link { >- color : #000066; >+ color : #000000; > text-decoration: none; > } > > a:visited { >- color : #000066; >+ color : #000000; > text-decoration: none; > } > >diff --git a/koha-tmpl/intranet-tmpl/prog/css/printreceiptinvoice.css b/koha-tmpl/intranet-tmpl/prog/css/printreceiptinvoice.css >index 28754f2a7b..a2ada2e1ad 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/printreceiptinvoice.css >+++ b/koha-tmpl/intranet-tmpl/prog/css/printreceiptinvoice.css >@@ -1,10 +1,10 @@ > a:link { >- color : #000066; >+ color : #000000; > text-decoration: none; > } > > a:visited { >- color : #000066; >+ color : #000000; > text-decoration: none; > } > >@@ -22,7 +22,7 @@ body { > } > > 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; >@@ -244,12 +244,12 @@ td.debit { > } > > #receipt a:link { >- color : #000066; >+ color : #000000; > text-decoration: none; > } > > #receipt a:visited { >- color : #000066; >+ color : #000000; > text-decoration: none; > } > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/print.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/print.scss >index ed82a27aa2..e6f21ece42 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/css/src/print.scss >+++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/print.scss >@@ -1,10 +1,10 @@ > a:link { >- color: #000066; >+ color: #000000; > text-decoration: none; > } > > a:visited { >- color: #000066; >+ color: #000000; > text-decoration: none; > } > >@@ -23,7 +23,7 @@ body { > } > > caption { >- color: #000066; >+ color: #000000; > font-size: 18px; > font-weight: bold; > margin-top: 5px; >@@ -40,7 +40,7 @@ form { > } > > h1 { >- color: #000066; >+ color: #000000; > font-size: 22px; > font-weight: bold; > margin-bottom: 3px; >@@ -48,7 +48,7 @@ h1 { > } > > 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; >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 26962
:
113281
|
113336
|
114996
| 115104