Combobox in NG

Hallo,

If I use the combobox ‘editable’ = true textcolor is black
if I use the combobox ‘editable’ = false textcolor is grey by default
I would like to have the textcolor also black if combobox is not editable
But, I can’t find the correct ccs-way:
I defined a class ‘combo-box-bib’
and enlarged my less-file by

.combobox-bib
{
fgcolor: ‘#000000’;
}

Neither “fgcolor,” nor “foregroundcolor” nor “color” works,
any special property in Servoy Theme Propperties or any othe way to change the default color in “non-editable-modus”

Thanks
Ralf

Hi Ralf

For NGTi, try:

.bts-dropdown-text[disabled] {
	color: blue;
}

For NG1, try

.ui-select-bootstrap > .ui-select-match > .btn[disabled] {
    color: green;
}

Regards
Birgit