Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable10] Use different CSS comment style for IE11 support #28752

Merged
merged 1 commit into from Aug 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions core/css/header.css
Expand Up @@ -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;
Expand Down