Override color in css toolbar

Hi,

I’m trying to change label color in a toolbar.
If I do that
.webix_toolbar .webix_el_label .webix_el_box {
color: white;
}
it works fine but I don’t want to change the color for all toolbar, and I can’t do it with a custom name like
.custom .webix_toolbar .webix_el_label .webix_el_box {
color: white;
}

How can I apply this label color only on a specific toolbar ?

Regards

Hello @Cusco ,

Check these variants: Code Snippet .

With custom css classes you could change the labels color for a separate toolbar or just for one particular label.

Hi,

It works fine with .custom_label .webix_el_label .webix_el_box

Thank you very much