我正在使用tablesorter jquery add的修改版本。
http://www.pengoworks.com/workshop/jquery/tablesorter/tablesorter.htm
我需要折叠的行来获取一个coloe,而不是父行颜色。
即使我明确设置了子颜色,它仍然被父颜色超级控制。
我如何打破这种逻辑
答案 0 :(得分:1)
您只需要增加子行的CSS specificity。唯一的问题是父行有一个行 - 跨越子行的单元格,因此它不会与子行的其余部分进行样式化。
试试这个css(当然使用你想要的颜色); here is a demo:
table.tablesorter .expand-child.odd td,
table.tablesorter .expand-child.even td {
background: #7ff;
}