From 5b4c46f2e8e1b654094e357c7e161cd257033ffd Mon Sep 17 00:00:00 2001 From: Felix Heidecke Date: Mon, 21 Aug 2017 11:17:04 +0200 Subject: [PATCH] Use different CSS comment style for IE11 support --- core/css/header.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/css/header.css b/core/css/header.css index 5c4893fae474..fba800a1b6e1 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -107,8 +107,9 @@ } #header .header-appname-container { - display: -webkit-flex; // @TODO: Remove if Chrome 18 support is dropped - display: -moz-box; // @TODO: Remove if FF 14 support is dropped + display: -webkit-flex; /* @TODO: Remove if Chrome 18 support is dropped */ + display: -ms-flexbox; /* @TODO: Remove if IE 11 support is dropped */ + display: -moz-box; /* @TODO: Remove if FF 14 support is dropped */ display: flex; position: absolute; left: 15px;