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

Comment these magic numbers.

see #27440, [29474].


git-svn-id: https://develop.svn.wordpress.org/trunk@29590 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-08-24 20:44:27 +00:00
parent b459eb034e
commit c0eabc9901
1 changed files with 7 additions and 0 deletions

View File

@ -2255,6 +2255,13 @@ div.action-links {
right: 0; right: 0;
left: 0; left: 0;
min-height: 100%; min-height: 100%;
/* Height of title + tabs + install now */
min-height: -webkit-calc( 100% - 152px );
min-height: calc( 100% - 152px );
}
#plugin-information-content.with-banner {
/* Height of banner + tabs + install now */
min-height: -webkit-calc( 100% - 346px ); min-height: -webkit-calc( 100% - 346px );
min-height: calc( 100% - 346px ); min-height: calc( 100% - 346px );
} }