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.

git-svn-id: https://develop.svn.wordpress.org/trunk@47622 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-04-25 12:25:54 +00:00
parent c629ae3180
commit 59433bb306
2 changed files with 7 additions and 5 deletions

View File

@ -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 */
}

View File

@ -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 {