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:
parent
56d82f0472
commit
cbdf1e095c
2 changed files with 14 additions and 4 deletions
|
@ -702,12 +702,17 @@ table.smalltext tr td {
|
||||||
border-left: 1px dotted #666;
|
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;
|
background-color: #f1f6fa;
|
||||||
color: #000;
|
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 {
|
.cbi-section .cbi-rowstyle-1 h3 {
|
||||||
background-color: #f1f6fa;
|
background-color: #f1f6fa;
|
||||||
color: #555;
|
color: #555;
|
||||||
|
|
|
@ -541,12 +541,17 @@ table.smalltext tr td {
|
||||||
border-left: 1px solid #666666;
|
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;
|
background-color: #eeeeff;
|
||||||
color: #000000;
|
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 {
|
.cbi-section .cbi-rowstyle-1 h3 {
|
||||||
background-color: #eeeeff;
|
background-color: #eeeeff;
|
||||||
color: #555555;
|
color: #555555;
|
||||||
|
|
Loading…
Reference in a new issue