From c99da8ff34e668cf02b94f0a340734418ae4f137 Mon Sep 17 00:00:00 2001 From: Bart Kamphorst Date: Mon, 30 Mar 2020 10:16:18 +0200 Subject: [PATCH] Hide the correct html elements for printing. Fixes #1516. --- lib/gollum/public/gollum/stylesheets/print.scss | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/lib/gollum/public/gollum/stylesheets/print.scss b/lib/gollum/public/gollum/stylesheets/print.scss index eab862e5..427338b0 100644 --- a/lib/gollum/public/gollum/stylesheets/print.scss +++ b/lib/gollum/public/gollum/stylesheets/print.scss @@ -1,15 +1,16 @@ // Removes the action buttons at the top, -// the delete link at the bottom, +// the breadcrumb at the top, // and the footer for better printing. -ul.actions { - display: none; -} - -#delete-link { - display: none; -} div#footer { display: none; } + +nav.actions{ + display:none +} + +.breadcrumb{ + display:none +}