mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-29 04:28:07 +01:00
b3bb99b3d7
This change restructures the Button element styles for better a11y and expected color behaviors. Here what has changed: - The `button-style()` mixin is now the ''single source or truth'' for how Button should look site-wide. - Button Block, File Block, and Search form Blocks all rely on this one mixin. - The same styles is also applied to the `<button>` element which appears in widgets, the 404 search form and comments form. - Improves expected button styles for various conditions and contexts as follows: - User color palette selections for Buttons are retained regardless of a parent block’s color settings or dark-mode. - Supports both Default/Filled styles and Outline styles. - More consistent `:hover` and `:active` styles. - `:focus` styles are now always visible and legible. - Adds a `--local-color` color variable to scope color relationships to nested blocks. - Reduces selectors in `style.css` output. - 1:1 experience between editor and front end button styles. - Properly supports Dark-mode. Props allancole, poena, scruffian, megphillips91. Fixes #51927. Built from https://develop.svn.wordpress.org/trunk@49987 git-svn-id: http://core.svn.wordpress.org/trunk@49688 1a063a9b-81f0-0310-95a4-ce76da25c4cd
127 lines
2.4 KiB
SCSS
127 lines
2.4 KiB
SCSS
.widget-area {
|
|
@extend %responsive-alignwide-width;
|
|
margin-top: calc(6 * var(--global--spacing-vertical));
|
|
padding-bottom: calc(var(--global--spacing-vertical) / 3);
|
|
color: var(--footer--color-text);
|
|
font-size: var(--footer--font-size);
|
|
font-family: var(--footer--font-family);
|
|
|
|
@include media(laptop) {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
column-gap: calc(2 * var(--global--spacing-horizontal));
|
|
}
|
|
|
|
@include media(wide) {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
|
|
@include media(mobile-only) {
|
|
margin-top: calc(3 * var(--global--spacing-vertical));
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
|
|
li {
|
|
line-height: var(--widget--line-height-list);
|
|
}
|
|
|
|
&.sub-menu,
|
|
&.children {
|
|
margin-left: var(--widget--spacing-menu);
|
|
}
|
|
|
|
.sub-menu-toggle {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: var(--footer--color-link);
|
|
text-decoration: underline;
|
|
text-decoration-style: solid;
|
|
text-decoration-color: currentColor;
|
|
|
|
&:link,
|
|
&:visited,
|
|
&:active {
|
|
color: var(--footer--color-link);
|
|
}
|
|
|
|
&:hover {
|
|
color: var(--footer--color-link-hover);
|
|
text-decoration-style: dotted;
|
|
}
|
|
}
|
|
|
|
.wp-block-social-links {
|
|
|
|
&.alignright {
|
|
margin-top: var(--global--spacing-vertical);
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&.alignleft {
|
|
margin-top: var(--global--spacing-vertical);
|
|
}
|
|
}
|
|
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
.widget-title {
|
|
font-size: var(--global--font-size-sm);
|
|
font-weight: var(--widget--font-weight-title);
|
|
line-height: var(--widget--line-height-title);
|
|
}
|
|
|
|
// Search widget styles
|
|
.search-form {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: auto;
|
|
max-width: var(--responsive--aligndefault-width);
|
|
|
|
> label {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
font-weight: var(--form--label-weight);
|
|
}
|
|
|
|
.search-field {
|
|
flex-grow: 1;
|
|
max-width: inherit;
|
|
margin-top: calc(var(--global--spacing-vertical) / 3);
|
|
margin-right: calc(0.66 * var(--global--spacing-horizontal));
|
|
}
|
|
|
|
.search-submit {
|
|
margin-top: calc(var(--global--spacing-vertical) / 3);
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
.widget_search > .search-form {
|
|
|
|
.search-field {
|
|
margin-right: calc(-1 * var(--button--border-width));
|
|
-webkit-appearance: none;
|
|
margin-bottom: calc(0.5 * var(--global--spacing-vertical));
|
|
}
|
|
|
|
.search-submit {
|
|
margin-left: 0;
|
|
margin-bottom: calc(0.5 * var(--global--spacing-vertical));
|
|
}
|
|
}
|
|
|
|
.widget_rss a.rsswidget .rss-widget-icon {
|
|
display: none;
|
|
}
|