I'm creating some mixins in my less.js stylesheets where I don't want the original mixin to appear in the final output.
For example, I have a couple of rules like this:
.grid1 { width: 960px; }
I'm then applying it to the element or elements I want to take those values like so:
.foo {
.grid1;
}
But then my final css file has both in.
What facility does Less provide for creating the original mixin without rendering it as a css rule as well?