Make WordPress Core

Changeset 21517


Ignore:
Timestamp:
08/15/2012 05:25:40 AM (14 years ago)
Author:
lancewillett
Message:

Twenty Twelve: better fix for long words getting hidden in widgets, putting the rules in the correct selector, props obenland. Closes #21503.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentytwelve/style.css

    r21516 r21517  
    456456.wrapper {
    457457        overflow: hidden;
    458         -moz-hyphens: auto;
    459         -ms-word-break: break-all;
    460         -webkit-hyphens: auto;
    461         hyphens: auto;
    462         word-break: break-all;
    463         word-break: break-word;
    464458}
    465459.site {
     
    629623/* Sidebar */
    630624.widget-area .widget {
     625        overflow: hidden;
     626        -moz-hyphens: auto;
     627        -ms-word-break: break-all;
     628        -webkit-hyphens: auto;
     629        hyphens: auto;
     630        word-break: break-all;
     631        word-break: break-word;
    631632        margin-bottom: 48px;
    632633        margin-bottom: 3.428571429rem;
Note: See TracChangeset for help on using the changeset viewer.