stylus / nib

Stylus mixins, utilities, components, and gradient image generation
http://stylus.github.io/nib
MIT License
1.91k stars 249 forks source link

can't figure out how to get vendor prefixes for transform and transitions #215

Closed pr1ntr closed 10 years ago

pr1ntr commented 10 years ago

I know this is probably stupid but I seriously cant figure this out. I want to able to write one transition to handle all vendor prefixes. e.g.,

transition: left .5s , top .5s , transform .5s

should be

-webkit-transition: left .5s , top .5s , -webkit-transform .5s -moz-transition: left .5s , top .5s , -moz-transform .5s -ms-transition: left .5s , top .5s , -ms-transform .5s -o-transition: left .5s , top .5s , -o-transform .5s

pr1ntr commented 10 years ago

i am an idiot. and I am sorry for this.