我正在尝试在制表器表上设置".tabulator-row-even“和".tabulator-row-odd”颜色。
".tabulator-row-even“正在被tabulator.scss覆盖
".tabulator-row-odd“未被覆盖,我可以更改此颜色。
我的style.css有以下几行:
.tabulator-row-odd {
background-color: #553333;
}
.tabulator-row-even {
background-color: #335533;
}Safari上的计算属性:
#553333.tabulator-row-odd style.css:23
#fff.tabulator-row tabulator.scss:1001
#fff.tabulator .…lator-table tabulator.scss:1001
#efefef.tabulator-r…or-row-even tabulator.scss:1001
#335533.tabulator-row-even style.css:26
#fff.tabulator-row tabulator.scss:1001发布于 2020-02-20 03:54:41
你试过了吗?
.tabulator-row-odd {
background-color: #553333 !important;
}
.tabulator-row-even {
background-color: #335533 !important;
}https://stackoverflow.com/questions/60272294
复制相似问题