Add back CSS rules for RTL resize handles.

Disable CSSJanus' swapLtrRtlInUrl option, as we currently don't use it otherwise (and it breaks this if left on).

props ocean90.
fixes #26449.

Built from https://develop.svn.wordpress.org/trunk@26731


git-svn-id: http://core.svn.wordpress.org/trunk@26620 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-12-06 18:35:11 +00:00
parent d59d76b3d4
commit ee54355c16
4 changed files with 22 additions and 2 deletions

View File

@ -4326,6 +4326,11 @@ td.plugin-title p {
cursor: sw-resize;
}
.rtl #content-resize-handle,
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
}
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
bottom: 3px;
position: absolute;
@ -11428,6 +11433,11 @@ li#wp-admin-bar-menu-toggle {
background-size: 11px 11px;
}
.rtl #content-resize-handle,
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom;
}
/* Back-compat for pre-3.8 */
div.star-holder {
background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom right;

File diff suppressed because one or more lines are too long

View File

@ -4326,6 +4326,11 @@ td.plugin-title p {
cursor: se-resize;
}
.rtl #content-resize-handle,
.rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url('../images/resize-rtl.gif') no-repeat scroll right bottom;
}
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
bottom: 3px;
position: absolute;
@ -11428,6 +11433,11 @@ li#wp-admin-bar-menu-toggle {
background-size: 11px 11px;
}
.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;
}
/* Back-compat for pre-3.8 */
div.star-holder {
background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;

File diff suppressed because one or more lines are too long