From ea264c07b2647bb5434059bdf8d8d80ee411b802 Mon Sep 17 00:00:00 2001 From: Ian Stewart Date: Fri, 24 Oct 2014 15:05:19 +0000 Subject: [PATCH] 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 --- wp-content/themes/twentyfifteen/css/ie.css | 30 +++++++++++++++++++++- wp-includes/version.php | 2 +- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyfifteen/css/ie.css b/wp-content/themes/twentyfifteen/css/ie.css index 91afa50661..267c0031be 100644 --- a/wp-content/themes/twentyfifteen/css/ie.css +++ b/wp-content/themes/twentyfifteen/css/ie.css @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index faee673617..f69f8f3052 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.