Help/About: Adjust horizontal padding on the tabs under 960 pixels width.

This ensures that the About / Credits / Freedoms / Privacy / Get Involved tabs menu does not expand beyond the container when the side admin menu is expanded.

Follow-up to [56220], [56227], [56233].

Props costdev, mukesh27.
See #23348.
Built from https://develop.svn.wordpress.org/trunk@56234


git-svn-id: http://core.svn.wordpress.org/trunk@55746 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-14 15:42:27 +00:00
parent 51af5fc4a5
commit c66ed1c6e9
5 changed files with 11 additions and 3 deletions

View File

@ -657,6 +657,10 @@
/* Fluid font size scales on browser size 600px - 960px. */ /* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem); font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
} }
.about__header-navigation .nav-tab {
padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5);
}
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {

File diff suppressed because one or more lines are too long

View File

@ -656,6 +656,10 @@
/* Fluid font size scales on browser size 600px - 960px. */ /* Fluid font size scales on browser size 600px - 960px. */
font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem); font-size: clamp(3rem, 6.67vw - 0.5rem, 4.5rem);
} }
.about__header-navigation .nav-tab {
padding: calc(var(--gap) * 0.75) calc(var(--gap) * 0.5);
}
} }
@media screen and (max-width: 782px) { @media screen and (max-width: 782px) {

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.3-beta4-56233'; $wp_version = '6.3-beta4-56234';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.