Changeset 27036
- Timestamp:
- 01/26/2014 08:27:21 PM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/wp-admin.css
r27020 r27036 4322 4322 #post-status-info { 4323 4323 width: 100%; 4324 border-spacing: 0; 4324 4325 } 4325 4326 … … 5441 5442 table.links-table { 5442 5443 width: 100%; 5444 border-spacing: 0; 5443 5445 } 5444 5446 -
trunk/src/wp-admin/edit-form-advanced.php
r26995 r27036 488 488 ), 489 489 ) ); ?> 490 <table id="post-status-info" cellspacing="0"><tbody><tr>490 <table id="post-status-info"><tbody><tr> 491 491 <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td> 492 492 <td class="autosave-info"> -
trunk/src/wp-admin/import.php
r26518 r27036 77 77 uasort($importers, create_function('$a, $b', 'return strnatcasecmp($a[0], $b[0]);')); 78 78 ?> 79 <table class="widefat importers" cellspacing="0">79 <table class="widefat importers"> 80 80 81 81 <?php -
trunk/src/wp-admin/includes/ajax-actions.php
r26995 r27036 1420 1420 wp_die( __('No items found.') ); 1421 1421 1422 $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>';1422 $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>'; 1423 1423 foreach ( $posts as $post ) { 1424 1424 $title = trim( $post->post_title ) ? $post->post_title : __( '(no title)' ); -
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r26961 r27036 317 317 318 318 ?> 319 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">319 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>"> 320 320 <thead> 321 321 <tr> … … 603 603 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 604 604 ?> 605 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0"style="display:none;">605 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;"> 606 606 <tbody id="the-comment-list"<?php if ( $singular ) echo " data-wp-lists='list:$singular'"; ?>> 607 607 <?php if ( ! $output_empty ) $this->display_rows_or_placeholder(); ?> -
trunk/src/wp-admin/includes/class-wp-list-table.php
r26401 r27036 774 774 775 775 ?> 776 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">776 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> 777 777 <thead> 778 778 <tr> -
trunk/src/wp-admin/includes/media.php
r27029 r27036 2140 2140 <?php wp_nonce_field('media-form'); ?> 2141 2141 <?php //media_upload_form( $errors ); ?> 2142 <table class="widefat" cellspacing="0">2142 <table class="widefat"> 2143 2143 <thead><tr> 2144 2144 <th><?php _e('Media'); ?></th> -
trunk/src/wp-admin/includes/meta-boxes.php
r26918 r27036 901 901 function link_xfn_meta_box($link) { 902 902 ?> 903 <table class="links-table" cellspacing="0">903 <table class="links-table"> 904 904 <tr> 905 905 <th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th> -
trunk/src/wp-admin/nav-menus.php
r26634 r27036 551 551 <div id="menu-locations-wrap"> 552 552 <form method="post" action="<?php echo esc_url( add_query_arg( array( 'action' => 'locations' ), admin_url( 'nav-menus.php' ) ) ); ?>"> 553 <table class="widefat fixed" cellspacing="0"id="menu-locations-table">553 <table class="widefat fixed" id="menu-locations-table"> 554 554 <thead> 555 555 <tr> -
trunk/src/wp-admin/update-core.php
r26894 r27036 221 221 <?php wp_nonce_field('upgrade-core'); ?> 222 222 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p> 223 <table class="widefat" cellspacing="0"id="update-plugins-table">223 <table class="widefat" id="update-plugins-table"> 224 224 <thead> 225 225 <tr> … … 299 299 <?php wp_nonce_field('upgrade-core'); ?> 300 300 <p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p> 301 <table class="widefat" cellspacing="0"id="update-themes-table">301 <table class="widefat" id="update-themes-table"> 302 302 <thead> 303 303 <tr>
Note: See TracChangeset
for help on using the changeset viewer.