themes/openwrt and freifunk-generic: Add css to color cbi-table-rows while hovering them, closes https://dev.openwrt.org/ticket/9248

This commit is contained in:
Manuel Munz 2011-05-30 21:55:28 +00:00
parent 56d82f0472
commit cbdf1e095c
2 changed files with 14 additions and 4 deletions

View file

@ -702,12 +702,17 @@ table.smalltext tr td {
border-left: 1px dotted #666;
}
table.cbi-section-table .cbi-rowstyle-1,
table.cbi-section-table .cbi-rowstyle-1 * {
table.cbi-section-table .cbi-rowstyle-1 {
background-color: #f1f6fa;
color: #000;
}
table.cbi-section-table .cbi-rowstyle-1:hover,
table.cbi-section-table .cbi-rowstyle-2:hover {
background-color: #b2c8d4;
color: #000000;
}
.cbi-section .cbi-rowstyle-1 h3 {
background-color: #f1f6fa;
color: #555;

View file

@ -541,12 +541,17 @@ table.smalltext tr td {
border-left: 1px solid #666666;
}
table.cbi-section-table .cbi-rowstyle-1,
table.cbi-section-table .cbi-rowstyle-1>* {
table.cbi-section-table .cbi-rowstyle-1 {
background-color: #eeeeff;
color: #000000;
}
table.cbi-section-table .cbi-rowstyle-1:hover,
table.cbi-section-table .cbi-rowstyle-2:hover {
background-color: #b2c8d4;
color: #000000;
}
.cbi-section .cbi-rowstyle-1 h3 {
background-color: #eeeeff;
color: #555555;