Ticket #22086: 22086v3.patch
File 22086v3.patch, 6.9 KB (added by , 8 years ago) |
---|
-
wp-admin/css/wp-admin.css
512 512 513 513 /* .widefat - main style for tables */ 514 514 .widefat { 515 border-collapse: collapse; 515 516 border-spacing: 0; 516 517 width: 100%; 517 518 clear: both; … … 545 546 546 547 .widefat td, 547 548 .widefat th { 549 border-spacing:0; 548 550 border-width: 1px 0; 549 551 border-style: solid; 550 552 } … … 3124 3126 } 3125 3127 3126 3128 #post-status-info { 3129 border-collapse: collapse; 3127 3130 border-width: 0 1px 1px; 3128 3131 border-style: none solid solid; 3129 3132 width: 100%; … … 3134 3137 } 3135 3138 3136 3139 #post-status-info td { 3140 border-spacing:0; 3137 3141 font-size: 12px; 3138 3142 } 3139 3143 -
wp-admin/edit-form-advanced.php
347 347 348 348 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabfocus_elements' => 'sample-permalink,post-preview', 'editor_height' => 360) ); ?> 349 349 350 <table id="post-status-info" cellspacing="0"><tbody><tr>350 <table id="post-status-info"><tbody><tr> 351 351 <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td> 352 352 <td class="autosave-info"> 353 353 <span class="autosave-message"> </span> -
wp-admin/import.php
81 81 } else { 82 82 uasort($importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);')); 83 83 ?> 84 <table class="widefat importers" cellspacing="0">84 <table class="widefat importers"> 85 85 86 86 <?php 87 87 $style = ''; -
wp-admin/includes/ajax-actions.php
1450 1450 wp_die( $posttype->labels->not_found ); 1451 1451 } 1452 1452 1453 $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Date').'</th><th>'.__('Status').'</th></tr></thead><tbody>';1453 $html = '<table class="widefat"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Date').'</th><th>'.__('Status').'</th></tr></thead><tbody>'; 1454 1454 foreach ( $posts as $post ) { 1455 1455 1456 1456 switch ( $post->post_status ) { -
wp-admin/includes/class-wp-comments-list-table.php
278 278 $this->display_tablenav( 'top' ); 279 279 280 280 ?> 281 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">281 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>"> 282 282 <thead> 283 283 <tr> 284 284 <?php $this->print_column_headers(); ?> … … 551 551 552 552 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 553 553 ?> 554 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0"style="display:none;">554 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;"> 555 555 <tbody id="the-comment-list"<?php if ( $singular ) echo " class='list:$singular'"; ?>> 556 556 <?php if ( ! $output_empty ) $this->display_rows_or_placeholder(); ?> 557 557 </tbody> -
wp-admin/includes/class-wp-list-table.php
719 719 $this->display_tablenav( 'top' ); 720 720 721 721 ?> 722 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">722 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> 723 723 <thead> 724 724 <tr> 725 725 <?php $this->print_column_headers(); ?> -
wp-admin/includes/media.php
1666 1666 <form enctype="multipart/form-data" method="post" action="<?php echo esc_attr($form_action_url); ?>" class="<?php echo $form_class; ?>" id="gallery-form"> 1667 1667 <?php wp_nonce_field('media-form'); ?> 1668 1668 <?php //media_upload_form( $errors ); ?> 1669 <table class="widefat" cellspacing="0">1669 <table class="widefat"> 1670 1670 <thead><tr> 1671 1671 <th><?php _e('Media'); ?></th> 1672 1672 <th class="order-head"><?php _e('Order'); ?></th> -
wp-admin/includes/meta-boxes.php
857 857 */ 858 858 function link_xfn_meta_box($link) { 859 859 ?> 860 <table class="links-table" cellspacing="0">860 <table class="links-table"> 861 861 <tr> 862 862 <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th> 863 863 <td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr($link->link_rel) : ''); ?>" /></td> -
wp-admin/update-core.php
191 191 <form method="post" action="<?php echo $form_action; ?>" name="upgrade-plugins" class="upgrade"> 192 192 <?php wp_nonce_field('upgrade-core'); ?> 193 193 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p> 194 <table class="widefat" cellspacing="0"id="update-plugins-table">194 <table class="widefat" id="update-plugins-table"> 195 195 <thead> 196 196 <tr> 197 197 <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></th> … … 269 269 <form method="post" action="<?php echo $form_action; ?>" name="upgrade-themes" class="upgrade"> 270 270 <?php wp_nonce_field('upgrade-core'); ?> 271 271 <p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p> 272 <table class="widefat" cellspacing="0"id="update-themes-table">272 <table class="widefat" id="update-themes-table"> 273 273 <thead> 274 274 <tr> 275 275 <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></th> -
wp-includes/post-template.php
1417 1417 1418 1418 <br class="clear" /> 1419 1419 1420 <table class="widefat post-revisions" cellspacing="0"id="post-revisions">1420 <table class="widefat post-revisions" id="post-revisions"> 1421 1421 <col /> 1422 1422 <col /> 1423 1423 <col style="width: 33%" />