Changeset 23615
- Timestamp:
- 03/04/2013 11:22:17 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/wp-admin.css
r23583 r23615 3102 3102 } 3103 3103 3104 .post-formats-fields {3105 margin-bottom: 20px;3106 }3107 3108 3104 .wp-format-standard .post-formats-fields, 3109 3105 .wp-format-aside .post-formats-fields, … … 4770 4766 margin-bottom: 8px; 4771 4767 padding: 2px 10px; 4772 }4773 4774 .wp_attachment_details {4775 margin-bottom: 20px;4776 4768 } 4777 4769 … … 6326 6318 } 6327 6319 6328 #post-body-content{6320 .edit-form-section { 6329 6321 margin-bottom: 20px; 6330 6322 } -
trunk/wp-admin/edit-form-advanced.php
r23570 r23615 385 385 } 386 386 387 do_action( 'edit_form_after_title' ); 387 if ( has_action( 'edit_form_after_title' ) ) { 388 echo '<div class="edit-form-section">'; 389 do_action( 'edit_form_after_title' ); 390 echo '</div>'; 391 } 388 392 389 393 // post format fields … … 396 400 $image = false; 397 401 ?> 398 <div class="post-formats-fields ">402 <div class="post-formats-fields edit-form-section"> 399 403 400 404 <input type="hidden" name="post_format" id="post_format" value="<?php echo esc_attr( $post_format ); ?>" /> … … 448 452 if ( post_type_supports($post_type, 'editor') ) { 449 453 ?> 450 <div id="postdivrich" class="postarea ">454 <div id="postdivrich" class="postarea edit-form-section"> 451 455 452 456 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabfocus_elements' => 'insert-media-button,save-post', 'editor_height' => 360) ); ?> … … 471 475 472 476 </div> 473 <?php } ?> 474 475 <?php do_action( 'edit_form_after_editor' ); ?> 477 <?php } 478 479 if ( has_action( 'edit_form_after_editor' ) ) { 480 echo '<div class="edit-form-section">'; 481 do_action( 'edit_form_after_editor' ); 482 echo '</div>'; 483 } 484 ?> 476 485 </div><!-- /post-body-content --> 477 486 -
trunk/wp-admin/includes/media.php
r23578 r23615 2308 2308 <?php endif; ?> 2309 2309 2310 <div class="wp_attachment_details ">2310 <div class="wp_attachment_details edit-form-section"> 2311 2311 <p> 2312 2312 <label for="attachment_caption"><strong><?php _e( 'Caption' ); ?></strong></label><br />
Note: See TracChangeset
for help on using the changeset viewer.