I am trying to custom style the menu colors, but its not working no matter the the several technics applied.
.clsMenu {
background-color: blue;
color: red;
}
var menu = webix.ui({
container:"areamenu",
view:"menu",
id:"areamenu",
select:true,
css:"clsMenu",
data:[
{id:1, value:"Home", submenu:["option1", "option2", "option3"]},
{id:2, value:"News"},
{id:3, value:"Drop"}
],
type:{
subsign:true,
}
});