From 26cbef1bf94a4472e8b95af237189da428c66337 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 15 Apr 2020 21:42:36 +0000 Subject: [PATCH] Bug 25072: Fix details.tt print CSS TO TEST: -Search for something in the catalog and go to the details page. -Try to print either for the Print button in Koha or File->Print... -Notice the large amount of whitespace on the left -Apply patch -Reload detaials page and attempt to print again. -No whitespace on left side Signed-off-by: Bernardo Gonzalez Kriegel Improves output using Firefox browser, no errors --- koha-tmpl/intranet-tmpl/prog/css/print.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/print.css b/koha-tmpl/intranet-tmpl/prog/css/print.css index be7cc9e528..e3c89ae412 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/print.css +++ b/koha-tmpl/intranet-tmpl/prog/css/print.css @@ -305,6 +305,7 @@ fieldset.action, .list-actions, .print, .ui-tabs-nav, +.browse-controls, .cart-controls { display: none; } @@ -359,3 +360,7 @@ th { .container { width:100%; } + +#catalog_detail .col-sm-push-2 { + left: 0; +} -- 2.17.1