Context: CSS Styling of combobox dropdown list. The CSS styling on the drop down list works when clicking down arrow.
Issue: Unable to change the background color & text color when I start typing in the combobox (auto-completion) as seen below when I click on down arrow
I checked a few links eg: Link Also tried with a few combinations in combo-box-base, but don't seem to get it working. Hope the issue faced is clear
CSS Code:
.combo-box-popup > .list-view {
-fx-background-color: -fx-custom1;
}
.combo-box-popup .list-view .list-cell{
-fx-background-color: -fx-custom1;
-fx-text-fill: -fx-customText;
}
Clicking down arrow
Typing in combobox
Edit - Added:
If anyone has any further inputs / resolution steps to - Link please update. I believe the issue faced is the same as the CSS styling on Autocompletion in ControlsFx does not seem to work.