Ticket #22086: 22086.patch
File 22086.patch, 7.9 KB (added by , 8 years ago) |
---|
-
wp-admin/css/colors-classic.css
147 147 .widefat { 148 148 border-color: #D1E5EE; 149 149 background-color: #fff; 150 border-collapse: collapse; 151 padding:0px 0px 0px 0px; 150 152 } 151 153 152 154 div.dashboard-widget-error { … … 673 675 .widefat th { 674 676 border-top-color: #fff; 675 677 border-bottom-color: #D0DFE9; 678 padding:0; 679 border-spacing:0px 0px; 676 680 } 677 681 678 682 .widefat th { … … 1022 1026 1023 1027 #post-status-info { 1024 1028 border-color: #d0dfe9 #d1e5ee #d1e5ee; 1029 border-collapse: collapse; 1030 padding:0px 0px 0px 0px; 1025 1031 } 1026 1032 1033 #post-status-info td { 1034 padding:0; 1035 border-spacing:0px 0px; 1036 } 1037 1027 1038 /* TinyMCE */ 1028 1039 1029 1040 .wp-admin .wp-editor-wrap .wp-switch-editor { -
wp-admin/css/colors-fresh.css
136 136 .widefat { 137 137 border-color: #dfdfdf; 138 138 background-color: #f9f9f9; 139 border-collapse: collapse; 140 padding:0px 0px 0px 0px; 139 141 } 140 142 textarea.widefat { 141 143 background-color: #fff; … … 664 666 .widefat th { 665 667 border-top-color: #fff; 666 668 border-bottom-color: #dfdfdf; 669 padding:0; 670 border-spacing:0px 0px; 667 671 } 668 672 669 673 .widefat th { … … 1058 1062 #post-status-info { 1059 1063 border-color: #dfdfdf #ccc #ccc; 1060 1064 background-color: #eaeaea; 1065 border-collapse: collapse; 1066 padding:0px 0px 0px 0px; 1061 1067 } 1062 1068 1069 #post-status-info td { 1070 padding:0; 1071 border-spacing:0px 0px; 1072 } 1073 1063 1074 .editwidget .widget-inside { 1064 1075 border-color: #dfdfdf; 1065 1076 } -
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%" />