Ticket #30914: 30914.2.patch
| File 30914.2.patch, 5.6 KB (added by , 11 years ago) |
|---|
-
src/wp-admin/css/list-tables.css
475 475 padding: 7px 7px 8px 10px; 476 476 } 477 477 478 th.manage-column a,479 th.sortable a:hover,480 th.sortable a:active,481 th.sortable a:focus {482 color: #333;483 }484 485 th.sortable a:focus {486 background: #e1e1e1;487 }488 489 478 .fixed .column-comments.sortable a, 490 479 .fixed .column-comments.sorted a { 491 480 padding: 8px 0; -
src/wp-admin/includes/class-wp-comments-list-table.php
336 336 </tr> 337 337 </thead> 338 338 339 <tfoot>340 <tr>341 <?php $this->print_column_headers( false ); ?>342 </tr>343 </tfoot>344 345 339 <tbody id="the-comment-list" data-wp-lists="list:comment"> 346 340 <?php $this->display_rows_or_placeholder(); ?> 347 341 </tbody> … … 349 343 <tbody id="the-extra-comment-list" data-wp-lists="list:comment" style="display: none;"> 350 344 <?php $this->items = $this->extra_items; $this->display_rows(); ?> 351 345 </tbody> 346 347 <tfoot> 348 <tr> 349 <?php $this->print_column_headers( false ); ?> 350 </tr> 351 </tfoot> 352 352 353 </table> 353 354 <?php 354 355 -
src/wp-admin/includes/class-wp-list-table.php
927 927 </tr> 928 928 </thead> 929 929 930 <tbody id="the-list"<?php 931 if ( $singular ) { 932 echo " data-wp-lists='list:$singular'"; 933 } ?>> 934 <?php $this->display_rows_or_placeholder(); ?> 935 </tbody> 936 930 937 <tfoot> 931 938 <tr> 932 939 <?php $this->print_column_headers( false ); ?> … … 933 940 </tr> 934 941 </tfoot> 935 942 936 <tbody id="the-list"<?php937 if ( $singular ) {938 echo " data-wp-lists='list:$singular'";939 } ?>>940 <?php $this->display_rows_or_placeholder(); ?>941 </tbody>942 943 </table> 943 944 <?php 944 945 $this->display_tablenav( 'bottom' ); -
src/wp-admin/includes/class-wp-posts-list-table.php
334 334 } 335 335 336 336 $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all'; 337 if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) ) 338 $posts_columns['comments'] = '<span class="vers"><span title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></span></span>'; 337 if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) ) { 338 $posts_columns['comments'] = '<span class="vers comment-grey-bubble" title="' . esc_attr__( 'Comments' ) . '"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>'; 339 } 339 340 340 341 $posts_columns['date'] = __( 'Date' ); 341 342 -
src/wp-admin/nav-menus.php
573 573 <th scope="col" class="manage-column column-menus"><?php _e( 'Assigned Menu' ); ?></th> 574 574 </tr> 575 575 </thead> 576 <!--<tfoot>577 <tr>578 <th scope="col" class="manage-column column-locations"><?php _e( 'Theme Location' ); ?></th>579 <th scope="col" class="manage-column column-menus"><?php _e( 'Assigned Menu' ); ?></th>580 </tr>581 </tfoot>-->582 576 <tbody class="menu-locations"> 583 577 <?php foreach ( $locations as $_location => $_name ) { ?> 584 578 <tr class="menu-locations-row"> -
src/wp-admin/update-core.php
231 231 </tr> 232 232 </thead> 233 233 234 <tfoot>235 <tr>236 <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th>237 <th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e('Select All'); ?></label></th>238 </tr>239 </tfoot>240 234 <tbody class="plugins"> 241 235 <?php 242 236 foreach ( (array) $plugins as $plugin_file => $plugin_data) { … … 282 276 } 283 277 ?> 284 278 </tbody> 279 280 <tfoot> 281 <tr> 282 <th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></th> 283 <th scope="col" class="manage-column"><label for="plugins-select-all-2"><?php _e( 'Select All' ); ?></label></th> 284 </tr> 285 </tfoot> 285 286 </table> 286 287 <p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p> 287 288 </form> … … 313 314 </tr> 314 315 </thead> 315 316 316 <tfoot>317 <tr>318 <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th>319 <th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e('Select All'); ?></label></th>320 </tr>321 </tfoot>322 317 <tbody class="plugins"> 323 318 <?php 324 319 foreach ( $themes as $stylesheet => $theme ) { … … 330 325 } 331 326 ?> 332 327 </tbody> 328 329 <tfoot> 330 <tr> 331 <th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></th> 332 <th scope="col" class="manage-column"><label for="themes-select-all-2"><?php _e( 'Select All' ); ?></label></th> 333 </tr> 334 </tfoot> 333 335 </table> 334 336 <p><input id="upgrade-themes-2" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p> 335 337 </form>