Changeset 7653
- Timestamp:
- 04/14/2008 04:33:26 PM (16 years ago)
- Location:
- branches/2.5/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.5/wp-admin/css/media.css
r7585 r7653 138 138 } 139 139 140 t body.media-item-info tr {140 thead.media-item-info tr { 141 141 background-color: transparent; 142 142 } 143 t body.media-item-info th, tbody.media-item-info td {143 thead.media-item-info th, thead.media-item-info td { 144 144 border: none; 145 145 margin: 0; 146 146 } 147 147 148 .form-table t body.media-item-info {148 .form-table thead.media-item-info { 149 149 border: 8px solid #fff; 150 150 } -
branches/2.5/wp-admin/includes/media.php
r7650 r7653 667 667 <div class='filename new'>$display_title</div> 668 668 <table class='slidetoggle describe $class'> 669 <t bodyclass='media-item-info'>669 <thead class='media-item-info'> 670 670 <tr> 671 671 <td class='A1B1' rowspan='4'><img class='thumbnail' src='$thumb_url' alt='' /></td> 672 672 <td>$filename</td> 673 673 </tr> 674 <t d>$post->post_mime_type</td></tr>674 <tr><td>$post->post_mime_type</td></tr> 675 675 <tr><td>" . mysql2date($post->post_date, get_option('time_format')) . "</td></tr> 676 <tr><td>" . apply_filters('media_meta', '', $post) . "</t r></td>677 </t body>676 <tr><td>" . apply_filters('media_meta', '', $post) . "</td></tr> 677 </thead> 678 678 <tbody>\n"; 679 679 … … 746 746 if ( !empty($form_fields['_final']) ) 747 747 $item .= "\t\t<tr class='final'><td colspan='2'>{$form_fields['_final']}</td></tr>\n"; 748 $item .= "\t</tbody>\n"; 748 749 $item .= "\t</table>\n"; 749 750
Note: See TracChangeset
for help on using the changeset viewer.