diff --git a/app/assets/stylesheets/_application.scss b/app/assets/stylesheets/_application.scss index d4121c4..a982aac 100644 --- a/app/assets/stylesheets/_application.scss +++ b/app/assets/stylesheets/_application.scss @@ -4859,8 +4859,10 @@ html[data-ontop] { } .github { - @include _(flex, none); - @include _(flex-basis, auto); + @if capable_of(flexbox, true) { + @include _(flex, none); + @include _(flex-basis, auto); + } margin: 0 1em; } .facebook, .external { @@ -4883,6 +4885,19 @@ html[data-ontop] { margin: 0 0 0 2em; text-align: left; } + + @if not capable_of(flexbox, true) { + margin-top: 5em; + + .external { + float: left; + } + + .site-info { + float: right; + margin-top: -3.5em; + } + } } .check-box-field, diff --git a/app/assets/stylesheets/bumbleberry-settings.json b/app/assets/stylesheets/bumbleberry-settings.json index 8c7c4b7..184ef04 100644 --- a/app/assets/stylesheets/bumbleberry-settings.json +++ b/app/assets/stylesheets/bumbleberry-settings.json @@ -6,7 +6,7 @@ "chrome": ["55"] }, "development": { - "safari": ["5"], + "safari": ["5", "5.1"], "and_chr": ["57"], "chrome": ["57"], "edge": ["13"],