Fix positioning of TinyMCE Resize handler for RTL. Props yoavf. Fixes #17796
git-svn-id: https://develop.svn.wordpress.org/trunk@18310 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
31b16ec043
commit
696c091d9a
File diff suppressed because one or more lines are too long
|
@ -40,6 +40,7 @@ TABLE OF CONTENTS:
|
|||
21.0 - Admin Footer
|
||||
22.0 - Misc
|
||||
23.0 - Dead
|
||||
24.0 - TinyMCE tweaks
|
||||
|
||||
|
||||
------------------------------------------------------------------------------*/
|
||||
|
@ -850,7 +851,7 @@ th.sorted a span {
|
|||
}
|
||||
|
||||
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
background: transparent url(../images/resize-rtl.gif) no-repeat scroll right bottom;
|
||||
background: transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom;
|
||||
cursor: sw-resize;
|
||||
}
|
||||
|
||||
|
@ -1317,3 +1318,19 @@ table .column-rating {
|
|||
------------------------------------------------------------------------------*/
|
||||
/* No RTL for now, this space intentionally left blank */
|
||||
|
||||
|
||||
/*------------------------------------------------------------------------------
|
||||
24.0 - TinyMCE tweaks
|
||||
Small tweaks for until tinymce css files are proprely RTLized
|
||||
------------------------------------------------------------------------------*/
|
||||
#editorcontainer .wp_themeSkin .mceStatusbar {
|
||||
padding-left: 0;
|
||||
padding-right: 5px;
|
||||
}
|
||||
#editorcontainer .wp_themeSkin .mceStatusbar div {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#editorcontainer .wp_themeSkin .mceStatusbar a.mceResize {
|
||||
float: left;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue