1/********************************************************************
2Styles shared between print.css and pdf.css
3********************************************************************/
4
5.dokuwiki {
6
7/* miscellaneous
8********************************************************************/
9
10/*____________ pagebreak ____________*/
11
12.wrap_pagebreak {
13    break-after: page; /* CSS 3 */
14    page-break-after: always; /* CSS 2.1 */
15}
16
17/*____________ avoid page break ____________*/
18/* not yet supported by most browsers */
19
20.wrap_nopagebreak {
21    break-inside: avoid; /* CSS 3 */
22    page-break-inside: avoid; /* CSS 2.1 */
23}
24
25/*____________ no print ____________*/
26
27.wrap_noprint {
28    display: none;
29}
30
31} /* /.dokuwiki */
32