Changeset 29075
- Timestamp:
- 07/10/2014 07:35:32 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r29041 r29075 2643 2643 } 2644 2644 2645 #wpwrap {2646 background: #f0f0f0;2647 }2648 2649 2645 #wpcontent { 2650 2646 position: relative; -
trunk/src/wp-admin/edit-form-advanced.php
r29049 r29075 12 12 13 13 wp_enqueue_script('post'); 14 wp_enqueue_script('editor-expand'); 14 15 if ( post_type_supports( $post_type, 'editor' ) ) { 16 wp_enqueue_script('editor-expand'); 17 } 15 18 16 19 if ( wp_is_mobile() ) -
trunk/src/wp-admin/js/editor-expand.js
r29050 r29075 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 } ); … … 311 311 position: 'absolute', 312 312 top: 0, 313 borderTop: 'none',314 313 width: $contentWrap.width() 315 314 } ); … … 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 } ); -
trunk/src/wp-includes/css/editor.css
r29049 r29075 757 757 } 758 758 759 .wp-editor-tools {759 #wp-content-editor-tools { 760 760 background-color: #f1f1f1; 761 761 padding-top: 20px;
Note: See TracChangeset
for help on using the changeset viewer.