Ticket #21312: 21312-2.patch
File 21312-2.patch, 2.4 KB (added by , 12 years ago) |
---|
-
wp-admin/admin-header.php
110 110 ?> 111 111 112 112 <div id="wpwrap"> 113 <a tabindex="1" href="#wpbody-content" class="screen-reader- text screen-reader-shortcut"><?php _e('Skip to main content'); ?></a>113 <a tabindex="1" href="#wpbody-content" class="screen-reader-shortcut"><?php _e('Skip to main content'); ?></a> 114 114 <?php require(ABSPATH . 'wp-admin/menu-header.php'); ?> 115 115 <div id="wpcontent"> 116 116 -
wp-admin/css/wp-admin.css
199 199 overflow: hidden; 200 200 } 201 201 202 .screen-reader-shortcut { 203 position: absolute; 204 top: -1000em; 205 } 206 202 207 .screen-reader-shortcut:focus { 203 208 left: 6px; 204 209 top: -21px; -
wp-includes/class-wp-admin-bar.php
348 348 349 349 ?> 350 350 <div id="wpadminbar" class="<?php echo $class; ?>" role="navigation"> 351 <a class="screen-reader- text screen-reader-shortcut" href="#wp-toolbar" tabindex="1"><?php _e('Skip to toolbar'); ?></a>351 <a class="screen-reader-shortcut" href="#wp-toolbar" tabindex="1"><?php _e('Skip to toolbar'); ?></a> 352 352 <div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="<?php esc_attr_e('Top navigation toolbar.'); ?>" tabindex="0"> 353 353 <?php foreach ( $root->children as $group ) { 354 354 $this->_render_group( $group ); 355 355 } ?> 356 356 </div> 357 <a class="screen-reader- text screen-reader-shortcut" href="<?php echo esc_url( wp_logout_url() ); ?>"><?php _e('Log Out'); ?></a>357 <a class="screen-reader-shortcut" href="<?php echo esc_url( wp_logout_url() ); ?>"><?php _e('Log Out'); ?></a> 358 358 </div> 359 359 360 360 <?php -
wp-includes/css/admin-bar.css
625 625 overflow: hidden; 626 626 } 627 627 628 #wpadminbar .screen-reader-shortcut { 629 position: absolute; 630 top: -1000em; 631 } 632 628 633 #wpadminbar .screen-reader-shortcut:focus { 629 634 left: 6px; 630 635 top: 7px;