1
0
Fork 0
dokuwiki-plugins-extra/plugins/55/wrap/print_or_pdf.less
Daniel Baumann f8d74cc725
Adding upstream version 20241201.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-03-16 08:08:00 +01:00

31 lines
717 B
Text

/********************************************************************
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 */