Handsontable - 交替行颜色CSS影响上下文菜单和过滤器

时间:2017-06-07 03:30:27

标签: css handsontable

根据以下链接中的说明。

https://docs.handsontable.com/0.24.2/tutorial-styling.html#page-rows

我已将以下.css代码添加到我的网站,以允许在Handsontable实例中交替使用行颜色。

/* Every even row */
.ht_master tr:nth-of-type(even) > td {
  background-color: hsl(199, 100%, 95%);
}

然而,这会产生意外的副作用,即在上下文菜单和过滤菜单中交替显示行的颜色。见下面的截图。

Alternating Row Colors Error

如何更正我的.css代码以仅替换表格本身的行颜色而不是其他菜单?

0 个答案:

没有答案