Add CSS workaround to display repeated table head

Fixes https://github.com/openfoodfoundation/openfoodnetwork/issues/1738
This commit is contained in:
Maikel Linke
2017-10-06 15:48:44 +11:00
parent 6ad7c7b835
commit 4dd71c1240

View File

@@ -408,3 +408,12 @@ ul {
display: inline-block;
margin: 0px;
}
/*
* Fix overlapping table header on second page of long invoices.
* Problem description: https://github.com/openfoodfoundation/openfoodnetwork/issues/1738
* Solution: https://github.com/wkhtmltopdf/wkhtmltopdf/issues/1770#issuecomment-73530576
*/
thead { display: table-header-group }
tfoot { display: table-row-group }
tr { page-break-inside: avoid }