2020-11-12 13:36:15 -05:00
|
|
|
|
|
|
|
.footer-navigation {
|
|
|
|
margin-top: calc(2 * var(--global--spacing-vertical));
|
|
|
|
margin-bottom: var(--global--spacing-vertical);
|
|
|
|
color: var(--footer--color-text);
|
|
|
|
font-size: var(--global--font-size-xs);
|
|
|
|
font-family: var(--footer--font-family);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-navigation-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
// This is to prevent hover styles from overlapping when the menu wraps.
|
|
|
|
line-height: 3;
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding: calc(1.25 * var(--primary-nav--padding)) var(--primary-nav--padding);
|
|
|
|
color: var(--footer--color-link);
|
|
|
|
|
|
|
|
&:link,
|
|
|
|
&:visited,
|
|
|
|
&:active {
|
|
|
|
color: var(--footer--color-link);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-style: dotted;
|
|
|
|
text-decoration-skip-ink: none;
|
|
|
|
color: var(--footer--color-link-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
|
|
|
.is-dark-theme & {
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
fill: var(--wp--style--color--link, var(--global--color-background));
|
|
|
|
}
|
|
|
|
}
|
Twenty Twenty-One: Sync the latest changes for 5.6 RC2.
This will be the final sync from GitHub before placing that repository into read-only mode. All further changes should now flow entirely through Trac.
For a full list of changes since [49633], see https://github.com/WordPress/twentytwentyone/compare/1d5a895...53acd9b.
Props poena, luminuu, kjellr, ryelle, allancole, melchoyce, felipeelia, aljullu, kebbet, chaton666, Clorith, mkaz, ingereck, paaljoachim.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49726
git-svn-id: http://core.svn.wordpress.org/trunk@49449 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-01 14:09:05 -05:00
|
|
|
|
|
|
|
// Change colors when the body background is white.
|
|
|
|
.has-background-white & {
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
fill: var(--wp--style--color--link, var(--global--color-white));
|
|
|
|
}
|
|
|
|
}
|
2020-11-12 13:36:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
fill: var(--footer--color-link);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
2022-03-10 00:21:03 -05:00
|
|
|
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
|
|
transition: transform 0.1s ease;
|
|
|
|
}
|
2020-11-12 13:36:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub-menu-toggle,
|
|
|
|
.menu-item-description {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|