Hi Team,
I tried to add css color to Menu items line separator by over-riding “.webix_context_sep” class but i dont see any changes
getting effected.
Can you please suggest on this .
Hi Team,
I tried to add css color to Menu items line separator by over-riding “.webix_context_sep” class but i dont see any changes
getting effected.
Can you please suggest on this .
Hi,
Color is set in the following css:
.webix_menu .webix_context_sep .sep_line {
border-top: 1px solid #DDDDDD;
}
To customize border you can add !important statement:
.webix_menu .webix_context_sep .sep_line {
border-top: 1px solid red !important;
}