From b3ab2e8d3a25f860c407d61bbf4a0d2d546763a2 Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Wed, 11 Mar 2020 10:21:39 +0000 Subject: [PATCH] Fix background tint on IE --- css/global.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/global.css b/css/global.css index a9fd0a4..ea92681 100644 --- a/css/global.css +++ b/css/global.css @@ -116,6 +116,11 @@ html, body, .mdc-drawer-app-content { .parallax-section > div:last-child > div { background-color: rgba(50,50,50,0.75); 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) { + opacity: 0.8; + } } /* splitter for between sections */