From 789eb596b58f9e9ac54598a04cce2370e007af80 Mon Sep 17 00:00:00 2001 From: Felipe Orellana <1656249+DeveloperMetal@users.noreply.github.com> Date: Tue, 15 Feb 2022 14:03:04 -0500 Subject: [PATCH] fix: sites with white text bleed into print-format font color (#759) Changes: - Enforces black text on .print-format classes to ensure text is readable on sites with white text (JHA) --- bloomstack_core/public/css/authorize_document.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bloomstack_core/public/css/authorize_document.css b/bloomstack_core/public/css/authorize_document.css index 913b42196..f203fe645 100644 --- a/bloomstack_core/public/css/authorize_document.css +++ b/bloomstack_core/public/css/authorize_document.css @@ -99,6 +99,18 @@ -webkit-print-color-adjust: exact; } +.print-format, .print-format h1, .print-format h2, .print-format h3, .print-format p, .print-format td, .print-format th { + color: black; +} + +.print-format .bill-ship-section { + display: flex; +} + +.print-format .bill-ship-section > * { + flex: 1 1 auto; +} + .page-break { page-break-after: always; } @@ -317,4 +329,4 @@ ul.actions li a.approveBtn { #signeeName { text-align: center; margin-bottom: 15px; -} \ No newline at end of file +}