Ticket #24114: 24114.diff
File 24114.diff, 3.0 KB (added by , 10 years ago) |
---|
-
wp-content/themes/twentythirteen/header.php
40 40 <div id="page" class="hfeed site"> 41 41 <header id="masthead" class="site-header" role="banner"> 42 42 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> 43 < hgroup>43 <div class="hgroup"> 44 44 <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1> 45 45 <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> 46 </ hgroup>46 </div> 47 47 </a> 48 48 49 49 <div id="navbar" class="navbar"> -
wp-content/themes/twentythirteen/js/theme-customizer.js
22 22 value.bind( function( to ) { 23 23 if ( 'blank' == to ) { 24 24 if ( 'remove-header' == _wpCustomizeSettings.values.header_image ) 25 $( '#masthead hgroup' ).css( 'min-height', '0' );25 $( '#masthead .hgroup' ).css( 'min-height', '0' ); 26 26 $( '.site-title, .site-description' ).css( { 27 27 'clip': 'rect(1px, 1px, 1px, 1px)', 28 28 'position': 'absolute' 29 29 } ); 30 30 } else { 31 $( '#masthead hgroup' ).css( 'min-height', '230px' );31 $( '#masthead .hgroup' ).css( 'min-height', '230px' ); 32 32 $( '.site-title, .site-description' ).css( { 33 33 'clip': 'auto', 34 34 'color': to, -
wp-content/themes/twentythirteen/inc/custom-header.php
103 103 <?php 104 104 if ( empty( $header_image ) ) : 105 105 ?> 106 .site-header hgroup {106 .site-header .hgroup { 107 107 min-height: 0; 108 108 } 109 109 <?php -
wp-content/themes/twentythirteen/css/ie.css
34 34 left: 100%; 35 35 } 36 36 37 .site-header hgroup {37 .site-header .hgroup { 38 38 max-width: 1040px; 39 39 } 40 40 -
wp-content/themes/twentythirteen/style.css
70 70 figure, 71 71 footer, 72 72 header, 73 hgroup,74 73 nav, 75 74 section, 76 75 summary { … … 807 806 position: relative; 808 807 } 809 808 810 .site-header hgroup {809 .site-header .hgroup { 811 810 margin: 0 auto; 812 811 max-width: 1080px; 813 812 padding: 0 20px; … … 3260 3259 background-image: none !important; 3261 3260 } 3262 3261 3263 .site-header hgroup {3262 .site-header .hgroup { 3264 3263 min-height: 0; 3265 3264 max-width: none; 3266 3265 }