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