0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-09 11:52:54 +01:00

IE11 CSS hack for decent display w/o flex support

Dieser Commit ist enthalten in:
Chad Boschert 2018-11-19 15:11:16 -06:00 committet von Angus McLeod
Ursprung 126cdd910a
Commit 1dae4fc537

Datei anzeigen

@ -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;
}
}
}