From 8b8cd8b6fc26514dc6e4f792d7d97a01fa9e33fb Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 9 May 2023 02:44:50 +0000 Subject: [PATCH] Bug 33701: Display all tab content when printing staff cat detail page This change adds some print CSS to display all tab content when printing the catalogue detail page on the staff interface. Test plan: 1. Apply patch 2. Go to http://localhost:8081/cgi-bin/koha/catalogue/detail.pl?biblionumber=29 3. Click "Print" on the toolbar 4. Note that the "Descriptions" and "Acquisition details" also appear on the printed page --- koha-tmpl/intranet-tmpl/prog/css/print.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/print.css b/koha-tmpl/intranet-tmpl/prog/css/print.css index b1cbc010b6..ec2291c0f3 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/print.css +++ b/koha-tmpl/intranet-tmpl/prog/css/print.css @@ -360,3 +360,12 @@ th { #catalog_detail .col-sm-push-2 { left: 0; } + +/* print-visible */ +#bibliodetails .tab-pane { + display: block !important; + height: auto !important; + visibility: visible !important; + overflow: visible !important; +} + -- 2.30.2