Content gets cut off on the right side if it overflows the page.
This is the css that handles printing. Whatever solution there is it has to do with this.
|
@media print { |
|
|
|
* { |
|
overflow: visible !important; |
|
} |
|
body * { |
|
visibility: hidden; |
|
} |
|
|
|
.cm-content, |
|
.cm-content * { |
|
visibility: visible; |
|
white-space: pre-wrap !important; |
|
word-wrap: break-word !important; |
|
page-break-inside: avoid !important; |
|
} |
|
|
|
.cm-content { |
|
display: block; |
|
position: relative; |
|
width: auto; |
|
height: auto; |
|
top: 0; |
|
left: 0; |
|
color: black; |
|
} |
|
} |
Content gets cut off on the right side if it overflows the page.
This is the css that handles printing. Whatever solution there is it has to do with this.
CorePad/src/style.css
Lines 64 to 90 in afb559d