Make WordPress Core

Changeset 21720


Ignore:
Timestamp:
09/04/2012 03:47:24 AM (12 years ago)
Author:
lancewillett
Message:

Twenty Twelve: fix long word overflow in IE9 and FF15 by using word-wrap instead of word-break, fixes #21503.

File:
1 edited

Legend:

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

    r21674 r21720  
    551551/* Sidebar */
    552552.widget-area .widget {
    553     overflow: hidden;
     553    word-wrap: break-word;
     554    -webkit-hyphens: auto;
    554555    -moz-hyphens: auto;
    555     -ms-word-break: break-all;
    556     -webkit-hyphens: auto;
    557556    hyphens: auto;
    558     word-break: break-all;
    559     word-break: break-word;
    560557    margin-bottom: 48px;
    561558    margin-bottom: 3.428571429rem;
     559    overflow: hidden;
    562560}
    563561.widget-area .widget h3 {
Note: See TracChangeset for help on using the changeset viewer.