I have just downloaded the JavaFX ControlsFX library and am currently stuck. I'm using one of the custom components in the library, called a RangeSlider, but need to manipulate style for each thumb in CSS. I've looked all over the place but can't seem to find anything useful. Is there a way to do that? I know with regular java Slider components, this can be done:
.slider .thumb {
// Style code here
}
But when I use something like this for RangeSlider, nothing works. It makes sense because there's 2 sliders, but I've tried 100 combinations for what the substructure names would be to no avail.
Mission: I'm trying to change each thumbs icon and I'm also interested in changing the color that is drawn in between the 2 thumbs(currently blue).
Hopefully this is something wildly obvious, thank you!