From 8493d8848bf01ff3a80fed5995bce0090371c8a8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20LeBlanc?= Date: Fri, 17 Jun 2022 21:19:09 -0400 Subject: [PATCH] Remplace color-adjust with the new print-color-adjust syntax --- scss/typography/_print.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/typography/_print.scss b/scss/typography/_print.scss index 716b2c9f9..cd8f8befc 100644 --- a/scss/typography/_print.scss +++ b/scss/typography/_print.scss @@ -24,11 +24,11 @@ $print-hrefs: true !default; @if $print-transparent-backgrounds { background: transparent !important; color: black !important; // Black prints faster: h5bp.com/s - color-adjust: economy; + print-color-adjust: economy; } // Otherwise, prevent any economy by the browser. @else { - color-adjust: exact; + print-color-adjust: exact; } box-shadow: none !important; -- 2.47.2