diff --git a/packages/plugins/blueprint/src/block.json b/packages/plugins/blueprint/src/block.json index e3dbf6b..d97e40f 100644 --- a/packages/plugins/blueprint/src/block.json +++ b/packages/plugins/blueprint/src/block.json @@ -1,6 +1,6 @@ { "$schema": "https://schemas.wp.org/trunk/block.json", - "apiVersion": 2, + "apiVersion": 3, "editorScript": "file:editor.js", "viewScript": "file:view.js" } diff --git a/packages/plugins/blueprint/src/example-block/block.json b/packages/plugins/blueprint/src/example-block/block.json index f8a0373..8499105 100644 --- a/packages/plugins/blueprint/src/example-block/block.json +++ b/packages/plugins/blueprint/src/example-block/block.json @@ -1,6 +1,6 @@ { "$schema": "https://schemas.wp.org/trunk/block.json", - "apiVersion": 2, + "apiVersion": 3, "name": "dekode/example-block", "title": "Example Block", "category": "widgets", diff --git a/packages/themes/block-theme/src/block.json b/packages/themes/block-theme/src/block.json index e3dbf6b..d97e40f 100644 --- a/packages/themes/block-theme/src/block.json +++ b/packages/themes/block-theme/src/block.json @@ -1,6 +1,6 @@ { "$schema": "https://schemas.wp.org/trunk/block.json", - "apiVersion": 2, + "apiVersion": 3, "editorScript": "file:editor.js", "viewScript": "file:view.js" } diff --git a/packages/themes/block-theme/src/editor.css b/packages/themes/block-theme/src/editor.css index 8ed4c3f..8e1b5f0 100644 --- a/packages/themes/block-theme/src/editor.css +++ b/packages/themes/block-theme/src/editor.css @@ -3,7 +3,9 @@ Less prominent editor post title for clean singular template. Remove this if you're using a singular.html template with hard coded title block. */ .post-type-page .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper, -.post-type-post .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper { +.post-type-post .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper, +.post-type-page.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper, +.post-type-post.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper { background-color: transparent; border-bottom: 1px solid #e0e0e0; color: inherit; diff --git a/packages/themes/dekode-theme/src/block.json b/packages/themes/dekode-theme/src/block.json index d64aa0e..a3eae21 100644 --- a/packages/themes/dekode-theme/src/block.json +++ b/packages/themes/dekode-theme/src/block.json @@ -1,5 +1,5 @@ { "$schema": "https://schemas.wp.org/trunk/block.json", - "apiVersion": 2, + "apiVersion": 3, "viewScript": "file:view.js" }