Make WordPress Core

Changeset 26382


Ignore:
Timestamp:
11/26/2013 02:41:35 AM (12 years ago)
Author:
iammattthomas
Message:

Allow #wpwrap to scroll horizontally if needed, and hide overflow only on specific elements that need it. See #26169.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/wp-admin.css

    r26380 r26382  
    1090710907    #wpwrap {
    1090810908        background: #f0f0f0;
    10909         overflow-x: hidden;
    1091010909    }
    1091110910
     
    1091710916
    1091810917    .wrap {
    10919         margin-right: 10px;
     10918        margin-right: 12px;
    1092010919        margin-left: 0;
    1092110920    }
     
    1225812257        z-index: 400;
    1225912258    }
    12260 }
     12259   
     12260    /* Keep full-width boxes on Edit Post page from causing horizontal scroll */
     12261    div#post-body.metabox-holder.columns-1 {
     12262        overflow-x: hidden;
     12263    }
     12264}
  • trunk/src/wp-includes/css/admin-bar.css

    r26373 r26382  
    839839        width: 28px;
    840840        padding: 0 10px;
     841        overflow: hidden; /* Prevent link text from forcing horizontal scrolling on mobile */
    841842    }
    842843
Note: See TracChangeset for help on using the changeset viewer.