Twenty Fifteen: correct list indentation in older IE versions.

Props iamtakashi, fixes #30074.


Built from https://develop.svn.wordpress.org/trunk@30012


git-svn-id: http://core.svn.wordpress.org/trunk@30012 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ian Stewart 2014-10-24 15:05:19 +00:00
parent 164f786627
commit ea264c07b2
2 changed files with 30 additions and 2 deletions

View File

@ -34,6 +34,11 @@ ol {
margin-left: 0;
}
li > ul,
li > ol {
margin-left: 1.3333em;
}
blockquote {
border-color: inherit;
border-style: solid;
@ -660,7 +665,12 @@ img.aligncenter {
.comment-content ul,
.comment-content ol {
margin-bottom: 1.6842em;
margin: 0 0 1.6842em 0;
}
.comment-content li > ul,
.comment-content li > ol {
margin-left: 1.3333em;
}
.comment-list .reply a {
@ -758,6 +768,12 @@ video {
margin-left: auto;
}
.rtl li > ul,
.rtl li > ol {
margin-right: 1.3333em;
margin-left: auto;
}
.rtl blockquote {
border-width: 0 4px 0 0;
margin-right: -1.0909em;
@ -857,6 +873,18 @@ video {
left: auto;
}
.rtl .comment-content ul,
.rtl .comment-content ol {
margin-right: 0;
margin-left: auto;
}
.rtl .comment-content li > ul,
.rtl .comment-content li > ol {
margin-right: 1.3333em;
margin-left: auto;
}
.rtl .comment-metadata {
padding-right: 5.5em;
padding-left: 0;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-alpha-30011';
$wp_version = '4.1-alpha-30012';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.