Changeset 23417 for trunk/wp-admin/customize.php
- Timestamp:
- 02/14/2013 10:58:04 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/customize.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/customize.php
r22948 r23417 36 36 wp_enqueue_script( 'customize-controls' ); 37 37 wp_enqueue_style( 'customize-controls' ); 38 39 wp_enqueue_script( 'accordion' ); 38 40 39 41 do_action( 'customize_controls_enqueue_scripts' ); … … 90 92 91 93 <div class="wp-full-overlay-sidebar-content" tabindex="-1"> 92 <div id="customize-info" class=" customize-section<?php if ( $cannot_expand ) echo ' cannot-expand'; ?>">93 <div class=" customize-section-title" aria-label="<?php esc_attr_e( 'Theme Customizer Options' ); ?>" tabindex="0">94 <div id="customize-info" class="accordion-section<?php if ( $cannot_expand ) echo ' cannot-expand'; ?>"> 95 <div class="accordion-section-title" aria-label="<?php esc_attr_e( 'Theme Customizer Options' ); ?>" tabindex="0"> 94 96 <span class="preview-notice"><?php 95 97 /* translators: %s is the theme name in the Customize/Live Preview pane */ … … 98 100 </div> 99 101 <?php if ( ! $cannot_expand ) : ?> 100 <div class=" customize-section-content">102 <div class="accordion-section-content"> 101 103 <?php if ( $screenshot ) : ?> 102 104 <img class="theme-screenshot" src="<?php echo esc_url( $screenshot ); ?>" /> … … 110 112 </div> 111 113 112 <div id="customize-theme-controls" ><ul>114 <div id="customize-theme-controls" class="accordion-container"><ul> 113 115 <?php 114 116 foreach ( $wp_customize->sections() as $section )
Note: See TracChangeset
for help on using the changeset viewer.