diff options
author | Hakim El Hattab | 2017-01-24 14:48:36 +0100 |
---|---|---|
committer | Hakim El Hattab | 2017-01-24 15:29:27 +0100 |
commit | 286b69b61f64bf47dd3ea710175aeb4de8288d9f (patch) | |
tree | 2af6f4813c19bcc5ba213b931857ad2946a50678 /css | |
parent | 568c7516f7ff7da7824db033946619d2c7ad761f (diff) |
fix empty pages in pdf exports (closes #1804)
Diffstat (limited to 'css')
-rw-r--r-- | css/print/pdf.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/css/print/pdf.css b/css/print/pdf.css index 4bfcddc..8c82f73 100644 --- a/css/print/pdf.css +++ b/css/print/pdf.css @@ -90,7 +90,7 @@ ul, ol, div, p { } .reveal .slides section { - page-break-after: always !important; + page-break-after: auto !important; visibility: visible !important; display: block !important; @@ -139,6 +139,7 @@ ul, ol, div, p { left: 0; width: 100%; height: 100%; + z-index: auto !important; } /* Display slide speaker notes when 'showNotes' is enabled */ |