Change Autocomplete TextField Style

I have an Autocomplete TextField from controlsFX, and I want to change the size and color of each element.

This is my piece of code:

TextFields.bindAutoCompletion(txt_numberOfCard_GENERAL, cardNumber);

enter image description here

+4
source share
1 answer

AutoFill from ControlFX - is the ListView, so it must apply the changes for the cell to keep your needs:

.list-cell .text
{   -fx-font:18px "Arial";
}

.list-cell:filled:hover{
    -fx-text-fill: #191970 ;
    -fx-focus-traversable:false
}

and the result of this css part:

enter image description here

0
source

Source: https://habr.com/ru/post/1672047/


All Articles