Ticket #28328: 28328.12.patch
File 28328.12.patch, 1.9 KB (added by , 11 years ago) |
---|
-
src/wp-admin/css/common.css
2642 2642 -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; 2643 2643 } 2644 2644 2645 #wpwrap {2646 background: #f0f0f0;2647 }2648 2649 2645 #wpcontent { 2650 2646 position: relative; 2651 2647 margin-left: 0; -
src/wp-admin/js/editor-expand.js
285 285 $top.css( { 286 286 position: 'fixed', 287 287 top: adminBarHeight + toolsHeight, 288 width: editorWidth - ( visual ? 0 : 38),288 width: $editor.parent().width() - ( $top.outerWidth() - $top.width() ), 289 289 borderTop: '1px solid #e5e5e5' 290 290 } ); 291 291 … … 310 310 $tools.css( { 311 311 position: 'absolute', 312 312 top: 0, 313 borderTop: 'none',314 313 width: $contentWrap.width() 315 314 } ); 316 315 // Handle scrolling down. … … 319 318 320 319 $top.css( { 321 320 position: 'absolute', 322 top: window.pageYOffset - $editor.offset().top + adminBarHeight + $tools.outerHeight(), 323 borderTop: 'none' 321 top: editorHeight - buffer, 324 322 } ); 325 323 326 324 $tools.css( { 327 325 position: 'absolute', 328 top: window.pageYOffset - $contentWrap.offset().top + adminBarHeight, 329 borderTop: 'none', 326 top: editorHeight - buffer + 1, // border 330 327 width: $contentWrap.width() 331 328 } ); 332 329 } -
src/wp-includes/css/editor.css
756 756 position: relative; 757 757 } 758 758 759 .wp-editor-tools {759 #wp-content-editor-tools { 760 760 background-color: #f1f1f1; 761 761 padding-top: 20px; 762 762 position: relative;