SO, here my first mixin
.3transitions (@value1,@value2,@value3,@duration){
@value: ~"@{value1},@{value2},@{value3}";
.transition-property(@value);
.transition-delay(0);
.transition-duration(@duration);
.transition-timing-function(ease);
}
and here is the second (among many others)
.transition-property(@transition-property) {
-webkit-transition-property: @transition-property;
transition-property: @transition-property;
}
On webkit browsers I should get the compiled CSS with proper browser prefix, but I get
-webkit-transition-property: margin-top,opacity,transform;
instead of
-webkit-transition-property: margin-top,opacity,-webkit-transform;
How can I go around this please? Is there a way to determin in LESS that I am using a CSS3 style?