Ticket #33596: 33596.2.patch
File 33596.2.patch, 1.9 KB (added by , 5 years ago) |
---|
-
src/wp-admin/css/list-tables.css
1825 1825 text-align: left; 1826 1826 } 1827 1827 1828 #comments-form .fixed .column-author { 1828 #comments-form .fixed .column-author, 1829 #commentsdiv .fixed .column-author { 1829 1830 display: none !important; 1830 1831 } 1831 1832 … … 1980 1981 margin: 0 6px 0 0; 1981 1982 } 1982 1983 1984 #edithead .inside, 1985 #commentsdiv #edithead .inside { 1986 float: none; 1987 text-align: left; 1988 padding: 3px 5px; 1989 } 1990 1991 #commentsdiv #edithead .inside input, 1992 #edithead .inside input { 1993 width: 100%; 1994 } 1995 1996 #edithead label { 1997 display: block; 1998 } 1999 1983 2000 #bulk-titles div { 1984 2001 margin: 0.8em 0.3em; 1985 2002 } -
src/wp-admin/includes/template.php
490 490 ?> 491 491 <form method="get"> 492 492 <?php if ( $table_row ) : ?> 493 <table style="display:none;"><tbody id="com-reply"><tr id="replyrow" style="display:none;"><td colspan="<?php echo $wp_list_table->get_column_count(); ?>" class="colspanchange"> 493 <table style="display:none;"><tbody id="com-reply"><tr id="replyrow" class="inline-edit-row" style="display:none;"><td colspan="<?php echo $wp_list_table->get_column_count(); ?>" class="colspanchange"> 494 <?php echo $wp_list_table->get_column_count(); ?> 494 495 <?php else : ?> 495 496 <div id="com-reply" style="display:none;"><div id="replyrow" style="display:none;"> 496 497 <?php endif; ?> … … 767 768 function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) { 768 769 global $wp_locale; 769 770 $post = get_post(); 770 771 771 772 if ( $for_post ) 772 773 $edit = ! ( in_array($post->post_status, array('draft', 'pending') ) && (!$post->post_date_gmt || '0000-00-00 00:00:00' == $post->post_date_gmt ) ); 773 774