Make WordPress Core

Ticket #21312: 21312.patch

File 21312.patch, 1.6 KB (added by azaozz, 12 years ago)
  • wp-includes/class-wp-admin-bar.php

     
    348348
    349349                ?>
    350350                <div id="wpadminbar" class="<?php echo $class; ?>" role="navigation">
    351                         <a id="wpadminbar-shortcut" href="#wp-toolbar" tabindex="1"><?php _e('Skip to toolbar'); ?></a>
     351                        <a class="screen-reader-text screen-reader-shortcut" href="#wp-toolbar" tabindex="1"><?php _e('Skip to toolbar'); ?></a>
    352352                        <div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="<?php esc_attr_e('Top navigation toolbar.'); ?>">
    353353                                <?php foreach ( $root->children as $group ) {
    354354                                        $this->_render_group( $group );
    355355                                } ?>
    356356                        </div>
     357                        <a class="screen-reader-text screen-reader-shortcut" href="<?php echo esc_url( wp_logout_url() ); ?>"><?php _e('Log Out'); ?></a>
    357358                </div>
    358359
    359360                <?php
  • wp-includes/css/admin-bar.dev.css

     
    601601}
    602602
    603603/* Skip link */
    604 #wpadminbar #wpadminbar-shortcut,
    605604#wpadminbar .screen-reader-text,
    606605#wpadminbar .screen-reader-text span {
    607606        position: absolute;
     
    612611        overflow: hidden;
    613612}
    614613
    615 #wpadminbar #wpadminbar-shortcut:focus {
     614#wpadminbar .screen-reader-shortcut:focus {
    616615        left: 5px;
    617616        top: 5px;
    618617        height: auto;
     
    628627        line-height: normal;
    629628}
    630629
     630#wpadminbar a.screen-reader-shortcut {
     631        text-decoration: underline;
     632}
     633
    631634/**
    632635 * IE 6-targeted rules
    633636 */