Make WordPress Core

Ticket #28655: 28655.2.patch

File 28655.2.patch, 2.8 KB (added by gauravmittal1995, 10 years ago)
  • wp-admin/js/customize-controls.js

     
    10451045
    10461046                                if ( ! activated() ) {
    10471047                                        save.val( api.l10n.activate ).prop( 'disabled', false );
    1048                                         back.text( api.l10n.cancel );
    1049 
     1048                                       
    10501049                                } else if ( saved() ) {
    10511050                                        save.val( api.l10n.saved ).prop( 'disabled', true );
    10521051                                        back.text( api.l10n.close );
    10531052
    10541053                                } else {
    10551054                                        save.val( api.l10n.save ).prop( 'disabled', false );
    1056                                         back.text( api.l10n.cancel );
    10571055                                }
    10581056                        });
    10591057
     
    11971195
    11981196                api.trigger( 'ready' );
    11991197
    1200                 // Make sure left column gets focus
    1201                 topFocus = $('.back');
    1202                 topFocus.focus();
    1203                 setTimeout(function () {
    1204                         topFocus.focus();
    1205                 }, 200);
    1206 
    12071198        });
    12081199
    12091200})( wp, jQuery );
  • wp-admin/customize.php

     
    108108                                submit_button( $save_text, 'primary save', 'save', false );
    109109                        ?>
    110110                        <span class="spinner"></span>
    111                         <a class="back button" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>">
    112                                 <?php _e( 'Cancel' ); ?>
    113                         </a>
     111                        <a class="back" href="<?php echo esc_url( $return ? $return : admin_url( 'themes.php' ) ); ?>"></a>
    114112                </div>
    115113
    116114                <?php
  • wp-admin/css/customize-controls.css

     
    209209        height: 22px;
    210210}
    211211
     212a.back {
     213        color: #444;
     214        display: block;
     215        position: fixed;
     216        top: 0;
     217        z-index: 99;
     218        left: -48px;
     219        width: 45px;
     220        height: 45px;
     221        padding-right: 2px;
     222        background: #eee;
     223        border-right: 1px solid #ddd;
     224        cursor: pointer;
     225        -webkit-transition: left ease-in-out .18s, color ease-in .1s;
     226        transition: left ease-in-out .18s, color ease-in .1s;
     227}
     228
     229
     230a.back:hover,
     231a.back:focus {
     232        background-color: #0074a2;
     233        color: #fff;
     234        outline: none;
     235}
     236
    212237#customize-header-actions a.back {
    213238        position: relative;
    214239        left: 0;
     
    216241        transition: left ease-in-out .18s;
    217242}
    218243
     244a.back:before {
     245        font: normal 29px/1 dashicons;
     246        content: "\f335";
     247        position: relative;
     248        top: 9px;
     249        left: 9px;
     250}
     251
    219252.in-sub-panel #customize-header-actions a.back {
    220253        left: -120px;
    221254}
     
    223256.wp-full-overlay-sidebar .wp-full-overlay-header {
    224257        -webkit-transition: padding ease-in-out .18s;
    225258        transition: padding ease-in-out .18s;
     259        padding: 0 15px 0 0;
    226260}
    227261
     262.wp-full-overlay-sidebar .wp-full-overlay-header a.back {
     263        margin-top: 0;
     264}
     265
    228266.in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header {
    229267        padding-left: 62px;
    230268}