-
Notifications
You must be signed in to change notification settings - Fork 25.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Navigation bar animation "flicker" with Safari 10 #568
Comments
As far as I can tell what's causing this in Safari is the animated lines that stretch below each link on Will have to investigate why that property appears to play with anti-aliasing on the type which causes the flicker. Looks like some sort of rendering bug with the browser, so hopefully there's a way around it. |
Possible fixes to try:
|
Update. The fix is replacing .greedy-nav .visibile-links a:before {
...
- -webkit-transform: scaleX(0);
- -ms-transform: scaleX(0);
- transform: scaleX(0);
+ -webkit-transform: scaleX(0) translate3d(0, 0 , 0);
+ -ms-transform: scaleX(0) translate3d(0, 0 , 0);
+ transform: scaleX(0) translate3d(0, 0 , 0);
} |
Yes, I can confirm this fixes the problem :-) |
bundle update
.bundle exec jekyll build
.Environment informations
jekyll
gem version: 3.2.1Expected behavior
The navigation bar animation in minimal mistakes appears to be "flickering" when hovering over menu items using Safari 10. In addition to changing the font color when moving from menu item to menu item, the font weight appears to be toggled to a lighter weight and back to normal. I see the same behavior on the mmistakes Github pages, so I assume it's not a configuration issue with my mmistakes installation. The animation behaves as expected when opening the page with Chrome or Firefox.
Steps to reproduce the behavior
I have attached a .zip file with two screencasts (captured straight from https://mmistakes.github.io/minimal-mistakes/), one using Safari 10 and one using Chrome to illustrate the issue.
screencast.zip
The text was updated successfully, but these errors were encountered: