Make WordPress Core

Changeset 29605


Ignore:
Timestamp:
08/25/2014 08:19:56 PM (10 years ago)
Author:
helen
Message:

Plugin details:

Prevent plugins with long names from looking bad and breaking layouts.

props stephdau. fixes #28883.

File:
1 edited

Legend:

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

    r29603 r29605  
    21662166    padding: 0;
    21672167    margin: 0;
    2168     max-width: 760px;
     2168    max-width: 680px;
     2169    overflow: hidden;
     2170    text-overflow: ellipsis;
     2171    white-space: nowrap;
    21692172}
    21702173
     
    21742177    font-size: 30px;
    21752178    line-height: 50px;
    2176     max-width: 760px;
    21772179    padding: 0 15px;
    21782180    margin: 174px 0 0 10px;
     
    24282430}
    24292431
    2430 @media screen and ( max-height: 500px ) {
     2432@media screen and ( max-width: 771px ) {
    24312433    #plugin-information-title.with-banner {
    24322434        height: 100px;
     
    24382440        font-size: 20px;
    24392441        line-height: 40px;
     2442        max-width: 85%;
    24402443    }
    24412444
     
    24452448        width: 800%;
    24462449    }
    2447 }
    2448 
    2449 @media screen and ( max-width: 771px ) {
     2450
    24502451    #plugin-information-tabs {
    24512452        overflow: hidden; /* clearfix */
Note: See TracChangeset for help on using the changeset viewer.