Open
Description
Altought the CSS rule for "selector_separator" is set to " " (space character) this doesn't apply to rules that use direct descendant selectors or adjacent selectors. For example the following code...
a+b {
...
}
a>b {
...
}
... doesn't get formatted into this:
a + b {
...
}
a > b {
...
}