Different font style of ui-text and ui-switch

Hi there,

I have a problem with ui-text and ui-switch. The font styles are different. I have a CSS style for both and defined the text color white, but the ui-switch is gray or white transparency.

Here is a screeshot. Test is groupname. Text is ui-text. Switch is ui-switch.

This is how I defined the CSS style.

.text-neu label {
    color: white;
}
.text-neu span{
    color: rgb(255, 255, 255);
}

Can anyone help?

Try set the opacity

opacity:1;

Yes opacity is the solution. Now it works.

.text-neu label {
    color: white;
    opacity: 1;
}
.text-neu span{
    color: rgb(255, 255, 255);
}

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.