Ticket #47891: 47891.diff
File 47891.diff, 4.4 KB (added by , 5 years ago) |
---|
-
src/wp-content/themes/twentyeleven/functions.php
912 912 do_action( 'wp_body_open' ); 913 913 } 914 914 endif; 915 916 /** 917 * Include a skip to content link at the top of the page so that users can bypass the menu. 918 * 919 * @since Twenty Eleven 3.4 920 */ 921 function twentyeleven_skip_link() { 922 echo '<div class="skip-link"><a class="assistive-text" href="#content">' . esc_html__( 'Skip to primary content', 'twentyeleven' ) . '</a></div>'; 923 if ( ! is_singular() ) { 924 echo '<div class="skip-link"><a class="assistive-text" href="#secondary">' . esc_html__( 'Skip to secondary content', 'twentyeleven' ) . '</a></div>'; 925 } 926 } 927 add_action( 'wp_body_open', 'twentyeleven_skip_link', 5 ); -
src/wp-content/themes/twentyeleven/header.php
145 145 146 146 <nav id="access" role="navigation"> 147 147 <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3> 148 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>149 <div class="skip-link"><a class="assistive-text" href="#content"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>150 <?php if ( ! is_singular() ) : ?>151 <div class="skip-link"><a class="assistive-text" href="#secondary"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div>152 <?php endif; ?>153 148 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary location is the one used. If one isn't assigned, the menu with the lowest ID is used. */ ?> 154 149 <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> 155 150 </nav><!-- #access --> -
src/wp-content/themes/twentyeleven/rtl.css
108 108 } 109 109 110 110 /* Assistive text */ 111 #accessa.assistive-text:focus {111 a.assistive-text:focus { 112 112 left: auto; 113 right: 7.6%;113 right: 6px; 114 114 } 115 115 116 116 /* =Header … … 391 391 .commentlist .children li.comment { 392 392 border-left: none; 393 393 border-right: 1px solid #ddd; 394 -moz-border-radius: 3px 0 394 -moz-border-radius: 3px 0 0 3px; 395 395 border-radius: 3px 0 0 3px; 396 396 } 397 397 .commentlist .children li.comment .comment-meta { … … 547 547 /* Use the available space in the smaller comment form */ 548 548 #respond .comment-form-author .required, 549 549 #respond .comment-form-email .required { 550 551 550 left: auto; 551 right: 95%; 552 552 } 553 553 #content .gallery-columns-3 .gallery-item { 554 554 padding-right: 0; … … 567 567 568 568 @media print { 569 569 #primary { 570 570 float: right; 571 571 } 572 572 /* Comments */ 573 573 .commentlist .avatar { 574 575 574 left: auto; 575 right: 2.2em; 576 576 } 577 577 .commentlist li.comment .comment-meta { 578 579 578 margin-left: 0; 579 margin-right: 50px; 580 580 } 581 581 } 582 582 -
src/wp-content/themes/twentyeleven/style.css
502 502 height: 1px; 503 503 width: 1px; 504 504 } 505 #access a.assistive-text:focus, 505 506 a.assistive-text:focus, 506 507 .screen-reader-text:hover, 507 508 .screen-reader-text:active, 508 509 .screen-reader-text:focus { 509 background: #eee; 510 border-bottom: 1px solid #ddd; 511 color: #1982d1; 510 background-color: #f1f1f1; 511 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 512 512 clip: auto !important; 513 font-size: 12px; 513 clip-path: none; 514 color: #21759b; 515 display: block; 516 font-size: 14px; 517 font-weight: bold; 514 518 height: auto; 515 position: absolute; 516 text-decoration: underline; 517 top: 0; 518 left: 7.6%; 519 left: 6px; 520 line-height: normal; 521 padding: 17px 22px 15px; 522 text-decoration: none; 523 top: 7px; 519 524 width: auto; 525 z-index: 100000; 526 /* Above WP toolbar. */ 520 527 } 521 528 522 523 529 /* =Header 524 530 ----------------------------------------------- */ 525 531