Update print.css

- Text within the pre element is now printed completely by line break
This commit is contained in:
Frank Hochmuth 2023-11-18 14:29:04 +01:00 committed by GitHub
parent 4122cfa13a
commit cfc7fa2d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,9 +63,10 @@ pre {
background-color: #eee;
font-size: 70%;
border: 1px dotted #333;
white-space: pre-line;
overflow: auto;
text-overflow: ellipsis
text-overflow: ellipsis;
white-space: pre-wrap;
word-break: break-all
}
.link-comments { display: none }