Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions e2e/color-gradient.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ test.describe( 'Color and Gradient', () => {
await buttonText.click();
await page.keyboard.type( 'Colored' );

// Open block settings and navigate to the Styles tab.
// Open block settings.
await editor.openBlockSettings();
await page.getByRole( 'tab', { name: 'Styles' } ).click();

// Click the Background color control.
await page
Expand Down
1,470 changes: 659 additions & 811 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@wordpress/deprecated": "^4.38.0",
"@wordpress/dom": "^4.38.0",
"@wordpress/dom-ready": "^4.38.0",
"@wordpress/edit-post": "^8.38.0",
"@wordpress/edit-post": "^8.41.0",
"@wordpress/editor": "^14.38.0",
"@wordpress/element": "^6.38.0",
"@wordpress/escape-html": "^3.38.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ index 291df03..5b8ef8e 100644
headerTitle: __("Add a block"),
renderToggle: this.renderToggle,
diff --git a/node_modules/@wordpress/block-editor/build-module/components/provider/index.mjs b/node_modules/@wordpress/block-editor/build-module/components/provider/index.mjs
index 8dc59a7..dd2a761 100644
index bbb24cd..ca1c30a 100644
--- a/node_modules/@wordpress/block-editor/build-module/components/provider/index.mjs
+++ b/node_modules/@wordpress/block-editor/build-module/components/provider/index.mjs
@@ -147,7 +147,7 @@ var ExperimentalBlockEditorProvider = withRegistryProvider(
Expand All @@ -51,7 +51,7 @@ index 8dc59a7..dd2a761 100644
var provider_default = BlockEditorProvider;
export {
diff --git a/node_modules/@wordpress/block-editor/package.json b/node_modules/@wordpress/block-editor/package.json
index 27d6afa..87252a5 100644
index 788088f..9cc3fe6 100644
--- a/node_modules/@wordpress/block-editor/package.json
+++ b/node_modules/@wordpress/block-editor/package.json
@@ -39,7 +39,9 @@
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
diff --git a/node_modules/@wordpress/block-library/build-module/image/image.mjs b/node_modules/@wordpress/block-library/build-module/image/image.mjs
index 4b78108..bbc4160 100644
index ffe2563..e16c099 100644
--- a/node_modules/@wordpress/block-library/build-module/image/image.mjs
+++ b/node_modules/@wordpress/block-library/build-module/image/image.mjs
@@ -332,7 +332,7 @@ function Image({
@@ -339,7 +339,7 @@ function Image({
const hasNonContentControls = blockEditingMode === "default";
const isContentOnlyMode = blockEditingMode === "contentOnly";
const showDimensionsControls = allowResize && hasNonContentControls;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/node_modules/@wordpress/editor/package.json b/node_modules/@wordpress/editor/package.json
index 2a0fc01..b1a3b9b 100644
index e068a9a..fcfeee8 100644
--- a/node_modules/@wordpress/editor/package.json
+++ b/node_modules/@wordpress/editor/package.json
@@ -38,7 +38,8 @@
Expand Down
9 changes: 0 additions & 9 deletions src/components/visual-editor/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,6 @@
display: none;
}

// Manually copy styles required by Gutenberg that are provided by the WP Admin
// environment in the form of the `load-styles.php` utility.
// https://github.com/WordPress/wordpress-develop/blob/a82874058f58575dbba64ce09b6dcbd43ccf5fdc/src/wp-admin/css/common.css#L2617-L2621
.gutenberg-kit-visual-editor :where(fieldset) {
border: 0;
padding: 0;
margin: 0;
}

// TODO: Styles improving small-screen layout. Ideally we instead improve
// Gutenberg itself or implement our own error boudnary--including matching copy
// content/error functionality.
Expand Down
9 changes: 9 additions & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,15 @@ $baseline-interactive-font-size: 17px;
}
}

// Manually copy styles required by Gutenberg that are provided by the WP Admin
// environment in the form of the `load-styles.php` utility.
// https://github.com/WordPress/wordpress-develop/blob/a82874058f58575dbba64ce09b6dcbd43ccf5fdc/src/wp-admin/css/common.css#L2617-L2621
.gutenberg-kit :where(fieldset) {
border: 0;
padding: 0;
margin: 0;
}

// iOS-specific styling for block settings menu
.gutenberg-kit.is-ios .block-settings-menu {
background-color: rgba(0, 0, 0, 0.3);
Expand Down
Loading