From a25b30ef95df5b3ce16158482afeb70cb606c331 Mon Sep 17 00:00:00 2001 From: Mason James Date: Tue, 3 Mar 2020 16:33:29 +1300 Subject: [PATCH] Bug 24874: Printing is broken on opac-results.pl page (19.11.x) Content-Type: text/plain; charset="utf-8" to test in 19.11.x... - search for something in opac - print page using file -> print - observe printing is broken (pic1) - apply patch - search for something in opac - print page using file -> print - observe printing is fixed (pic2) it seems this issue was introduced by bug 5287 https://bugs.koha-community.org/show_bug.cgi?id=24874 --- koha-tmpl/opac-tmpl/bootstrap/css/print.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/print.css b/koha-tmpl/opac-tmpl/bootstrap/css/print.css index 6eec50e..898cfd5 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/print.css +++ b/koha-tmpl/opac-tmpl/bootstrap/css/print.css @@ -208,8 +208,8 @@ body#basket p { #userresults { display: block; position: absolute; - right: 0; word-wrap: break-word; + left: 1 !important; } #userupdate input, @@ -221,6 +221,7 @@ body#basket p { #action, #addshelf, #bibliodescriptions .ui-tabs-nav, +#maincontent > .row-fluid > .span2, #export, #facetcontainer, #members, @@ -264,3 +265,6 @@ td.resultscontrol, .table-bordered { border: 0; } + +@page { margin: 1cm } + -- 2.1.4