Fixed Firefox only printing the first page

This commit is contained in:
squidfunk
2020-04-02 09:57:55 +02:00
parent fdea0a8a04
commit cfebec40e8
8 changed files with 21 additions and 10 deletions

View File

@@ -58,8 +58,7 @@ kbd {
.md-typeset {
font-size: ms(0);
line-height: 1.6;
// Colors should be kept when printing
-webkit-print-color-adjust: exact; // stylelint-disable-line
color-adjust: exact;
// Default spacing
p,

View File

@@ -80,6 +80,12 @@ body {
position: fixed;
}
}
// Hack: we must not use flex, or Firefox will only print the first page
// see https://mzl.la/39DgR3m
@media print {
display: block;
}
}
// Horizontal separators
@@ -102,6 +108,12 @@ hr {
display: flex;
flex-direction: column;
flex-grow: 1;
// Hack: we must not use flex, or Firefox will only print the first page
// see https://mzl.la/39DgR3m
@media print {
display: block;
}
}
// The main content should stretch to maximum height in the table