Plugins: Update the height of the Install Now button for new plugins.
Due to Thickbox shenanigans, the buttons height needed to be shrunk a little to center properly in the iframe. Fixes #49828. Props ibachal, Otto42, afercia. Built from https://develop.svn.wordpress.org/trunk@48503 git-svn-id: http://core.svn.wordpress.org/trunk@48265 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f7268adfbf
commit
59ee72969d
|
@ -2638,7 +2638,7 @@ div.action-links {
|
|||
margin-top: 10px;
|
||||
margin-left: 250px; /* FYI box */
|
||||
padding: 10px 26px;
|
||||
margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
|
||||
margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */
|
||||
padding-bottom: 99999px; /* equal height column trick */
|
||||
}
|
||||
|
||||
|
@ -2656,7 +2656,7 @@ div.action-links {
|
|||
top: 0;
|
||||
left: 0;
|
||||
padding: 16px;
|
||||
margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
|
||||
margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */
|
||||
padding-bottom: 99999px; /* equal height column trick */
|
||||
width: 217px;
|
||||
border-right: 1px solid #ddd;
|
||||
|
@ -2750,7 +2750,7 @@ div.action-links {
|
|||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
height: 33px; /* 33+13+13+1=60 */
|
||||
height: 40px; /* actual height: 40+13+13+1=67 */
|
||||
border-top: 1px solid #ddd;
|
||||
background: #f3f3f3;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2637,7 +2637,7 @@ div.action-links {
|
|||
margin-top: 10px;
|
||||
margin-right: 250px; /* FYI box */
|
||||
padding: 10px 26px;
|
||||
margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
|
||||
margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */
|
||||
padding-bottom: 99999px; /* equal height column trick */
|
||||
}
|
||||
|
||||
|
@ -2655,7 +2655,7 @@ div.action-links {
|
|||
top: 0;
|
||||
right: 0;
|
||||
padding: 16px;
|
||||
margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
|
||||
margin-bottom: -99932px; /* 67px less than the padding below to accommodate footer height */
|
||||
padding-bottom: 99999px; /* equal height column trick */
|
||||
width: 217px;
|
||||
border-left: 1px solid #ddd;
|
||||
|
@ -2749,7 +2749,7 @@ div.action-links {
|
|||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 33px; /* 33+13+13+1=60 */
|
||||
height: 40px; /* actual height: 40+13+13+1=67 */
|
||||
border-top: 1px solid #ddd;
|
||||
background: #f3f3f3;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-beta2-48502';
|
||||
$wp_version = '5.5-beta2-48503';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue