зеркало из https://github.com/telerik/blazor-docs.git
778 B
778 B
title | description | type | page_title | slug | position | tags | ticketid | res_type |
---|---|---|---|---|---|---|---|---|
Remove the Expand Arrow from the Menu Dropdown | Discover how to use CSS properties to hide the arrow icon from the menu dropdown | how-to | How to remove the expand arrow from a menu dropdown | menu-kb-remove-the-expand-arrow-icon | 1482238 | kb |
Environment
Product | Menu for Blazor |
Description
When there is more than one item under a menu item an arrow icon is displayed to indicate additional items are below it. Sometimes it may be desirable to remove the icon from the top-level menu item.
Solution
Use the following CSS to set the display to none.
.k-menu-expand-arrow {
display: none;
}