Plugins: Improve the "Install Now" button vertical alignment in the Plugin Details modal dialog.

Props paulwilde.

Fixes #34199.
Built from https://develop.svn.wordpress.org/trunk@35343


git-svn-id: http://core.svn.wordpress.org/trunk@35309 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrea Fercia 2015-10-21 21:55:29 +00:00
parent f7f5b64a7e
commit cfa07d28af
5 changed files with 11 additions and 13 deletions

View File

@ -2428,7 +2428,7 @@ div.action-links {
right: 0; right: 0;
margin-left: 250px; /* FYI box */ margin-left: 250px; /* FYI box */
padding: 10px 26px; padding: 10px 26px;
margin-bottom: -99930px; /* a bit less than the padding below to accommodate footer */ margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
padding-bottom: 99999px; /* equal height column trick */ padding-bottom: 99999px; /* equal height column trick */
} }
@ -2437,13 +2437,12 @@ div.action-links {
} }
#plugin-information .fyi { #plugin-information .fyi {
display: block;
float: left; float: left;
position: relative; position: relative;
top: 0; top: 0;
left: 0; left: 0;
padding: 16px; padding: 16px;
margin-bottom: -99930px; /* slightly less than the padding below to accommodate footer */ margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
padding-bottom: 99999px; /* equal height column trick */ padding-bottom: 99999px; /* equal height column trick */
width: 217px; width: 217px;
border-right: 1px solid #ddd; border-right: 1px solid #ddd;
@ -2528,12 +2527,12 @@ div.action-links {
} }
#plugin-information-footer { #plugin-information-footer {
padding: 15px 16px; padding: 13px 16px;
position: absolute; position: absolute;
left: 0; left: 0;
bottom: 0; bottom: 0;
right: 0; right: 0;
height: 28px; height: 33px; /* 33+13+13+1=60 */
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
background: #f3f3f3; background: #f3f3f3;
} }

View File

@ -2428,7 +2428,7 @@ div.action-links {
left: 0; left: 0;
margin-right: 250px; /* FYI box */ margin-right: 250px; /* FYI box */
padding: 10px 26px; padding: 10px 26px;
margin-bottom: -99930px; /* a bit less than the padding below to accommodate footer */ margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
padding-bottom: 99999px; /* equal height column trick */ padding-bottom: 99999px; /* equal height column trick */
} }
@ -2437,13 +2437,12 @@ div.action-links {
} }
#plugin-information .fyi { #plugin-information .fyi {
display: block;
float: right; float: right;
position: relative; position: relative;
top: 0; top: 0;
right: 0; right: 0;
padding: 16px; padding: 16px;
margin-bottom: -99930px; /* slightly less than the padding below to accommodate footer */ margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
padding-bottom: 99999px; /* equal height column trick */ padding-bottom: 99999px; /* equal height column trick */
width: 217px; width: 217px;
border-left: 1px solid #ddd; border-left: 1px solid #ddd;
@ -2528,12 +2527,12 @@ div.action-links {
} }
#plugin-information-footer { #plugin-information-footer {
padding: 15px 16px; padding: 13px 16px;
position: absolute; position: absolute;
right: 0; right: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
height: 28px; height: 33px; /* 33+13+13+1=60 */
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
background: #f3f3f3; background: #f3f3f3;
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-35342'; $wp_version = '4.4-alpha-35343';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.