Make WordPress Core

Ticket #26444: 26444.diff

File 26444.diff, 2.8 KB (added by lancewillett, 12 years ago)
  • wp-content/themes/twentyfourteen/css/ie.css

     
    886886}
    887887
    888888.ie7 .screen-reader-text {
    889         clip: rect(1px 1px 1px 1px); /* IE7 */
     889        clip: rect(1px 1px 1px 1px);
    890890}
    891891
    892892.ie7 .site,
     
    904904
    905905.ie7 .search-toggle .screen-reader-text {
    906906        color: #fff;
    907         position: relative !important;
     907        position: relative; /* Override inherited `absolute` value set in style.css. */
    908908}
    909909
    910910.ie7 .search-box {
  • wp-content/themes/twentyfourteen/functions.php

     
    239239        wp_enqueue_style( 'twentyfourteen-style', get_stylesheet_uri(), array( 'genericons' ) );
    240240
    241241        // Load the Internet Explorer specific stylesheet.
    242         wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131110' );
     242        wp_enqueue_style( 'twentyfourteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfourteen-style', 'genericons' ), '20131205' );
    243243        wp_style_add_data( 'twentyfourteen-ie', 'conditional', 'lt IE 9' );
    244244
    245245        if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
  • wp-content/themes/twentyfourteen/inc/custom-header.php

     
    7070        ?>
    7171                .site-title,
    7272                .site-description {
    73                         position: absolute;
    7473                        clip: rect(1px 1px 1px 1px); /* IE7 */
    7574                        clip: rect(1px, 1px, 1px, 1px);
     75                        position: absolute;
    7676                }
    7777        <?php
    7878                // If the user has set a custom color for the text, use that.
  • wp-content/themes/twentyfourteen/style.css

     
    706706
    707707.screen-reader-text {
    708708        clip: rect(1px, 1px, 1px, 1px);
    709         position: absolute !important;
     709        position: absolute;
    710710}
    711711
    712712.screen-reader-text:focus {
     
    713713        background-color: #f1f1f1;
    714714        border-radius: 3px;
    715715        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    716         clip: auto !important;
     716        clip: auto;
    717717        color: #21759b;
    718718        display: block;
    719719        font-size: 14px;
     
    40344034
    40354035@media print {
    40364036        body {
    4037                 background: none !important;
     4037                background: none !important; /* Brute force since user agents all print differently. */
    40384038                color: #2b2b2b;
    40394039                font-size: 12pt;
    40404040        }