Skins and comboBox

It appears to me that comboBox (Cameleon) is incompatible with some parts of skinSettings (Cameleon), ie normalBorder. I've had a quick look at the xml files in bindings, and I am sure the border colour is hardcoded - how do I change this to normalBorder settings?? Has this bug been fixed before??

Thanks,

Alex

Skins and comboBox

Hi Alex Chamberlain,

That is right, it is hard coded in the comboBox.xml therefore you have to override it by adding a class to the main css and don't forget to add "important !".

.btl-comboBox .btl-comboBox-border {
        border: 1px solid blue ! important;
}

Skins and comboBox

Hi Alex Chamberlain,

You can also try to add ! important on the skin setting.It will force the combobox to use the border style from the skin setting rather than the hardcoded style in the comboBox.xml

In 4.2 ?

How can we do this in 4.2 ?
It does not work as expected anymore ...

skin comboBox 4.2

Hi nbourdeau,

You can still do the same thing in 4.2.
Just put those css line code in the main.css.
And it works in both FF2 and IE7.

Andys