Changeset 1909
- Timestamp:
- 09/24/2015 05:31:33 AM (10 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/parsed-content.php
r1847 r1909 85 85 <tr valign="top"> 86 86 <th scope="row"> 87 <label for="excerpt"><?php _e( 'Parsed Description:', 'wporg' ); ?></label>87 <label for="excerpt"><?php _e( 'Parsed Summary:', 'wporg' ); ?></label> 88 88 </th> 89 89 <td> 90 90 <div class="wporg_parsed_readonly <?php echo $ticket ? 'hidden' : ''; ?>"><?php echo apply_filters( 'the_content', $post->post_excerpt ); ?></div> 91 <textarea rows=" 1" cols="40" name="excerpt" id="excerpt" class="wporg_parsed_content <?php echo $ticket ? '' : 'hidden'; ?>"><?php echo $post->post_excerpt; ?></textarea>91 <textarea rows="2" cols="40" name="excerpt" class="wporg_parsed_content <?php echo $ticket ? '' : 'hidden'; ?>"><?php echo $post->post_excerpt; ?></textarea> 92 92 </td> 93 93 </tr><!-- .wporg_parsed_content --> 94 94 <tr valign="top" data-id="<?php the_id(); ?>"> 95 95 <th scope="row"> 96 <label for="wporg_parsed_content"><?php _e( 'Parsed Summary:', 'wporg' ); ?></label>96 <label for="wporg_parsed_content"><?php _e( 'Parsed Description:', 'wporg' ); ?></label> 97 97 </th> 98 98 <td> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/scss/admin.scss
r1846 r1909 76 76 } 77 77 } 78 79 /* Parsed Content Meta Box */ 80 .wporg_parsed_content { 81 width: 100%; 82 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/stylesheets/admin.css
r1846 r1909 71 71 margin-top: 0; 72 72 } 73 74 /* Parsed Content Meta Box */ 75 .wporg_parsed_content { 76 width: 100%; 77 }
Note: See TracChangeset
for help on using the changeset viewer.