Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions strictdoc/export/html/_static/node_content.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,19 @@ sdoc-node-content {
*/
}

/* Workaround for html2pdf4doc print bug:
(https://github.com/strictdoc-project/strictdoc/issues/2450#issuecomment-3299134769)
Disable background for elements that trigger header/footer overlap.
This hides the background of problematic split (not sliced) sections
to prevent them from covering header/footer areas during printing.
Real fix will be applied in html2pdf4doc in a future release. */
@media print {
sdoc-node-content {
background: none;
background-color: transparent;
}
}

sdoc-node-title {
display: block;

Expand Down
Loading