Hi
In the razor file:
<MenuItem Id="Cancel" Text = "Cancel" IconCss="e-icons close" HtmlAttributes="@menuCancelHtmlAttribute">
</MenuItem>
in c# file:
public Dictionary<string, object> menuCancelHtmlAttribute = new Dictionary<string, object>()
{
{"style", "background-color: #FFEBEE; font-weight: bold; " }
};
Menu item has different background color but hover and focus not working.
Greetings
Maciej