fontenay-sous-bois-2018: add flex-wrap hack for IE11 (#28708)

This commit is contained in:
Frédéric Péters 2018-12-12 08:03:00 +01:00
parent d9b948d1af
commit eebb0d5c5b
1 changed files with 7 additions and 0 deletions

View File

@ -547,3 +547,10 @@ div.dataview span.label {
#footer a {
color: white;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* hack to revert to block display as IE11 flex-wrap doesn't work */
#content div.trackingcodeinputcell form {
display: block;
}
}