From c0eabc9901c784e44162b0d26f79aa80c2194647 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 24 Aug 2014 20:44:27 +0000 Subject: [PATCH] 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 --- src/wp-admin/css/common.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css index 5da8049640..1f677b34cf 100644 --- a/src/wp-admin/css/common.css +++ b/src/wp-admin/css/common.css @@ -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 ); }