Plugins: Adjust margin for plugin headings on "Add Plugins" screen to avoid overlapping with "Network Activate" button.
Props justinahinon, chetan200891. Fixes #47600. Built from https://develop.svn.wordpress.org/trunk@45824 git-svn-id: http://core.svn.wordpress.org/trunk@45635 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cde194a21e
commit
53f5b172ab
|
@ -1465,7 +1465,7 @@ div.action-links,
|
|||
}
|
||||
|
||||
.plugin-card h3 {
|
||||
margin: 0 0 12px;
|
||||
margin: 0 0 12px 12px;
|
||||
font-size: 18px;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
@ -1646,6 +1646,10 @@ div.action-links,
|
|||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.plugin-card h3 {
|
||||
margin-left: 24px;
|
||||
}
|
||||
|
||||
.plugin-card .name,
|
||||
.plugin-card .desc {
|
||||
margin-left: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1465,7 +1465,7 @@ div.action-links,
|
|||
}
|
||||
|
||||
.plugin-card h3 {
|
||||
margin: 0 0 12px;
|
||||
margin: 0 12px 12px 0;
|
||||
font-size: 18px;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
@ -1646,6 +1646,10 @@ div.action-links,
|
|||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.plugin-card h3 {
|
||||
margin-right: 24px;
|
||||
}
|
||||
|
||||
.plugin-card .name,
|
||||
.plugin-card .desc {
|
||||
margin-right: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-45823';
|
||||
$wp_version = '5.3-alpha-45824';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue