<@U25PL0SKY> By default, nested selectors are just...
# tornadofx
r
@jchildress By default, nested selectors are just that: nested. So
Copy code
defaultColor0 {
    chartLineSymbol {
        ...
    }
}
results in
.default-color0 .chart-line-symbol { ... }
(note the space). To make a union of selectors, you need to use
and
.