Make WordPress Core

Changeset 26964


Ignore:
Timestamp:
01/16/2014 09:59:19 PM (10 years ago)
Author:
azaozz
Message:

Widgets: fix scaling of extra-wide widgets on 480px and 320px devices, fixes #26701 for 3.8.1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8/src/wp-admin/css/wp-admin.css

    r26962 r26964  
    1142911429        float: none;
    1143011430    }
     11431
     11432    div.widget {
     11433        margin: 0 auto 10px !important;
     11434        max-width: 480px;
     11435    }
     11436}
     11437
     11438@media screen and (max-width: 320px) {
     11439    div.widget {
     11440        max-width: 320px;
     11441    }
    1143111442}
    1143211443
Note: See TracChangeset for help on using the changeset viewer.