From 49b02cd4f8aeb0dd0d0273bba0fce47b7087434f Mon Sep 17 00:00:00 2001 From: maxpozdeev Date: Sat, 1 Feb 2025 23:56:24 +0300 Subject: [PATCH] - Fix empty page while print in firefox (closes GH-103) --- src/content/theme/print.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/content/theme/print.css b/src/content/theme/print.css index 5d7c651..d10a107 100644 --- a/src/content/theme/print.css +++ b/src/content/theme/print.css @@ -1,7 +1,6 @@ @media print { - html { height:0; } - body { height:0; min-height:0; margin:0; } + html,body { height:auto; } h2 { display: none; } h3 { border-bottom:2px solid #777777; } #toolbar { display: none; }