Ticket #28328: 28328.14.patch
File 28328.14.patch, 1.1 KB (added by , 11 years ago) |
---|
-
src/wp-admin/css/edit.css
378 378 overflow: hidden; 379 379 } 380 380 381 /* DFW Adjustments */ 382 .wp-fullscreen-wrap #content-textarea-clone { 383 display: none; 384 } 385 386 /* DFW visual mode: override paddingTop set by editor-expand.js */ 387 .wp-fullscreen-wrap .mce-edit-area { 388 padding-top: 0 !important; 389 } 390 /* DFW text mode: override paddingTop set by editor-expand.js */ 391 .wp-fullscreen-wrap .wp-editor-area { 392 padding-top: 10px !important; 393 } 394 381 395 #timestampdiv select { 382 396 height: 21px; 383 397 line-height: 14px; -
src/wp-admin/js/post.js
1060 1060 $textarea.css( 'resize', 'none' ); 1061 1061 1062 1062 $handle.on( 'mousedown.wp-editor-resize', function( event ) { 1063 1064 if ( $contentWrap.hasClass( 'wp-editor-expand' ) ) { 1065 return; 1066 } 1067 1063 1068 if ( typeof tinymce !== 'undefined' ) { 1064 1069 editor = tinymce.get('content'); 1065 1070 }