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

Comment these magic numbers.

see #27440, [29474].

Built from https://develop.svn.wordpress.org/trunk@29590


git-svn-id: http://core.svn.wordpress.org/trunk@29364 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-08-24 20:45:17 +00:00
parent ea05215581
commit bab83d0f5a
4 changed files with 16 additions and 2 deletions

View File

@ -2255,6 +2255,13 @@ div.action-links {
left: 0;
right: 0;
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: calc( 100% - 346px );
}

View File

@ -2255,6 +2255,13 @@ div.action-links {
right: 0;
left: 0;
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: calc( 100% - 346px );
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long