Administration: Remove right padding on form tables on smaller screens so that the spacing is equal on both sides.
Additionally, reduce the right margin on screen meta links (Help and Screen Options) to align with the tables. Props jainnidhi, garrett-eclipse, ibdz, SergeyBiryukov. Fixes #43279. Built from https://develop.svn.wordpress.org/trunk@47622 git-svn-id: http://core.svn.wordpress.org/trunk@47397 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
72ef7ee315
commit
43cfa7ee60
|
@ -3999,6 +3999,11 @@ img {
|
|||
float: none;
|
||||
}
|
||||
|
||||
#screen-meta,
|
||||
#screen-meta-links {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#screen-meta-links {
|
||||
margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3998,6 +3998,11 @@ img {
|
|||
float: none;
|
||||
}
|
||||
|
||||
#screen-meta,
|
||||
#screen-meta-links {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#screen-meta-links {
|
||||
margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1501,16 +1501,13 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.form-table th {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 0;
|
||||
padding: 10px 0 0 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 6px;
|
||||
padding-top: 4px;
|
||||
padding-right: 0;
|
||||
padding: 4px 0 6px 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1500,16 +1500,13 @@ table.form-table td .updated p {
|
|||
}
|
||||
|
||||
.form-table th {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 0;
|
||||
padding: 10px 0 0 0;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.form-table td {
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 6px;
|
||||
padding-top: 4px;
|
||||
padding-left: 0;
|
||||
padding: 4px 0 6px 0;
|
||||
}
|
||||
|
||||
.form-table.permalink-structure td code {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-alpha-47618';
|
||||
$wp_version = '5.5-alpha-47622';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue