From dcbc9faf81834a8ff0f5dfac7c0d6d8a8c8facb6 Mon Sep 17 00:00:00 2001 From: Chad Boschert Date: Mon, 19 Nov 2018 15:11:16 -0600 Subject: [PATCH] IE11 CSS hack for decent display w/o flex support --- assets/stylesheets/wizard/wizard_custom.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/assets/stylesheets/wizard/wizard_custom.scss b/assets/stylesheets/wizard/wizard_custom.scss index 93989e00..dc50f6b5 100644 --- a/assets/stylesheets/wizard/wizard_custom.scss +++ b/assets/stylesheets/wizard/wizard_custom.scss @@ -514,3 +514,17 @@ img.avatar { color: rgb(231, 195, 0); } } + +/* IE11 hacks */ +@media all and (-ms-high-contrast:none) +{ + .custom-wizard { + div.wizard-step-contents { + display: block; + } + + div.wizard-progress { + visibility: hidden; + } + } +} \ No newline at end of file