TurbineCSS/Turbine

comma-separated selectors (each per line) are not converted properly

Opened this issue · 0 comments

As you can see in your Sandbox, code like this (with comma-separated selectors) is beeing converted successfully into the correct code).

From:

foo,

bar

color:red

To:

foo, #bar {

color: red;

}

But when using either Version 1.0.11 or one of the beta Versions (beta 1 or beta 2 from the trunk), it results into the following code:

bar {

color: red;

}

Could you please test this behaviour by yourself?

// Edit: Sorry for my strange description up there - i've meant the multi-line selectors. They are not working for me...
// Edit: Seems like Turbine's using just the last selector.