From 73a88ca19480db6e7d856c53a1fdd3490b322003 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Thu, 10 Mar 2016 14:05:41 +0000 Subject: [PATCH] Editor: Fix size of the resize handle on RTL sites for HiDPI screens. Also, add the `/*rtl:ignore*/` control directive so rtlcss doesn't process them again. Fixes #36193. git-svn-id: https://develop.svn.wordpress.org/trunk@36934 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/edit.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css index 6ed7cbc76e..06297f9581 100644 --- a/src/wp-admin/css/edit.css +++ b/src/wp-admin/css/edit.css @@ -350,8 +350,10 @@ form#tags-filter { cursor: row-resize; } +/*rtl:ignore*/ .rtl #content-resize-handle { - background: transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom; + background-image: url(../images/resize-rtl.gif); + background-position: left bottom; } .wp-editor-expand #content-resize-handle { @@ -1306,9 +1308,11 @@ table.links-table { background-size: 11px 11px; } + /*rtl:ignore*/ .rtl #content-resize-handle, .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize { - background: transparent url(../images/resize-rtl-2x.gif) no-repeat scroll right bottom; + background-image: url(../images/resize-rtl-2x.gif); + background-position: left bottom; } }