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:
parent
51af5fc4a5
commit
c66ed1c6e9
|
@ -657,6 +657,10 @@
|
|||
/* Fluid font size scales on browser size 600px - 960px. */
|
||||
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) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -656,6 +656,10 @@
|
|||
/* Fluid font size scales on browser size 600px - 960px. */
|
||||
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) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue