You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 16, 2023. It is now read-only.
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.