Make WordPress Core

Ticket #21283: 21283.3.diff

File 21283.3.diff, 6.6 KB (added by lessbloat, 12 years ago)
  • wp-includes/class-wp-customize-section.php

     
    8080        protected function render() {
    8181                ?>
    8282                <li id="customize-section-<?php echo esc_attr( $this->id ); ?>" class="control-section customize-section">
    83                         <h3 class="customize-section-title" title="<?php echo esc_attr( $this->description ); ?>"><?php echo esc_html( $this->title ); ?></h3>
     83                        <h3 class="customize-section-title" tabindex="0" title="<?php echo esc_attr( $this->description ); ?>"><?php echo esc_html( $this->title ); ?></h3>
    8484                        <ul class="customize-section-content">
    8585                                <?php
    8686                                foreach ( $this->controls as $control )
  • wp-includes/class-wp-customize-control.php

     
    521521                        <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
    522522
    523523                        <div class="customize-control-content">
    524                                 <div class="dropdown preview-thumbnail">
     524                                <div class="dropdown preview-thumbnail" tabindex="0">
    525525                                        <div class="dropdown-content">
    526526                                                <?php if ( empty( $src ) ): ?>
    527527                                                        <img style="display:none;" />
     
    537537                        <div class="library">
    538538                                <ul>
    539539                                        <?php foreach ( $this->tabs as $id => $tab ): ?>
    540                                                 <li data-customize-tab='<?php echo esc_attr( $id ); ?>'>
     540                                                <li data-customize-tab='<?php echo esc_attr( $id ); ?>' tabindex='0'>
    541541                                                        <?php echo esc_html( $tab['label'] ); ?>
    542542                                                </li>
    543543                                        <?php endforeach; ?>
  • wp-admin/customize.php

     
    8383                        $cannot_expand = ! ( $screenshot || $wp_customize->theme()->get('Description') );
    8484                ?>
    8585
    86                 <div class="wp-full-overlay-sidebar-content">
     86                <div class="wp-full-overlay-sidebar-content" tabindex="-1">
    8787                        <div id="customize-info" class="customize-section<?php if ( $cannot_expand ) echo ' cannot-expand'; ?>">
    88                                 <div class="customize-section-title">
     88                                <div class="customize-section-title" tabindex="0">
    8989                                        <span class="preview-notice"><?php
    9090                                                /* translators: %s is the theme name in the Customize/Live Preview pane */
    9191                                                echo sprintf( __( 'You are previewing %s' ), '<strong class="theme-name">' . $wp_customize->theme()->display('Name') . '</strong>' );
  • wp-admin/js/customize-controls.js

     
    9494                                        else
    9595                                                statuses.hide();
    9696                                };
    97 
     97                       
     98                        var toggleFreeze = false;
     99                       
    98100                        // Support the .dropdown class to open/close complex elements
    99                         this.container.on( 'click', '.dropdown', function( event ) {
     101                        this.container.on( 'click focus', '.dropdown', function( event ) {
    100102                                event.preventDefault();
    101                                 control.container.toggleClass('open');
     103                               
     104                                if (!toggleFreeze)
     105                                        control.container.toggleClass('open');
     106                               
     107                                // Don't want to fire focus and click at same time
     108                                toggleFreeze = true;
     109                                setTimeout(function () {
     110                                        toggleFreeze = false;
     111                                }, 400);
    102112                        });
    103113
    104114                        this.setting.bind( update );
     
    210220                        });
    211221
    212222                        // Bind tab switch events
    213                         this.library.children('ul').on( 'click', 'li', function( event ) {
     223                        this.library.children('ul').on( 'click keydown', 'li', function( event ) {
     224                               
     225                                if ( event.type === 'keydown' &&  13 !== event.which )
     226                                        return;
     227                               
    214228                                var id  = $(this).data('customizeTab'),
    215229                                        tab = control.tabs[ id ];
    216230
     
    814828                }());
    815829
    816830                // Temporary accordion code.
    817                 $('.customize-section-title').click( function( event ) {
     831                var accordianFrozen = false;
     832                $('.customize-section-title').bind('click keydown', function( event ) {
     833                       
     834                        if ( event.type === 'keydown' &&  13 !== event.which ) // enter
     835                                        return;
     836                       
    818837                        var clicked = $( this ).parents( '.customize-section' );
    819838
    820                         if ( clicked.hasClass('cannot-expand') )
     839                        if ( clicked.hasClass('cannot-expand') || accordianFrozen )
    821840                                return;
     841                       
     842                        // Don't want to fire focus and click at same time
     843                        accordianFrozen = true;
     844                        setTimeout(function () {
     845                                accordianFrozen = false;
     846                        }, 400);
     847                       
     848                        // Scroll up if on #customize-section-title_tagline
     849                        if ('customize-section-title_tagline' === clicked.attr('id'))
     850                                $('.wp-full-overlay-sidebar-content').scrollTop(0);
    822851
    823852                        $( '.customize-section' ).not( clicked ).removeClass( 'open' );
    824853                        clicked.toggleClass( 'open' );
     
    829858                $('#save').click( function( event ) {
    830859                        previewer.save();
    831860                        event.preventDefault();
     861                }).keydown( function( event ) {
     862                        if ( 13 === event.which ) // enter
     863                                previewer.save();
     864                        event.preventDefault();
    832865                });
     866               
     867                $('.back').keydown( function( event ) {
     868                        if ( 9 === event.which ) // tab
     869                                return;
     870                        var thisHref = $(this).attr('href');
     871                        if ( 13 === event.which ) // enter
     872                                window.location = thisHref;
     873                        event.preventDefault();
     874                });
    833875
    834876                $('.collapse-sidebar').click( function( event ) {
    835877                        overlay.toggleClass( 'collapsed' ).toggleClass( 'expanded' );
     
    948990                });
    949991
    950992                api.trigger( 'ready' );
     993               
     994                // Make sure left column gets focus
     995                $('.back').focus();
     996                setTimeout(function () {
     997                        $('.back').focus();
     998                }, 800);
     999
    9511000        });
    9521001
    9531002})( wp, jQuery );
     1003 No newline at end of file
  • wp-admin/css/customize-controls.css

     
    6767
    6868.control-section:hover .customize-section-title,
    6969.control-section .customize-section-title:hover,
    70 .control-section.open .customize-section-title {
     70.control-section.open .customize-section-title,
     71.customize-section-title:focus {
    7172        color: #fff;
    7273        text-shadow: 0 -1px 0 #333;
    7374        background: #808080;
     
    126127        color: #999;
    127128}
    128129
     130#customize-info .customize-section-title:focus .preview-notice {
     131        color: #ccc;
     132        text-shadow: 0 -1px 0 #333;
     133}
     134
    129135#customize-info .theme-name {
    130136        font-size: 20px;
    131137        font-weight: 200;
     
    135141        text-shadow: 0 1px 0 #fff;
    136142}
    137143
     144#customize-info .customize-section-title:focus .theme-name {
     145        color: #fff;
     146        text-shadow: 0 -1px 0 #333;
     147}
     148
    138149#customize-info .theme-screenshot {
    139150        width: 258px;
    140151        border: 1px solid #ccc;