1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/12125] Specify nth-child selectors separately - IE8 does not like them

PHPBB3-12125
This commit is contained in:
Cesar G
2014-01-24 03:03:54 -08:00
parent 4c102322c1
commit 8620f1e619
2 changed files with 20 additions and 4 deletions

View File

@@ -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;
}