Fix zebra striping in IE8

Apparently, IE8 won't interpret CSS statements if it does not
support all selectors used in the statement?!

References #83
This commit is contained in:
Matthias Mees 2014-03-10 15:59:13 +01:00
parent d157084851
commit 93aed1b818

View File

@ -1744,7 +1744,10 @@ form > .button_link:first-of-type,
}
.zebra_list .odd,
.option_list .odd,
.option_list .odd {
background: #eee;
}
.upload_form:nth-child(odd),
.upload_form:nth-child(odd) input[type="file"] {
background: #eee;
@ -2744,7 +2747,10 @@ img.mfp-img {
#template_select .even,
.media_pane .even,
#dashboard > .even,
#dashboard > .even {
margin: 0 0 1em 2%;
}
#maintenance > section:nth-child(odd) {
margin: 0 0 1em 2%;
}
@ -2850,9 +2856,12 @@ img.mfp-img {
.configuration_group .form_area,
.configuration_group fieldset > fieldset,
#template_select .odd,
.plugins_installable > li:nth-child(odd),
.media_pane .odd,
#dashboard > section:last-child,
#dashboard > section:last-child {
clear: left;
}
.plugins_installable > li:nth-child(odd),
.serendipity_statistics > section:nth-child(odd) {
clear: left;
}