-
-
Notifications
You must be signed in to change notification settings - Fork 79k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Repaint Fixes When Scrolling #13649
Repaint Fixes When Scrolling #13649
Conversation
I can check that out—I've got a couple VMs locally to peep this in before merging. |
And no, thank you for not giving up <3. |
@mdo Dawww, thanks dude :). You're the best (around. Nothing's ever gonna keep you down..) Hopefully everything checks out! |
Thanks! |
So, for folks keeping score at home, these changes ended up being reverted due to Safari bugs, bad-looking fonts on Windows, and navbar customization problems. |
@cvrebert No problem! Sorry for all the trouble this guy caused :(. |
hi @ItsJonQ can you show the before and after timeline of this? Would be awesome! Too bad it conflicts with other stuffs. |
Heya @fbm-static , Sure! I'd be more than happy to do that.. but I'm not sure where to find that info (sorry!) |
Repaint Fixes When Scrolling
Heya guys!
Here's my 2nd attempt at this. Thanks again for being so patient with my first try.
Ideally,
translateZ(0)
would work the best in the spots that I've added the vendor-prefix mixin of.translate3d()
as it has IE9 support. Based on feedback from my first PR, I avoided adding a mixin specifically fortranslateZ
.The translate3d fix for
.modal
is tricky. It effectively fixes repaints on scroll.. but it might be problematic for IE 8-9.Thanks!