Closed
Description
I noticed this while playing around with selector interpolation on less2css.org (v2.5.3):
If I use an interpolated selector with nested rules, the output is not what I expected (when compared to written out). For example, the given input:
@classes: ~".a, .b, .c";
@{classes} {
+ .z {
color: blue;
}
}
.p, .q, .r {
+ .z {
color: blue;
}
}
provides the following output:
.a, .b, .c + .z {
color: blue;
}
.p + .z,
.q + .z,
.r + .z {
color: blue;
}
Shouldn't the interpolated class output include + .z
for each selector instead of just the final one, .c
?
Metadata
Metadata
Assignees
Labels
No labels