2020-11-12 13:36:15 -05:00
|
|
|
// Footer
|
|
|
|
.site-footer {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: calc(1.7 * var(--global--spacing-vertical));
|
|
|
|
@extend %responsive-alignwide-width;
|
|
|
|
|
|
|
|
// Increase the top vertical spacing when there is no widget area.
|
|
|
|
.no-widgets & {
|
|
|
|
margin-top: calc(6 * var(--global--spacing-vertical));
|
|
|
|
}
|
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
|
|
|
|
|
|
|
@include media(mobile-only) {
|
|
|
|
|
|
|
|
.no-widgets & {
|
|
|
|
margin-top: calc(3 * var(--global--spacing-vertical));
|
|
|
|
}
|
|
|
|
}
|
2020-11-12 13:36:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Footer Branding
|
|
|
|
.site-footer > .site-info {
|
|
|
|
padding-top: var(--global--spacing-vertical);
|
|
|
|
color: var(--footer--color-text);
|
|
|
|
font-family: var(--footer--font-family);
|
|
|
|
font-size: var(--footer--font-size);
|
|
|
|
line-height: var(--global--line-height-body);
|
|
|
|
border-top: 3px solid var(--global--color-border);
|
|
|
|
|
|
|
|
.site-name {
|
|
|
|
text-transform: var(--branding--title--text-transform);
|
|
|
|
font-size: var(--branding--title--font-size);
|
|
|
|
}
|
|
|
|
|
2021-11-09 17:26:01 -05:00
|
|
|
.privacy-policy,
|
2020-11-12 13:36:15 -05:00
|
|
|
.powered-by {
|
|
|
|
margin-top: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media(desktop) {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-11-09 17:26:01 -05:00
|
|
|
.site-name {
|
|
|
|
margin-right: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
}
|
|
|
|
|
|
|
|
.privacy-policy,
|
2020-11-12 13:36:15 -05:00
|
|
|
.powered-by {
|
|
|
|
margin-top: initial;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2021-11-09 17:26:01 -05:00
|
|
|
|
|
|
|
.privacy-policy + .powered-by {
|
|
|
|
margin-left: calc(0.5 * var(--global--spacing-vertical));
|
|
|
|
}
|
2020-11-12 13:36:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--footer--color-link);
|
|
|
|
|
|
|
|
&:link,
|
|
|
|
&:visited,
|
|
|
|
&:active {
|
|
|
|
color: var(--footer--color-link);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--footer--color-link-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
color: var(--footer--color-link-hover);
|
|
|
|
|
|
|
|
.is-dark-theme & {
|
|
|
|
color: 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 & {
|
|
|
|
color: var(--wp--style--color--link, var(--global--color-white));
|
|
|
|
}
|
2020-11-12 13:36:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|