Making WordPress.org

Ticket #1484: meta-1484.patch

File meta-1484.patch, 2.1 KB (added by SergeyBiryukov, 9 years ago)
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/header.php

     
    44require WPORGPATH . 'header.php';
    55?>
    66<div id="headline">
     7                <a class="assistive-text skip-link" href="#main"><?php _e( 'Skip to content', 'p2' ); ?></a>
    78        <div class="wrapper">
    89                <h2><a href="<?php echo home_url( '/' ); ?>"><?php bloginfo( 'name' ); ?></a></h2>
    910                                <?php wp_nav_menu( array( 'theme_location' => 'wporg_header_subsite_nav', 'fallback_cb' => '__return_false' ) ); ?>
     
    1516        <?php if ( has_nav_menu( 'primary' ) ) : ?>
    1617        <div role="navigation" class="site-navigation main-navigation">
    1718                <h1 class="assistive-text"><?php _e( 'Menu', 'p2' ); ?></h1>
    18                 <div class="assistive-text skip-link"><a href="#main" title="<?php esc_attr_e( 'Skip to content', 'p2' ); ?>"><?php _e( 'Skip to content', 'p2' ); ?></a></div>
    1919
    2020                <?php wp_nav_menu( array(
    2121                        'theme_location' => 'primary',
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/style.css

     
    363363                margin: 1em 0 0;
    364364        }
    365365}
     366
     367.skip-link {
     368        background-color: #f1f1f1;
     369        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
     370        color: #21759b;
     371        display: block;
     372        font-size: 14px;
     373        font-weight: 700;
     374        left: -9999em;
     375        outline: none;
     376        padding: 15px 23px 14px;
     377        text-decoration: none;
     378        text-transform: none;
     379        top: -9999em;
     380}
     381
     382.skip-link:focus {
     383        clip: auto;
     384        height: auto;
     385        left: 6px;
     386        top: 7px;
     387        width: auto;
     388        z-index: 100000;
     389}
     390
    366391/* Header design */
    367392#headline {
    368393        height: auto;
    369394        overflow: hidden;
     395        position: relative;
    370396}
    371397#headline h2 {
    372398        margin-bottom: 16px;