From 041b012566513d668053d9be835194d06b1181be Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Wed, 11 Mar 2020 10:33:10 +0000 Subject: [PATCH] Fix background tint on IE --- css/global.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/global.css b/css/global.css index ea92681..e5f5c7e 100644 --- a/css/global.css +++ b/css/global.css @@ -118,7 +118,9 @@ html, body, .mdc-drawer-app-content { background-blend-mode: multiply; /* IE support */ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; - @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { +} +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .parallax-section > div:last-child > div { opacity: 0.8; } }