Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use different CSS comment style for IE11 support
  • Loading branch information
lordelix committed Aug 21, 2017
commit 5b4c46f2e8e1b654094e357c7e161cd257033ffd
5 changes: 3 additions & 2 deletions core/css/header.css
Original file line number Diff line number Diff line change
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