Changeset 34066
- Timestamp:
- 09/11/2015 11:59:30 PM (9 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r34011 r34066 2774 2774 2775 2775 /* Theme/Plugin Editor */ 2776 .alignleft h 3{2776 .alignleft h2 { 2777 2777 margin: 0; 2778 2778 } … … 2802 2802 } 2803 2803 2804 #templateside h 3,2804 #templateside h2, 2805 2805 #postcustomstuff p.submit { 2806 2806 margin: 0; -
trunk/src/wp-admin/theme-editor.php
r32974 r34066 136 136 <div class="fileedit-sub"> 137 137 <div class="alignleft"> 138 <h 3><?php echo $theme->display('Name'); if ( $description ) echo ': ' . $description; ?></h3>138 <h2><?php echo $theme->display( 'Name' ); if ( $description ) echo ': ' . $description; ?></h2> 139 139 </div> 140 140 <div class="alignright"> … … 166 166 if ( $has_templates || $theme->parent() ) : 167 167 ?> 168 <h 3><?php _e('Templates'); ?></h3>168 <h2><?php _e( 'Templates' ); ?></h2> 169 169 <?php if ( $theme->parent() ) : ?> 170 170 <p class="howto"><?php printf( __( 'This child theme inherits templates from a parent theme, %s.' ), '<a href="' . self_admin_url('theme-editor.php?theme=' . urlencode( $theme->get_template() ) ) . '">' . $theme->parent()->display('Name') . '</a>' ); ?></p> … … 176 176 foreach ( $allowed_files as $filename => $absolute_filename ) : 177 177 if ( 'style.css' == $filename ) 178 echo "\t</ul>\n\t<h 3>" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "</h3>\n\t<ul>\n";178 echo "\t</ul>\n\t<h2>" . _x( 'Styles', 'Theme stylesheets in theme editor' ) . "</h2>\n\t<ul>\n"; 179 179 180 180 $file_description = get_file_description( $absolute_filename );
Note: See TracChangeset
for help on using the changeset viewer.