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 {
background: transparent url('../images/resize.gif') no-repeat scroll left bottom;
width: 12px;
height: 12px;
cursor: sw-resize;
}
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
display: block;
margin: 0 1px;
position: relative;
top: -2px;
bottom: 2px;
position: absolute;
left: 2px;
}
#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
top: 22px;
bottom: -21px;
}
#content-resize-handle {
position: absolute;
left: 2px;
height: 19px;
left: 3px;
bottom: -20px;
}
.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 {
background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
width: 12px;
height: 12px;
cursor: se-resize;
}
#post-body .wp_themeSkin .mceStatusbar a.mceResize {
display: block;
margin: 0 1px;
position: relative;
top: -2px;
bottom: 2px;
position: absolute;
right: 2px;
}
#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
top: 22px;
bottom: -21px;
}
#content-resize-handle {
position: absolute;
right: 2px;
height: 19px;
right: 3px;
bottom: -20px;
}
.press-this #content-resize-handle {

File diff suppressed because one or more lines are too long