Skip to content

Commit

Permalink
bug #332 [Menu] Fix menu for Safari browsers (ogizanagi)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

[Menu] Fix menu for Safari browsers

Safari still to need the `-webkit-` prefix when using flexboxes.

Fixes #331

Before:
![capture d ecran 2015-05-21 a 17 00 45](https://cloud.githubusercontent.com/assets/2211145/7751534/dacf0c7e-ffda-11e4-94ee-dc13935cdf63.PNG)
After:
![capture d ecran 2015-05-21 a 16 55 10](https://cloud.githubusercontent.com/assets/2211145/7751495/a4433b3a-ffda-11e4-88eb-ebf5b1a5691c.PNG)

Commits
-------

e34ae14 [Menu] Fix menu for Safari browsers
  • Loading branch information
javiereguiluz committed May 21, 2015
2 parents 4bd6a3c + e34ae14 commit 716e90e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Resources/views/css/admin.css.twig
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,9 @@ body.error .error-solution pre {
#header-contents {
min-height: 100%;
display: flex;
display: -webkit-flex;
flex-direction: column;
-webkit-flex-direction: column;
}
#header-logo {
float: none;
Expand Down Expand Up @@ -1104,6 +1106,7 @@ body.error .error-solution pre {
}
#header #header-nav {
flex: 1;
-webkit-flex: 1;
height: 0 !important;
margin: 0;
overflow: hidden;
Expand Down

0 comments on commit 716e90e

Please sign in to comment.