Make WordPress Core

Ticket #24839: 24839.diff

File 24839.diff, 1.5 KB (added by joedolson, 11 years ago)

Update to Twenty-Twelve patch

  • wp-content/themes/twentytwelve/js/navigation.js

     
    3030                        menu.className += ' toggled-on';
    3131                }
    3232        };
    33 } )();
    34  No newline at end of file
     33} )();
     34
     35( function( $ ) {
     36        $( '.main-navigation' ).find( 'a' ).on( 'focus blur', function() {
     37                $( this ).parents().toggleClass( 'focus' );
     38        } );
     39} )( jQuery ); 
     40 No newline at end of file
  • wp-content/themes/twentytwelve/style.css

     
    15171517                position: relative;
    15181518        }
    15191519        .main-navigation li ul {
    1520                 display: none;
     1520                /*display: none;*/
    15211521                margin: 0;
    15221522                padding: 0;
    15231523                position: absolute;
    15241524                top: 100%;
    15251525                z-index: 1;
     1526                height: 1px;
     1527                width: 1px;
     1528                overflow: hidden;
     1529                clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
     1530                clip: rect(1px, 1px, 1px, 1px)
    15261531        }
    15271532        .main-navigation li ul ul {
    15281533                top: 0;
    15291534                left: 100%;
    15301535        }
    1531         .main-navigation ul li:hover > ul {
     1536        .main-navigation ul li:hover > ul, .main-navigation .focus > ul {
    15321537                border-left: 0;
    1533                 display: block;
     1538                /* display: block; */
     1539                clip: inherit;
     1540                overflow: inherit;
     1541                height: inherit;
     1542                width: inherit;         
    15341543        }
    15351544        .main-navigation li ul li a {
    15361545                background: #efefef;