css
adds style classes to Toolbar
css?: string;
Example
<style>
.my_first_class {
/*some styles*/
}
.my_second_class {
/*some styles*/
}
</style>
const toolbar = new dhx.Toolbar("toolbar_container", {
css: "my_first_class my_second_class"
});
Note, that the DHTMLX library provides a set of own CSS classes that you can also apply to change the appearance of Toolbar:
const toolbar = new dhx.Toolbar("toolbar_container", {
css: "dhx_widget--bg-gray"
});