How can I change, from CSS, the left arrow fill color in popover from JavaFx?
I tried the following, but it didn't work.
.popover > .content {
-fx-fill: yellow !important;
-fx-background-color: red !important;
}
popover > .content > .accordion > .titled-pane > .title > .arrow-button > .arrow {
-fx-background-color: red !important;
-fx-fill: red !important;
-fx-pref-height: 34.0 !important;
}
.popover > .content > .accordion > .titled-pane > .title > .arrow-button {
-fx-background-color: yellow !important;
-fx-fill:yellow !important;
}