Make WordPress Core

Ticket #38392: 38392.2.patch

File 38392.2.patch, 2.8 KB (added by davidakennedy, 9 years ago)

Style and spacing adjustments

  • src/wp-content/themes/twentyseventeen/assets/js/global.js

     
    1010                        $navWrap = $navigation.find( '.wrap' ),
    1111                        $navMenuItem = $navigation.find( '.menu-item' ),
    1212                        $menuToggle = $navigation.find( '.menu-toggle' ),
    13                         $menuScrollDown = $navigation.find( '.menu-scroll-down' ),
     13                        $menuScrollDown = $body.find( '.menu-scroll-down' ),
    1414                        $sidebar = $body.find( '#secondary' ),
    1515                        $entryContent = $body.find( '.entry-content' ),
    1616                        $formatQuote = $body.find( '.format-quote blockquote' ),
     
    143143        $( document ).ready( function() {
    144144
    145145                // Let's fire some JavaScript!
    146                 if ( 'true' === twentyseventeenScreenReaderText.has_navigation ) {
     146                if ( $menuScrollDown.length ) {
    147147
    148148                        /**
    149149                         * 'Scroll Down' arrow in menu area
  • src/wp-content/themes/twentyseventeen/style.css

     
    14631463
    14641464/* Scroll down arrow */
    14651465
    1466 .navigation-top .menu-scroll-down {
     1466.site-header .menu-scroll-down {
    14671467        display: none;
    14681468}
    14691469
     
    35133513                display: none;
    35143514        }
    35153515
    3516         .site-navigation-fixed.navigation-top .menu-scroll-down {
     3516        .site-navigation-fixed.site-header.menu-scroll-down {
    35173517                display: none;
    35183518        }
    35193519
    35203520        /* Scroll down arrow */
    35213521
    3522         .navigation-top .menu-scroll-down {
    3523                 color: #767676;
     3522        .site-header .menu-scroll-down {
    35243523                display: block;
    35253524                padding: 0.5em 0.5em 0.4em;
    35263525                position: absolute;
     
    35313530                transform: rotate(90deg);
    35323531        }
    35333532
     3533        .site-header .menu-scroll-down {
     3534                color: #fff;
     3535        }
     3536
     3537        .site-header .navigation-top .menu-scroll-down {
     3538                color: #767676;
     3539        }
     3540
    35343541        .menu-scroll-down:focus {
    35353542                outline: thin dotted;
    35363543        }
  • src/wp-content/themes/twentyseventeen/template-parts/header/site-branding.php

     
    2727                                <?php endif; ?>
    2828                </div><!-- .site-branding-text -->
    2929
     30                <?php if ( ( twentyseventeen_is_frontpage() || ( is_home() && is_front_page() ) ) && ! has_nav_menu( 'top' ) ) : ?>
     31                <a href="#content" class="menu-scroll-down"><?php echo twentyseventeen_get_svg( array( 'icon' => 'next' ) ); ?><span class="screen-reader-text"><?php _e( 'Scroll Down', 'twentyseventeen' ); ?></span></a>
     32        <?php endif; ?>
     33
    3034        </div><!-- .wrap -->
    3135</div><!-- .site-branding -->