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

.translate3d mixin needs -ms-transform property. #42

Closed
psmak4 opened this issue May 30, 2013 · 1 comment
Closed

.translate3d mixin needs -ms-transform property. #42

psmak4 opened this issue May 30, 2013 · 1 comment

Comments

@psmak4
Copy link

psmak4 commented May 30, 2013

Currently the .translate3d mixin looks like this:
.translate3d(@x, @y, @z) {
-webkit-transform: translate3d(@x, @y, @z);
-moz-transform: translate3d(@x, @y, @z);
-o-transform: translate3d(@x, @y, @z);
transform: translate3d(@x, @y, @z);
}

It needs the missing -ms prefix to look like this:
.translate3d(@x, @y, @z) {
-webkit-transform: translate3d(@x, @y, @z);
-moz-transform: translate3d(@x, @y, @z);
-o-transform: translate3d(@x, @y, @z);
-ms-transform: translate3d(@x, @y, @z);
transform: translate3d(@x, @y, @z);
}

@mdo
Copy link
Owner

mdo commented Jul 2, 2015

Punting with v3—no more vendor mixins. <3

@mdo mdo closed this as completed Jul 2, 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