diff options
Diffstat (limited to 'plugins/55/wrap/print_or_pdf.less')
-rw-r--r-- | plugins/55/wrap/print_or_pdf.less | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/55/wrap/print_or_pdf.less b/plugins/55/wrap/print_or_pdf.less new file mode 100644 index 0000000..1d20a9e --- /dev/null +++ b/plugins/55/wrap/print_or_pdf.less @@ -0,0 +1,31 @@ +/******************************************************************** +Styles shared between print.css and pdf.css +********************************************************************/ + +.dokuwiki { + +/* miscellaneous +********************************************************************/ + +/*____________ pagebreak ____________*/ + +.wrap_pagebreak { + break-after: page; /* CSS 3 */ + page-break-after: always; /* CSS 2.1 */ +} + +/*____________ avoid page break ____________*/ +/* not yet supported by most browsers */ + +.wrap_nopagebreak { + break-inside: avoid; /* CSS 3 */ + page-break-inside: avoid; /* CSS 2.1 */ +} + +/*____________ no print ____________*/ + +.wrap_noprint { + display: none; +} + +} /* /.dokuwiki */ |