Ticket #22086: 22086v6.diff
File 22086v6.diff, 7.0 KB (added by , 7 years ago) |
---|
-
wp-admin/css/wp-admin.css
544 544 545 545 /* .widefat - main style for tables */ 546 546 .widefat { 547 border-collapse: separate; 547 548 border-spacing: 0; 548 549 width: 100%; 549 550 clear: both; … … 577 578 578 579 .widefat td, 579 580 .widefat th { 581 border-spacing: 0; 580 582 border-width: 1px 0; 581 583 border-style: solid; 582 584 } … … 3276 3278 } 3277 3279 3278 3280 #post-status-info { 3281 border-collapse: separate; 3279 3282 border-width: 0 1px 1px; 3280 3283 border-style: none solid solid; 3281 3284 width: 100%; … … 3286 3289 } 3287 3290 3288 3291 #post-status-info td { 3292 border-spacing:0; 3289 3293 font-size: 12px; 3290 3294 } 3291 3295 -
wp-admin/edit-form-advanced.php
401 401 'tabfocus_elements' => 'insert-media-button,save-post', 402 402 'editor_height' => 360, 403 403 ) ); ?> 404 <table id="post-status-info" cellspacing="0"><tbody><tr>404 <table id="post-status-info"><tbody><tr> 405 405 <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td> 406 406 <td class="autosave-info"> 407 407 <span class="autosave-message"> </span> -
wp-admin/import.php
77 77 } else { 78 78 uasort($importers, create_function('$a, $b', 'return strnatcasecmp($a[0], $b[0]);')); 79 79 ?> 80 <table class="widefat importers" cellspacing="0">80 <table class="widefat importers"> 81 81 82 82 <?php 83 83 $alt = ''; -
wp-admin/includes/ajax-actions.php
1484 1484 if ( ! $posts ) 1485 1485 wp_die( __('No items found.') ); 1486 1486 1487 $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th class="no-break">'.__('Type').'</th><th class="no-break">'.__('Date').'</th><th class="no-break">'.__('Status').'</th></tr></thead><tbody>';1487 $html = '<table class="widefat"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th class="no-break">'.__('Type').'</th><th class="no-break">'.__('Date').'</th><th class="no-break">'.__('Status').'</th></tr></thead><tbody>'; 1488 1488 foreach ( $posts as $post ) { 1489 1489 $title = trim( $post->post_title ) ? $post->post_title : __( '(no title)' ); 1490 1490 -
wp-admin/includes/class-wp-comments-list-table.php
281 281 $this->display_tablenav( 'top' ); 282 282 283 283 ?> 284 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">284 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>"> 285 285 <thead> 286 286 <tr> 287 287 <?php $this->print_column_headers(); ?> … … 550 550 551 551 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 552 552 ?> 553 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0"style="display:none;">553 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;"> 554 554 <tbody id="the-comment-list"<?php if ( $singular ) echo " data-wp-lists='list:$singular'"; ?>> 555 555 <?php if ( ! $output_empty ) $this->display_rows_or_placeholder(); ?> 556 556 </tbody> -
wp-admin/includes/class-wp-list-table.php
729 729 $this->display_tablenav( 'top' ); 730 730 731 731 ?> 732 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">732 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> 733 733 <thead> 734 734 <tr> 735 735 <?php $this->print_column_headers(); ?> … … 806 806 $this->display_rows(); 807 807 } else { 808 808 list( $columns, $hidden ) = $this->get_column_info(); 809 echo '<tr class=" no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">';809 echo '<tr class="alternate no-items"><td class="colspanchange" colspan="' . $this->get_column_count() . '">'; 810 810 $this->no_items(); 811 811 echo '</td></tr>'; 812 812 } -
wp-admin/includes/media.php
1872 1872 <form enctype="multipart/form-data" method="post" action="<?php echo esc_url( $form_action_url ); ?>" class="<?php echo $form_class; ?>" id="gallery-form"> 1873 1873 <?php wp_nonce_field('media-form'); ?> 1874 1874 <?php //media_upload_form( $errors ); ?> 1875 <table class="widefat" cellspacing="0">1875 <table class="widefat"> 1876 1876 <thead><tr> 1877 1877 <th><?php _e('Media'); ?></th> 1878 1878 <th class="order-head"><?php _e('Order'); ?></th> -
wp-admin/includes/meta-boxes.php
841 841 */ 842 842 function link_xfn_meta_box($link) { 843 843 ?> 844 <table class="links-table" cellspacing="0">844 <table class="links-table"> 845 845 <tr> 846 846 <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th> 847 847 <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
212 212 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-plugins" class="upgrade"> 213 213 <?php wp_nonce_field('upgrade-core'); ?> 214 214 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p> 215 <table class="widefat" cellspacing="0"id="update-plugins-table">215 <table class="widefat" id="update-plugins-table"> 216 216 <thead> 217 217 <tr> 218 218 <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></th> … … 290 290 <form method="post" action="<?php echo esc_url( $form_action ); ?>" name="upgrade-themes" class="upgrade"> 291 291 <?php wp_nonce_field('upgrade-core'); ?> 292 292 <p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p> 293 <table class="widefat" cellspacing="0"id="update-themes-table">293 <table class="widefat" id="update-themes-table"> 294 294 <thead> 295 295 <tr> 296 296 <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></th>