From 63eb22c7ac76108154257292be45e4f7542c99c0 Mon Sep 17 00:00:00 2001 From: zadam Date: Thu, 20 Oct 2022 22:31:08 +0200 Subject: [PATCH] fix print color to black, closes #3202 --- src/public/stylesheets/print.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/public/stylesheets/print.css b/src/public/stylesheets/print.css index f50a765a9..afc77970d 100644 --- a/src/public/stylesheets/print.css +++ b/src/public/stylesheets/print.css @@ -1,5 +1,10 @@ @media print { + html body { + /* https://github.com/zadam/trilium/issues/3202 */ + color: black; + } + .no-print, .no-print * { display: none !important; @@ -8,4 +13,4 @@ .relation-map-wrapper { height: 100vh !important; } -} \ No newline at end of file +}