我有一个 GWT DataGrid
(CellTable),奇/偶行具有不同的背景颜色:
.dataGridEvenRow { background: white !important; }
.dataGridEvenRowCell { border: selectionBorderWidth solid white !important; }
.dataGridOddRow { background: red !important; }
.dataGridOddRowCell { border: selectionBorderWidth solid red !important; }
在选择时,我只想更改边框颜色,但不应更改背景。但是当我使用如下样式时,背景总是更改为“ white
”。
/* Here something must be wrong */
.dataGridSelectedRow {
background: inherit !important;
color: inherit !important;
}
这就是细胞的内部背景。但它不是从奇数行/偶数行继承,而是从其他地方继承……