aboutsummaryrefslogtreecommitdiff
path: root/html-test
diff options
context:
space:
mode:
authorSebastian Meric de Bellefon <Sebastian.MericdeBellefon@tritondigital.com>2016-05-11 00:16:34 -0400
committerSebastian Meric de Bellefon <Sebastian.MericdeBellefon@tritondigital.com>2016-05-14 11:29:47 -0400
commit915a34be3c3a3872700763eb97ac811ef1109ef4 (patch)
treed8cbbc9f920a74dc6e83973cf29f98ac6e58646f /html-test
parent26e6b39de3213969d7de7f8bb3d4a849136866d1 (diff)
Fix #303. Hide footer when printing
The "Produced by Haddock" footer was overlapping the page's body when printing. This patch hides the footer with a css media rule.
Diffstat (limited to 'html-test')
-rw-r--r--html-test/ref/ocean.css3
1 files changed, 3 insertions, 0 deletions
diff --git a/html-test/ref/ocean.css b/html-test/ref/ocean.css
index fcf23810..3ebb14de 100644
--- a/html-test/ref/ocean.css
+++ b/html-test/ref/ocean.css
@@ -183,6 +183,9 @@ pre {
.keyword { font-weight: normal; }
.def { font-weight: bold; }
+@media print {
+ #footer { display: none; }
+}
/* @end */