Is there such a variable or how to do it otherwise with css?
termCSS: `
.spllitpane_dividers {
background-color: red;
}
`,
doesn't seem to work
.splitpane_divider should be the class you're looking for there. Looks like you have a few spelling mistakes in the selector you provided.
I also think this should be within the css property.
Could you try this instead:
css: `.splitpane_divider { background-color: red; }`,
Also, you might have to use !important to get it to work. Inline styles are applied here.
@CodeTheory
css: `.splitpane_divider { background-color: red !important; }`,
did the trick! thanks!
Most helpful comment
@CodeTheory
did the trick! thanks!