Overwrite background of Toolbar

Hi.
i have a toolbar based on contrast CSS (Black background)
for ONE toolbar in this project i wan´t to makle a toolbar with WHITE background, so i´d made a style like this:

.bgWhiteToolbar .webix_layout_toolbar{
background:white;
}

if i add this Style to the toolbar like
{
view: “toolbar”, id:“mainToolbar” , css:“bgWhiteToolbar”,…

It doesn´t takes effect. background still black

Any idea ?

try to use this

<style>
  .bgWhiteToolbar.webix_layout_toolbar{
     background: white;
  }
</style>

works perfect, thx (one Space, great effect :slight_smile: )