Open elexisvenator opened 8 years ago
Other less compilers i checked dont have this issue, it seems specific to the one fiddlesalad uses.
When i type:
.foo { > .bar { baz& { width: 50%; } baz & { width: 50%; } .baz& { width: 50%; } .baz & { width: 50%; } } }
the expected output is
baz.foo > .bar { width: 50%; } baz .foo > .bar { width: 50%; } .baz.foo > .bar { width: 50%; } .baz .foo > .bar { width: 50%; }
Instead, the output is
baz .foo > .bar { width: 50%; } baz .foo > .bar { width: 50%; } .baz .foo > .bar { width: 50%; } .baz .foo > .bar { width: 50%; }
Other less compilers i checked dont have this issue, it seems specific to the one fiddlesalad uses.
When i type:
the expected output is
Instead, the output is