Keep the resize handle from jumping around when switching between the Visual and Text editors. Fixes #26246, props mattheu.
git-svn-id: https://develop.svn.wordpress.org/trunk@26408 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ec10ecbebf
commit
68f7b803bc
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue