mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-19 09:48:53 +00:00
Merge remote-tracking branch 'prototech/ticket/12125' into develop
* prototech/ticket/12125: [ticket/12125] Specify nth-child selectors separately - IE8 does not like them
This commit is contained in:
commit
e91a45df33
2 changed files with 20 additions and 4 deletions
|
@ -840,11 +840,19 @@ td.name {
|
|||
text-align: right;
|
||||
}
|
||||
|
||||
.row1, table.zebra-table tbody tr:nth-child(odd) {
|
||||
.row1 {
|
||||
background-color: #F9F9F9;
|
||||
}
|
||||
|
||||
.row2, table.zebra-table tbody tr:nth-child(even) {
|
||||
table.zebra-table tbody tr:nth-child(odd) {
|
||||
background-color: #F9F9F9;
|
||||
}
|
||||
|
||||
.row2 {
|
||||
background-color: #DCEBFE;
|
||||
}
|
||||
|
||||
table.zebra-table tbody tr:nth-child(even) {
|
||||
background-color: #DCEBFE;
|
||||
}
|
||||
|
||||
|
|
|
@ -76,11 +76,19 @@ hr {
|
|||
color: #000000;
|
||||
}
|
||||
|
||||
table.zebra-list tr:nth-child(odd) td, ul.zebra-list li:nth-child(odd), .bg1 {
|
||||
.bg1 {
|
||||
background-color: #ECF3F7;
|
||||
}
|
||||
|
||||
table.zebra-list tr:nth-child(even) td, ul.zebra-list li:nth-child(even), .bg2 {
|
||||
table.zebra-list tr:nth-child(odd) td, ul.zebra-list li:nth-child(odd) {
|
||||
background-color: #ECF3F7;
|
||||
}
|
||||
|
||||
.bg2 {
|
||||
background-color: #e1ebf2;
|
||||
}
|
||||
|
||||
table.zebra-list tr:nth-child(even) td, ul.zebra-list li:nth-child(even) {
|
||||
background-color: #e1ebf2;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue