I am trying to set the background color of the middle level when a menu is 3 levels deep.
In this picture I want the blue background to be grey.
My existing CSS is:
.e-menu-container {
background-color: lightsteelblue;
}
.e-menu-container .e-menu .e-menu-item.e-selected {
background-color: lightslategray;
}
.e-menu-container .e-ul .e-menu-item.e-focused {
background-color: slategrey;
}
.e-menu-container.e-menu-popup {
background-color: lightgrey;
}
Thanks for your help