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. Built from https://develop.svn.wordpress.org/trunk@36934 git-svn-id: http://core.svn.wordpress.org/trunk@36902 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
879bcc3c45
commit
f37eca2259
|
@ -350,8 +350,10 @@ form#tags-filter {
|
||||||
cursor: row-resize;
|
cursor: row-resize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*rtl:ignore*/
|
||||||
.rtl #content-resize-handle {
|
.rtl #content-resize-handle {
|
||||||
background: transparent url(../images/resize-rtl.gif) no-repeat scroll right bottom;
|
background-image: url(../images/resize-rtl.gif);
|
||||||
|
background-position: left bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wp-editor-expand #content-resize-handle {
|
.wp-editor-expand #content-resize-handle {
|
||||||
|
@ -1306,9 +1308,11 @@ table.links-table {
|
||||||
background-size: 11px 11px;
|
background-size: 11px 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*rtl:ignore*/
|
||||||
.rtl #content-resize-handle,
|
.rtl #content-resize-handle,
|
||||||
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
||||||
background: transparent url(../images/resize-rtl-2x.gif) no-repeat scroll left bottom;
|
background-image: url(../images/resize-rtl-2x.gif);
|
||||||
|
background-position: left bottom;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -350,8 +350,10 @@ form#tags-filter {
|
||||||
cursor: row-resize;
|
cursor: row-resize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*rtl:ignore*/
|
||||||
.rtl #content-resize-handle {
|
.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 {
|
.wp-editor-expand #content-resize-handle {
|
||||||
|
@ -1306,9 +1308,11 @@ table.links-table {
|
||||||
background-size: 11px 11px;
|
background-size: 11px 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*rtl:ignore*/
|
||||||
.rtl #content-resize-handle,
|
.rtl #content-resize-handle,
|
||||||
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
.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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-beta3-36933';
|
$wp_version = '4.5-beta3-36934';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue