Ticket #26444: 26444.diff
| File 26444.diff, 2.8 KB (added by , 12 years ago) |
|---|
-
wp-content/themes/twentyfourteen/css/ie.css
886 886 } 887 887 888 888 .ie7 .screen-reader-text { 889 clip: rect(1px 1px 1px 1px); /* IE7 */889 clip: rect(1px 1px 1px 1px); 890 890 } 891 891 892 892 .ie7 .site, … … 904 904 905 905 .ie7 .search-toggle .screen-reader-text { 906 906 color: #fff; 907 position: relative !important;907 position: relative; /* Override inherited `absolute` value set in style.css. */ 908 908 } 909 909 910 910 .ie7 .search-box { -
wp-content/themes/twentyfourteen/functions.php
239 239 wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri(), array( 'genericons' ) ); 240 240 241 241 // Load the Internet Explorer specific stylesheet. 242 wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131 110' );242 wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131205' ); 243 243 wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' ); 244 244 245 245 if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { -
wp-content/themes/twentyfourteen/inc/custom-header.php
70 70 ?> 71 71 .site-title, 72 72 .site-description { 73 position: absolute;74 73 clip: rect(1px 1px 1px 1px); /* IE7 */ 75 74 clip: rect(1px, 1px, 1px, 1px); 75 position: absolute; 76 76 } 77 77 <?php 78 78 // If the user has set a custom color for the text, use that. -
wp-content/themes/twentyfourteen/style.css
706 706 707 707 .screen-reader-text { 708 708 clip: rect(1px, 1px, 1px, 1px); 709 position: absolute !important;709 position: absolute; 710 710 } 711 711 712 712 .screen-reader-text:focus { … … 713 713 background-color: #f1f1f1; 714 714 border-radius: 3px; 715 715 box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 716 clip: auto !important;716 clip: auto; 717 717 color: #21759b; 718 718 display: block; 719 719 font-size: 14px; … … 4034 4034 4035 4035 @media print { 4036 4036 body { 4037 background: none !important; 4037 background: none !important; /* Brute force since user agents all print differently. */ 4038 4038 color: #2b2b2b; 4039 4039 font-size: 12pt; 4040 4040 }