Privacy: Add space below page selector.

Sometimes the submit button wraps to a new line, either because the button label translation is long, or there are long page names. When it wraps, there should be space between the select dropdown and the button.

Props audrasjb, mukesh27, guillaumeturpin.
Fixes #53782.


Built from https://develop.svn.wordpress.org/trunk@51645


git-svn-id: http://core.svn.wordpress.org/trunk@51251 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryelle 2021-08-19 20:58:57 +00:00
parent 9d2e8c096f
commit 899e4635de
5 changed files with 13 additions and 7 deletions

View File

@ -1237,11 +1237,14 @@ table.form-table td .updated p {
margin-bottom: 1.3em;
}
.tools-privacy-policy-page input.button,
.tools-privacy-policy-page select {
.tools-privacy-policy-page input.button {
margin: 0 6px 0 1px;
}
.tools-privacy-policy-page select {
margin: 0 6px 0.5em 1px;
}
.tools-privacy-edit {
margin: 1.5em 0;
}

File diff suppressed because one or more lines are too long

View File

@ -1236,11 +1236,14 @@ table.form-table td .updated p {
margin-bottom: 1.3em;
}
.tools-privacy-policy-page input.button,
.tools-privacy-policy-page select {
.tools-privacy-policy-page input.button {
margin: 0 1px 0 6px;
}
.tools-privacy-policy-page select {
margin: 0 1px 0.5em 6px;
}
.tools-privacy-edit {
margin: 1.5em 0;
}

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.9-alpha-51644';
$wp_version = '5.9-alpha-51645';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.