Changeset 46195
- Timestamp:
- 09/20/2019 11:40:06 AM (6 years ago)
- Location:
- trunk/src/wp-content/themes/twentyeleven
- Files:
-
- 4 edited
-
functions.php (modified) (1 diff)
-
header.php (modified) (1 diff)
-
rtl.css (modified) (4 diffs)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r46117 r46195 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 ); -
trunk/src/wp-content/themes/twentyeleven/header.php
r45932 r46195 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' ) ); ?> -
trunk/src/wp-content/themes/twentyeleven/rtl.css
r43125 r46195 109 109 110 110 /* Assistive text */ 111 #accessa.assistive-text:focus {112 left: auto; 113 right: 7.6%;111 a.assistive-text:focus { 112 left: auto; 113 right: 6px; 114 114 } 115 115 … … 392 392 border-left: none; 393 393 border-right: 1px solid #ddd; 394 -moz-border-radius: 3px 0 0 3px;394 -moz-border-radius: 3px 0 0 3px; 395 395 border-radius: 3px 0 0 3px; 396 396 } … … 548 548 #respond .comment-form-author .required, 549 549 #respond .comment-form-email .required { 550 left: auto;551 right: 95%;550 left: auto; 551 right: 95%; 552 552 } 553 553 #content .gallery-columns-3 .gallery-item { … … 568 568 @media print { 569 569 #primary { 570 float: right;570 float: right; 571 571 } 572 572 /* Comments */ 573 573 .commentlist .avatar { 574 left: auto;575 right: 2.2em;574 left: auto; 575 right: 2.2em; 576 576 } 577 577 .commentlist li.comment .comment-meta { 578 margin-left: 0;579 margin-right: 50px;578 margin-left: 0; 579 margin-right: 50px; 580 580 } 581 581 } -
trunk/src/wp-content/themes/twentyeleven/style.css
r45289 r46195 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; 520 } 521 525 z-index: 100000; 526 /* Above WP toolbar. */ 527 } 522 528 523 529 /* =Header
Note: See TracChangeset
for help on using the changeset viewer.