Privacy: fix styling of the Privacy Settings buttons on mobile/small screens.
Props ianbelanger, azaozz. Fixes #44093. Built from https://develop.svn.wordpress.org/trunk@43279 git-svn-id: http://core.svn.wordpress.org/trunk@43108 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
548f73cc7c
commit
11ea5ebe0a
|
@ -1492,11 +1492,24 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
/* Privacy Policy settings screen */
|
||||
.tools-privacy-policy-page form.wp-create-privacy-page {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page input#set-page,
|
||||
.tools-privacy-policy-page select {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page .wp-create-privacy-page span {
|
||||
display: block;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page .wp-create-privacy-page .button {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column) {
|
||||
display: table-cell;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1492,11 +1492,24 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
/* Privacy Policy settings screen */
|
||||
.tools-privacy-policy-page form.wp-create-privacy-page {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page input#set-page,
|
||||
.tools-privacy-policy-page select {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page .wp-create-privacy-page span {
|
||||
display: block;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.tools-privacy-policy-page .wp-create-privacy-page .button {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.wp-list-table.privacy_requests tr:not(.inline-edit-row):not(.no-items) td.column-primary:not(.check-column) {
|
||||
display: table-cell;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -204,7 +204,7 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
</form>
|
||||
<?php endif; ?>
|
||||
|
||||
<form method="post" action="">
|
||||
<form class="wp-create-privacy-page" method="post" action="">
|
||||
<input type="hidden" name="action" value="create-privacy-page" />
|
||||
<span>
|
||||
<?php
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-43278';
|
||||
$wp_version = '5.0-alpha-43279';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue