From 42cfbd701fc8937054888a2618a35f1b66b033f2 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Fri, 24 May 2013 18:58:21 +0000 Subject: [PATCH] Twenty Thirteen: polish up RTL for editor styles, fixing blockquote and status entries. Fixes #24298. git-svn-id: https://develop.svn.wordpress.org/trunk@24347 602fd350-edb4-49c9-b593-d223f7449a82 --- .../twentythirteen/css/editor-style.css | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/wp-content/themes/twentythirteen/css/editor-style.css b/wp-content/themes/twentythirteen/css/editor-style.css index b869dc49dc..bb051a9cbd 100644 --- a/wp-content/themes/twentythirteen/css/editor-style.css +++ b/wp-content/themes/twentythirteen/css/editor-style.css @@ -534,4 +534,42 @@ html .mceContentBody.rtl { .rtl td { padding: 6px 0 6px 10px; text-align: right; +} + +.rtl.post-format-aside cite:before { + content: normal; + margin-right: auto; +} + +.rtl blockquote blockquote { + margin-left: 0; + margin-right: 24px; +} + +.rtl.post-format-quote blockquote { + padding-left: 0; + padding-right: 75px; +} + +.rtl.post-format-quote blockquote:before { + content: '\201D'; + padding-left: 25px; + padding-right: 0; + left: auto; + right: -15px; +} + +.rtl.post-format-status { + padding-left: 0; + padding-right: 35px; +} + +.rtl.post-format-status:before { + left: auto; + right: 15px; +} + +.rtl.post-format-status p:first-child:before { + left: auto; + right: 9px; } \ No newline at end of file