Skip to content

Commit

Permalink
Merge pull request #28752 from owncloud/stable10-fh_fix_css-comment_s…
Browse files Browse the repository at this point in the history
…yntax

[stable10] Use different CSS comment style for IE11 support
  • Loading branch information
Vincent Petry authored Aug 21, 2017
2 parents f807eea + 5b4c46f commit d4b137d
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit d4b137d

Please sign in to comment.