feat(print): carry over original print stylesheet

This commit is contained in:
Elian Doran 2025-01-31 20:45:18 +02:00
parent 4a5bf28f06
commit 561c50706e
No known key found for this signature in database
2 changed files with 33 additions and 40 deletions

View File

@ -1,40 +0,0 @@
@media print {
html body {
/* https://github.com/zadam/trilium/issues/3202 */
color: black;
}
.no-print,
.no-print * {
display: none !important;
}
.relation-map-wrapper {
height: 100vh !important;
}
.table thead th,
.table td,
.table th {
/* Fix center vertical alignment of table cells */
vertical-align: middle;
}
pre {
box-shadow: unset !important;
border: 0.75pt solid gray !important;
border-radius: 2pt !important;
}
span[style] {
print-color-adjust: exact;
-webkit-print-color-adjust: exact;
}
/* Fix visibility of checkbox checkmarks
see https://github.com/TriliumNext/Notes/issues/901 */
.ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input[checked]::after {
/* fallback to default ck-editor green */
border-color: hsl(126, 64%, 41%);
}
}

View File

@ -1607,6 +1607,8 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
}
@media print {
.no-print,
.no-print *,
.tab-row-container,
#launcher-pane,
#left-pane,
@ -1639,6 +1641,8 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
height: unset !important;
overflow: visible;
position: unset;
/* https://github.com/zadam/trilium/issues/3202 */
color: black;
}
#root-widget,
@ -1672,4 +1676,33 @@ body.electron.platform-darwin:not(.native-titlebar) .tab-row-container {
display: none !important;
}
.relation-map-wrapper {
height: 100vh !important;
}
.table thead th,
.table td,
.table th {
/* Fix center vertical alignment of table cells */
vertical-align: middle;
}
pre {
box-shadow: unset !important;
border: 0.75pt solid gray !important;
border-radius: 2pt !important;
}
span[style] {
print-color-adjust: exact;
-webkit-print-color-adjust: exact;
}
/* Fix visibility of checkbox checkmarks
see https://github.com/TriliumNext/Notes/issues/901 */
.ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input[checked]::after {
/* fallback to default ck-editor green */
border-color: hsl(126, 64%, 41%);
}
}