You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
717 B

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