summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/wrap/print_or_pdf.less
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/lib/plugins/wrap/print_or_pdf.less')
-rw-r--r--platform/www/lib/plugins/wrap/print_or_pdf.less31
1 files changed, 31 insertions, 0 deletions
diff --git a/platform/www/lib/plugins/wrap/print_or_pdf.less b/platform/www/lib/plugins/wrap/print_or_pdf.less
new file mode 100644
index 0000000..1d20a9e
--- /dev/null
+++ b/platform/www/lib/plugins/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 */