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
This commit is contained in:
Dominik Schilling (ocean90) 2016-03-10 14:05:41 +00:00
parent b49bc4e651
commit 73a88ca194
1 changed files with 6 additions and 2 deletions

View File

@ -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;
}
}