.parent {
self extends .some-selector {
height:auto
}
.children {
self extends .some-selector-more {
height:auto
}
}
}
Compiled to this:
.parent .children,
.parent-more,
.some-selector-more {
some: proop;
}
.parent,
.some-selector {
some: prop;
}
...
Where the hell that .parent-more selector comes from?
Compiled with the online-compiler.
Thans.