From b525003a8f3ed6bb405f9e654842ff3ec30d05a8 Mon Sep 17 00:00:00 2001 From: Alexander Wagner Date: Tue, 17 Dec 2024 11:12:15 +0100 Subject: [PATCH] Bug 38711: Wrong font-weight in tables during printing from STAFF interface Fix last columns of tables to be printed in `bold`. This affects various functions of Koha e.g. Notices and Slips, Pages etc. 1. Go to `Home / Tools / Additional content / Pages` 2. Select `Add new entry using text editor` 3. Add the following html ```html
col 11 col 12
col 21 col 22
``` 4. Save 5. Use the `Staff`-URL from `Additional content: Pages` to open the page in a new tab 6. Select `File / Print` (or fire up the dev console via F12 and apply the Print-css) 7. The entries `col 12` and `col 22` appear in bold face. 8. Apply the patch 9. Reload the page 10. The entries `col 12` and `col 22` appear in normal font. Sponsored-by: Deutsches Elektronen-Synchrotron DESY, Library Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/css/print.css | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/print.css b/koha-tmpl/intranet-tmpl/prog/css/print.css index e2c9d152ac..78ba3d5726 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/print.css +++ b/koha-tmpl/intranet-tmpl/prog/css/print.css @@ -157,7 +157,6 @@ th:first-child { border-left: 0; } -td:last-child, th:last-child { background-color: #E9E9E9; border-bottom: 1px solid #CCCCCC; -- 2.39.5