From e32f7a0e93936100029c9333e71135f88c669125 Mon Sep 17 00:00:00 2001 From: "Jonathan (JB) Belcher" Date: Wed, 2 Sep 2020 10:37:48 -0400 Subject: [PATCH 1/2] Fixes the css so all pages print --- scss/print.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/print.scss b/scss/print.scss index 5aa7b9451..d2b6e3811 100644 --- a/scss/print.scss +++ b/scss/print.scss @@ -26,7 +26,8 @@ .note-detail-textarea, .note-content-editor-shell, .note-detail-wrapper { - overflow: visible; + overflow: auto; + position: relative; } [class^='note-detail-'] { From e4d6d11dfcec0a0b59765af5e8e3479d9f9c57ff Mon Sep 17 00:00:00 2001 From: "Jonathan (JB) Belcher" Date: Wed, 2 Sep 2020 11:01:01 -0400 Subject: [PATCH 2/2] Add display block for Firefox --- scss/print.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/scss/print.scss b/scss/print.scss index d2b6e3811..9e5c45835 100644 --- a/scss/print.scss +++ b/scss/print.scss @@ -26,6 +26,7 @@ .note-detail-textarea, .note-content-editor-shell, .note-detail-wrapper { + display: block; overflow: auto; position: relative; }