Make WordPress Core

Changeset 29590


Ignore:
Timestamp:
08/24/2014 08:44:27 PM (10 years ago)
Author:
nacin
Message:

Plugin details: Correctly calculate the height of the right column for plugins without banners.

Comment these magic numbers.

see #27440, [29474].

File:
1 edited

Legend:

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

    r29575 r29590  
    22562256    left: 0;
    22572257    min-height: 100%;
     2258    /* Height of title + tabs + install now */
     2259    min-height: -webkit-calc( 100% - 152px );
     2260    min-height: calc( 100% - 152px );
     2261}
     2262
     2263#plugin-information-content.with-banner {
     2264    /* Height of banner + tabs + install now */
    22582265    min-height: -webkit-calc( 100% - 346px );
    22592266    min-height: calc( 100% - 346px );
Note: See TracChangeset for help on using the changeset viewer.