如何增加 clr-dg-action-overflow 的高度

How to increase the height of the clr-dg-action-overflow

有没有办法增加 clr-dg-action-overflow 项目的高度?在 CSS 中设置 .action-item class 的高度是否足够?对其他组件有影响吗?

最简单的方法是在 .action-item 上设置更大的 line-height。这将增加 space 而不会影响任何其他内容。

.datagrid-action-overflow .action-item {
  line-height: 2rem;
}