From 7ddbab76c1312f0b572489b2231a54004d2bac42 Mon Sep 17 00:00:00 2001 From: Lucas Bearden Date: Wed, 17 Oct 2018 12:50:07 -0400 Subject: [PATCH] updated print.scss to remove footer when printing --- lib/gollum/public/gollum/stylesheets/print.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/gollum/public/gollum/stylesheets/print.scss b/lib/gollum/public/gollum/stylesheets/print.scss index c20936f3..eab862e5 100644 --- a/lib/gollum/public/gollum/stylesheets/print.scss +++ b/lib/gollum/public/gollum/stylesheets/print.scss @@ -1,5 +1,6 @@ -// Removes the action buttons at the top and the delete link at the bottom for -// better printing. +// Removes the action buttons at the top, +// the delete link at the bottom, +// and the footer for better printing. ul.actions { display: none; @@ -8,3 +9,7 @@ ul.actions { #delete-link { display: none; } + +div#footer { + display: none; +}