Update @wordpress packages

Update packages to include these bug fixes from Gutenberg:

- Include cascading properties in Navigation deprecation
- Reorganize e2e tests folders and file
- Border panel: Update to display multiple palette origins
- Add CSS fix for 33580
- Add: Uneditable duotone palette on the palette gradient panel
- Site Editor: Allow editing custom template title
- Writing Flow: Double escape unselects all blocks
- Fix icon scaling.
- [Block Library - Query Pagination Next/Previous]: Remove text and link color support
- Add: Border indication to global styles colors.
- Color Picker: Improve border, padding, and box shadow styles.
- theme.json: sort keys alphabetically
- Remove navigationArea context.

See #54487.

Built from https://develop.svn.wordpress.org/trunk@52277


git-svn-id: http://core.svn.wordpress.org/trunk@51869 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
noisysocks
2021-11-30 05:48:28 +00:00
parent 43290b2e04
commit dc3ffcbde3
30 changed files with 286 additions and 122 deletions

View File

@@ -1534,6 +1534,7 @@ ul.has-background {
line-height: 0;
display: inline-block;
vertical-align: middle;
font-size: inherit;
padding: 0;
background-color: inherit;
color: currentColor;

File diff suppressed because one or more lines are too long

View File

@@ -1556,6 +1556,7 @@ ul.has-background {
line-height: 0;
display: inline-block;
vertical-align: middle;
font-size: inherit;
padding: 0;
background-color: inherit;
color: currentColor;

File diff suppressed because one or more lines are too long

View File

@@ -890,6 +890,15 @@ input.components-combobox-control__input[type=text]:focus {
cursor: pointer;
}
.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content {
overflow: visible;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
border: none;
}
.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content > div {
padding: 0;
}
.components-custom-gradient-picker__gradient-bar:not(.has-gradient) {
opacity: 0.4;
}

File diff suppressed because one or more lines are too long

View File

@@ -890,6 +890,15 @@ input.components-combobox-control__input[type=text]:focus {
cursor: pointer;
}
.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content {
overflow: visible;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
border: none;
}
.components-dropdown__content.components-color-palette__custom-color-dropdown-content .components-popover__content > div {
padding: 0;
}
.components-custom-gradient-picker__gradient-bar:not(.has-gradient) {
opacity: 0.4;
}

File diff suppressed because one or more lines are too long

View File

@@ -566,13 +566,13 @@ body.is-fullscreen-mode .interface-interface-skeleton {
margin-right: 0;
display: block;
border-radius: 50%;
border: 0;
height: 24px;
width: 24px;
padding: 0;
background-image: repeating-linear-gradient(-45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0), repeating-linear-gradient(-45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
background-position: 100% 0, 25px 25px;
background-size: calc(2 * 5px) calc(2 * 5px);
border: 1px solid #ddd;
}
.edit-site-global-styles-header__description {
@@ -594,6 +594,14 @@ body.is-fullscreen-mode .interface-interface-skeleton {
min-height: 32px;
}
h2.edit-site-global-styles-gradient-palette-panel__duotone-heading.components-heading {
text-transform: uppercase;
line-height: 24px;
font-weight: 500;
font-size: 11px;
margin-bottom: 8px;
}
.edit-site-header {
align-items: center;
background-color: #fff;

File diff suppressed because one or more lines are too long

View File

@@ -566,13 +566,13 @@ body.is-fullscreen-mode .interface-interface-skeleton {
margin-left: 0;
display: block;
border-radius: 50%;
border: 0;
height: 24px;
width: 24px;
padding: 0;
background-image: repeating-linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0), repeating-linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
background-position: 0 0, 25px 25px;
background-size: calc(2 * 5px) calc(2 * 5px);
border: 1px solid #ddd;
}
.edit-site-global-styles-header__description {
@@ -594,6 +594,14 @@ body.is-fullscreen-mode .interface-interface-skeleton {
min-height: 32px;
}
h2.edit-site-global-styles-gradient-palette-panel__duotone-heading.components-heading {
text-transform: uppercase;
line-height: 24px;
font-weight: 500;
font-size: 11px;
margin-bottom: 8px;
}
.edit-site-header {
align-items: center;
background-color: #fff;

File diff suppressed because one or more lines are too long