Changeset 26689
- Timestamp:
- 12/05/2013 09:02:11 PM (11 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/css/ie.css
r26661 r26689 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 … … 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 -
trunk/src/wp-content/themes/twentyfourteen/functions.php
r26665 r26689 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 -
trunk/src/wp-content/themes/twentyfourteen/inc/custom-header.php
r26668 r26689 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 -
trunk/src/wp-content/themes/twentyfourteen/style.css
r26662 r26689 707 707 .screen-reader-text { 708 708 clip: rect(1px, 1px, 1px, 1px); 709 position: absolute !important;709 position: absolute; 710 710 } 711 711 … … 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; … … 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;
Note: See TracChangeset
for help on using the changeset viewer.