Changeset 7427
- Timestamp:
- 03/20/08 21:40:17 (10 months ago)
- Files:
-
- trunk/wp-admin/edit-attachment-rows.php (modified) (2 diffs)
- trunk/wp-admin/edit-post-rows.php (modified) (2 diffs)
- trunk/wp-admin/includes/template.php (modified) (2 diffs)
- trunk/wp-admin/wp-admin.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/edit-attachment-rows.php
r7366 r7427 100 100 case 'comments': 101 101 ?> 102 <td class="num"> 102 <td class="num"><div class="post-com-count-wrapper"> 103 103 <?php 104 104 $left = get_pending_comments_num( $post->ID ); … … 110 110 echo '</strong>'; 111 111 ?> 112 </ td>112 </div></td> 113 113 <?php 114 114 break; trunk/wp-admin/edit-post-rows.php
r7410 r7427 112 112 case 'comments': 113 113 ?> 114 <td class="num"> 114 <td class="num"><div class="post-com-count-wrapper"> 115 115 <?php 116 116 $left = get_pending_comments_num( $post->ID ); … … 122 122 echo '</strong>'; 123 123 ?> 124 </ td>124 </div></td> 125 125 <?php 126 126 break; trunk/wp-admin/includes/template.php
r7374 r7427 408 408 case 'comments': 409 409 ?> 410 <td class="num"> 410 <td class="num"><div class="post-com-count-wrapper"> 411 411 <?php 412 412 $left = get_pending_comments_num( $page->ID ); … … 418 418 echo '</strong>'; 419 419 ?> 420 </ td>420 </div></td> 421 421 <?php 422 422 break; trunk/wp-admin/wp-admin.css
r7422 r7427 699 699 } 700 700 701 .post-com-count-wrapper { 702 min-width: 22px; 703 } 704 701 705 .post-com-count { 702 706 height: 1.3em; … … 706 710 padding: 0 0 5px; 707 711 cursor: pointer; 708 background-position: center -8 0px;712 background-position: center -81px; 709 713 background-repeat: no-repeat; 710 714 } … … 723 727 724 728 strong .post-com-count { 725 background-position: center -5 5px;729 background-position: center -56px; 726 730 } 727 731
