From 20a59ac31829036bab717e6784cee4c54252adbf Mon Sep 17 00:00:00 2001 From: Matt Brundage <1263178+mattbrundage@users.noreply.github.com> Date: Fri, 17 Apr 2020 15:16:28 -0400 Subject: [PATCH] Update _print.css Explicitly set print background to white -- "transparent" will not override the user's custom settings for background color. Confirmed in Firefox; see Options > Language & Appearance > Fonts and Colors > Colors > Background --- src/_print.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_print.css b/src/_print.css index 5673d5b..31dc9d0 100644 --- a/src/_print.css +++ b/src/_print.css @@ -8,7 +8,7 @@ *, *:before, *:after { - background: transparent !important; + background: #fff !important; color: #000 !important; /* Black prints faster */ box-shadow: none !important;