如何在排序时去掉第 header 列的背景色?
How to get rid of column header background color on sort?
我想让 header 列的背景色透明(而不是下面屏幕截图中的浅蓝色)。这可能吗?
你们都必须覆盖或更改 ng-table。css
.ng-table th.sortable.sort-desc,
.ng-table th.sortable.sort-asc {
background-color: rgba(141, 192, 219, 0.25); <-- remove this or change as per your need
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}
我想让 header 列的背景色透明(而不是下面屏幕截图中的浅蓝色)。这可能吗?
你们都必须覆盖或更改 ng-table。css
.ng-table th.sortable.sort-desc,
.ng-table th.sortable.sort-asc {
background-color: rgba(141, 192, 219, 0.25); <-- remove this or change as per your need
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}