LESS allows parametric mixins, such as:
.transition(@property, @duration){ transition: @property @duration; -moz-transition: @property @du
This should work, I think:
.transition(...) { transition: @arguments; -moz-transition: @arguments; /* Firefox 4 */ -webkit-transition: @arguments; /* Safari and Chrome */ -o-transition: @arguments; /* Opera */ }
... - is a valid less syntax, not something to be replaced.
...