Fix repeated table header top border when printing

This commit is contained in:
Claude Brisson
2024-06-13 19:03:05 +02:00
parent 12f220cdf5
commit 0fd9f6e27a

View File

@@ -678,7 +678,11 @@
} }
} }
table { border-top: none; }
table tr td, table tr th { page-break-inside:avoid; } table tr td, table tr th { page-break-inside:avoid; }
table thead th {
border-top: 1px solid rgba(34, 36, 38, .1);
}
thead { display:table-header-group; } thead { display:table-header-group; }
tfoot { display:table-footer-group; } tfoot { display:table-footer-group; }
} }