Make WordPress Core

Changeset 21487


Ignore:
Timestamp:
08/09/2012 05:32:39 PM (12 years ago)
Author:
lancewillett
Message:

Twenty Eleven: fix long URLs in comments overflow content area, fixes #21491. Props SergeyBiryukov jkudish andrewspittle.

Also minor pinking shears in stylesheet and functions file.

Location:
trunk/wp-content/themes/twentyeleven
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyeleven/functions.php

    r20983 r21487  
    132132        'admin-preview-callback' => 'twentyeleven_admin_header_image',
    133133    );
    134    
     134
    135135    add_theme_support( 'custom-header', $custom_header_support );
    136136
     
    222222    if ( $text_color == HEADER_TEXTCOLOR )
    223223        return;
    224        
     224
    225225    // If we get this far, we have custom styles. Let's do this.
    226226    ?>
  • trunk/wp-content/themes/twentyeleven/style.css

    r21243 r21487  
    19611961.commentlist .children li.comment .comment-content {
    19621962    margin: 1.625em 0 0;
     1963    -ms-word-break: break-all;
     1964    word-break: break-all;
     1965    word-break: break-word;
     1966    -webkit-hyphens: auto;
     1967    -moz-hyphens: auto;
     1968    hyphens: auto;
    19631969}
    19641970.comment-meta a {
     
    26872693}
    26882694
    2689 /* =IE8 
    2690 ----------------------------------------------- */ 
    2691  
    2692 #ie8 section.feature-image.large img { 
    2693     width: 100%; 
    2694 } 
     2695/* =IE8
     2696----------------------------------------------- */
     2697
     2698#ie8 section.feature-image.large img {
     2699    width: 100%;
     2700}
Note: See TracChangeset for help on using the changeset viewer.