From fe8242fc0383f9bafe1ead9033926c405ee5dfbe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Demians?= Date: Fri, 11 Apr 2014 17:23:50 +0200 Subject: [PATCH] Bug 12073: don't show link URLs when printing Bootstrap OPAC detail page On OPAC Bootstrap detail page, by clicking Print link on the right the page is printed. But the printed page contains HTML anchors URL attribute. It's useless, and unreadable. It isn't the case with prog theme. This patch hides all href attributes when printing any OPAC page. Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Works as described and improves the printed detail page's readability. Currently there is no less file for the print.css. Signed-off-by: Galen Charlton --- koha-tmpl/opac-tmpl/bootstrap/css/print.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/print.css b/koha-tmpl/opac-tmpl/bootstrap/css/print.css index db8b21b479..a1034f129b 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/print.css +++ b/koha-tmpl/opac-tmpl/bootstrap/css/print.css @@ -13,6 +13,8 @@ a:hover { text-decoration: none; } +a[href]:after { display:none; } + body { background-color : #FFF; color : #333333; -- 2.39.5