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:
parent
b459eb034e
commit
c0eabc9901
@ -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 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user