Keep the resize handle from jumping around when switching between the Visual and Text editors. Fixes #26246, props mattheu.

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


git-svn-id: http://core.svn.wordpress.org/trunk@26308 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Matt Thomas 2013-11-26 17:29:09 +00:00
parent 268c0dd8d8
commit f02c3f3037
4 changed files with 16 additions and 16 deletions

View File

@ -4289,24 +4289,24 @@ td.plugin-title p {
#post-body .wp_themeSkin .mceStatusbar a.mceResize { #post-body .wp_themeSkin .mceStatusbar a.mceResize {
background: transparent url('../images/resize.gif') no-repeat scroll left bottom; background: transparent url('../images/resize.gif') no-repeat scroll left bottom;
width: 12px; width: 12px;
height: 12px;
cursor: sw-resize; cursor: sw-resize;
} }
#post-body .wp_themeSkin .mceStatusbar a.mceResize { #post-body .wp_themeSkin .mceStatusbar a.mceResize {
display: block; bottom: 2px;
margin: 0 1px; position: absolute;
position: relative; left: 2px;
top: -2px;
} }
#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
top: 22px; bottom: -21px;
} }
#content-resize-handle { #content-resize-handle {
position: absolute; position: absolute;
left: 2px; left: 3px;
height: 19px; bottom: -20px;
} }
.press-this #content-resize-handle { .press-this #content-resize-handle {

File diff suppressed because one or more lines are too long

View File

@ -4289,24 +4289,24 @@ td.plugin-title p {
#post-body .wp_themeSkin .mceStatusbar a.mceResize { #post-body .wp_themeSkin .mceStatusbar a.mceResize {
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;
height: 12px;
cursor: se-resize; cursor: se-resize;
} }
#post-body .wp_themeSkin .mceStatusbar a.mceResize { #post-body .wp_themeSkin .mceStatusbar a.mceResize {
display: block; bottom: 2px;
margin: 0 1px; position: absolute;
position: relative; right: 2px;
top: -2px;
} }
#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize { #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
top: 22px; bottom: -21px;
} }
#content-resize-handle { #content-resize-handle {
position: absolute; position: absolute;
right: 2px; right: 3px;
height: 19px; bottom: -20px;
} }
.press-this #content-resize-handle { .press-this #content-resize-handle {

File diff suppressed because one or more lines are too long