less.ruby
less.ruby copied to clipboard
Mixins don't work with pseudo selectors
.col-main {
.main;
}
works, as expected. But
.col-main:after {
.main:after;
}
will result in an exception.
Ran into this while trying to change some names from OOCSS.