From 6bc8f2e24cf3cd4fdd20d792a5d4e3c8735bd30c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 23 Dec 2015 13:09:38 +0000 Subject: [PATCH] Twenty Fifteen: Add left margin for lists inside blockquotes in `editor-style.css`. Props diddledan. Fixes #33380. git-svn-id: https://develop.svn.wordpress.org/trunk@36075 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfifteen/css/editor-style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wp-content/themes/twentyfifteen/css/editor-style.css b/src/wp-content/themes/twentyfifteen/css/editor-style.css index 33db931ff1..b3cdd0f17c 100644 --- a/src/wp-content/themes/twentyfifteen/css/editor-style.css +++ b/src/wp-content/themes/twentyfifteen/css/editor-style.css @@ -238,6 +238,11 @@ li > ol { margin: 0 0 0 23px; } +blockquote > ul, +blockquote > ol { + margin-left: 28px; +} + dl { margin: 0 0 28px; }