less/less-docs

New feature to mixin

mastermehdi opened this issue · 2 comments

Can we add a new feature to mixin for supporting this state?

.test() { color: white; } .test() { color: red; } body { .test() }

Compiled to:
a { color: white; color: red; }

But desired compile is:
a { color: red; }

This is a repository for the Less documentation.

For Less language issue reports and feature requests use https://github.com/less/less.js/issues. Before creating a new ticket there please review https://github.com/less/less.js/blob/master/CONTRIBUTING.md.

Closing as "wrong repo".