madebysource / lesshat

Smart LESS CSS mixins library.
lesshat.com
MIT License
2.19k stars 258 forks source link

.transition(transform 0.7s .3s ease) > repeated properites #144

Open Leagnus opened 9 years ago

Leagnus commented 9 years ago

.transition(transform 0.3s .5s ease); makes ... transition: -webkit-transform 0.7s 0.3s ease,-moz-transform 0.7s 0.3s ease,-o-transform 0.7s 0.3s ease,transform 0.7s 0.3s ease;

planttheidea commented 9 years ago

This is correct, because the transform property itself is prefixed. You need to replicate all prefixes to apply to all respective transforms.

Leagnus commented 9 years ago

no, i mean 2 times repeat -webkit-transition: -webkit-transform 0.7s 0.3s ease; -moz-transition: -moz-transform 0.7s 0.3s ease; -o-transition: -o-transform 0.7s 0.3s ease; transition: -webkit-transform 0.7s 0.3s ease,-moz-transform 0.7s 0.3s ease,-o-transform 0.7s 0.3s ease,transform 0.7s 0.3s ease;