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:
parent
164f786627
commit
ea264c07b2
|
@ -34,6 +34,11 @@ ol {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li > ul,
|
||||||
|
li > ol {
|
||||||
|
margin-left: 1.3333em;
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-color: inherit;
|
border-color: inherit;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
|
@ -660,7 +665,12 @@ img.aligncenter {
|
||||||
|
|
||||||
.comment-content ul,
|
.comment-content ul,
|
||||||
.comment-content ol {
|
.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 {
|
.comment-list .reply a {
|
||||||
|
@ -758,6 +768,12 @@ video {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.rtl li > ul,
|
||||||
|
.rtl li > ol {
|
||||||
|
margin-right: 1.3333em;
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.rtl blockquote {
|
.rtl blockquote {
|
||||||
border-width: 0 4px 0 0;
|
border-width: 0 4px 0 0;
|
||||||
margin-right: -1.0909em;
|
margin-right: -1.0909em;
|
||||||
|
@ -857,6 +873,18 @@ video {
|
||||||
left: auto;
|
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 {
|
.rtl .comment-metadata {
|
||||||
padding-right: 5.5em;
|
padding-right: 5.5em;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue