Skip to content
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

after upgrading compile issue with transition: transform short hand #1697

Closed
lukerobertson1 opened this issue Nov 4, 2015 · 1 comment
Closed

Comments

@lukerobertson1
Copy link

Hello,

so i upgraded grunt sass on my project and noticed after it had broken a lot of sections of the site, after a panic i found the follow change in post complied code caused the issue:

precompiled (with http://bourbon.io/):

@include transition(transform 1s ease-in-out, height .5s ease-in-out);

before upgrade post-compiled:

-webkit-transition: -webkit-transform 1s ease-in-out, height .5s ease-in-out;
-moz-transition: -moz-transform 1s ease-in-out, height .5s ease-in-out;
transition: transform 1s ease-in-out, height .5s ease-in-out;

after upgrade post-compiled:

webkit-transition: -webkit-transform, height;
-moz-transition: -moz-transform, height;
transition: transform, height;

the transition mixin works fine for everything else other than the transforms

is this a legit bug or something my side?

@xzyfer
Copy link
Contributor

xzyfer commented Nov 4, 2015

This is a duplicate of #1645. Please subscribe to that issue for updates.

@xzyfer xzyfer closed this as completed Nov 4, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants