Editor: fix position of the resize handle in Text mode in RTL (also some minor css cleanup), see #21718

git-svn-id: http://core.svn.wordpress.org/trunk@22458 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2012-11-07 23:33:21 +00:00
parent 23a7a49f59
commit 5c087d0e5a
4 changed files with 22 additions and 9 deletions

View File

@ -2125,12 +2125,12 @@ div.widgets-sortables,
.menu-icon-site div.wp-menu-image, .menu-icon-site div.wp-menu-image,
.icon16.icon-generic, .icon16.icon-generic,
.menu-icon-generic div.wp-menu-image { .menu-icon-generic div.wp-menu-image {
background-image: url(../images/menu-vs-2x.png?ver=20121105); background-image: url('../images/menu-vs-2x.png?ver=20121105');
background-size: 390px 64px; background-size: 390px 64px;
} }
#header-logo { #header-logo {
background-image: url("../images/wp-logo-vs-2x.png?ver=20120916"); background-image: url('../images/wp-logo-vs-2x.png?ver=20120916');
background-size: 16px auto; background-size: 16px auto;
} }

View File

@ -2004,12 +2004,12 @@ div.widgets-sortables,
.menu-icon-site div.wp-menu-image, .menu-icon-site div.wp-menu-image,
.icon16.icon-generic, .icon16.icon-generic,
.menu-icon-generic div.wp-menu-image { .menu-icon-generic div.wp-menu-image {
background-image: url(../images/menu-2x.png?ver=20121105); background-image: url('../images/menu-2x.png?ver=20121105');
background-size: 390px 64px; background-size: 390px 64px;
} }
#header-logo { #header-logo {
background-image: url("../images/wp-logo-2x.png?ver=20120916"); background-image: url('../images/wp-logo-2x.png?ver=20120916');
background-size: 16px auto; background-size: 16px auto;
} }

View File

@ -859,7 +859,7 @@ th.sorted a span {
} }
#post-body .wp_themeSkin .mceStatusbar a.mceResize { #post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url(../images/resize-rtl.gif) no-repeat scroll left bottom; background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
cursor: sw-resize; cursor: sw-resize;
} }
@ -1510,6 +1510,7 @@ table .column-rating {
padding-left: 0; padding-left: 0;
padding-right: 5px; padding-right: 5px;
} }
#editorcontainer .wp_themeSkin .mceStatusbar div { #editorcontainer .wp_themeSkin .mceStatusbar div {
float: right; float: right;
} }
@ -1518,6 +1519,13 @@ table .column-rating {
float: left; float: left;
} }
#content-resize-handle {
background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
right: auto;
left: 2px;
cursor: sw-resize;
}
/*------------------------------------------------------------------------------ /*------------------------------------------------------------------------------
26.0 - Full Overlay w/ Sidebar 26.0 - Full Overlay w/ Sidebar
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
@ -2395,6 +2403,11 @@ div.sidebar-name h3 {
background: url('../images/stars-rtl-2x.png') repeat-x top right; background: url('../images/stars-rtl-2x.png') repeat-x top right;
background-size: 21px 37px; background-size: 21px 37px;
} }
#post-body .wp_themeSkin .mceStatusbar a.mceResize,
#content-resize-handle {
background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom;
}
} }
/* =Localized CSS /* =Localized CSS

View File

@ -2563,7 +2563,7 @@ table.fixed {
height: 4px; height: 4px;
margin-top: 8px; margin-top: 8px;
margin-left: 7px; margin-left: 7px;
background-image: url(../images/sort.gif); background-image: url('../images/sort.gif');
background-repeat: no-repeat; background-repeat: no-repeat;
} }
@ -3301,7 +3301,7 @@ td.plugin-title p {
#post-body .wp_themeSkin .mceStatusbar a.mceResize { #post-body .wp_themeSkin .mceStatusbar a.mceResize {
display: block; display: block;
background: transparent url(../images/resize.gif) no-repeat scroll right bottom; background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
width: 12px; width: 12px;
cursor: se-resize; cursor: se-resize;
margin: 0 1px; margin: 0 1px;
@ -3314,7 +3314,7 @@ td.plugin-title p {
} }
#content-resize-handle { #content-resize-handle {
background: transparent url(../images/resize.gif) no-repeat scroll right bottom; background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
width: 12px; width: 12px;
cursor: se-resize; cursor: se-resize;
position: absolute; position: absolute;