peteboere / css-crush

CSS preprocessor.
http://the-echoplex.net/csscrush
MIT License
537 stars 51 forks source link

Vendor prefixes inside property value #63

Closed viki53 closed 10 years ago

viki53 commented 10 years ago

When adding prefixes, you should consider parsing the value assigned to the property.

For instance, parsing transition: opacity .2s, transform .2s; results in -webkit-transition: opacity .2s, transform .2s; instead of -webkit-transition: opacity .2s, -webkit-transform .2s; no matter what the order of the values look like.

[EDIT] Sorry, didn't see it was a duplicate.

peteboere commented 10 years ago

Duplicate of issue #25