diff --git a/editor/assets/stylesheets/_z-index.scss b/editor/assets/stylesheets/_z-index.scss index 9b612dec8ca8f9..765d69fe230406 100644 --- a/editor/assets/stylesheets/_z-index.scss +++ b/editor/assets/stylesheets/_z-index.scss @@ -14,7 +14,7 @@ $z-layers: ( '.editor-inserter__tabs': 1, '.editor-inserter__tab.is-active': 1, '.components-panel__header': 1, - '.blocks-format-toolbar__link-modal': 1, + '.editor-format-toolbar__link-modal': 1, '.editor-block-switcher__menu': 2, '.editor-block-mover': 10, '.blocks-gallery-image__inline-menu': 10, @@ -37,7 +37,7 @@ $z-layers: ( // #adminmenuwrap { z-index: 9990 } '.components-popover': 1000000, '.components-autocomplete__results': 1000000, - '.blocks-url-input__suggestions': 9999, + '.editor-url-input__suggestions': 9999, ); @function z-index( $key ) { diff --git a/editor/block-autocomplete/index.js b/editor/block-autocomplete/index.js index f1e12bbcb047d5..363b2f2f754fba 100644 --- a/editor/block-autocomplete/index.js +++ b/editor/block-autocomplete/index.js @@ -45,7 +45,7 @@ class BlockAutocomplete extends Component { triggerPrefix="/" options={ options } onSelect={ this.onSelect } - className="blocks-block-autocomplete" + className="editor-block-autocomplete" > { children } diff --git a/editor/block-autocomplete/style.scss b/editor/block-autocomplete/style.scss index f7af4ee06a5c9e..908007ddb1b6f9 100644 --- a/editor/block-autocomplete/style.scss +++ b/editor/block-autocomplete/style.scss @@ -1,3 +1,3 @@ -.blocks-block-autocomplete .dashicon { +.editor-block-autocomplete .dashicon { margin-right: 8px; } diff --git a/editor/color-palette/index.js b/editor/color-palette/index.js index 67db4f57f6c000..8ad2734636d235 100644 --- a/editor/color-palette/index.js +++ b/editor/color-palette/index.js @@ -38,14 +38,14 @@ class ColorPalette extends Component { render() { const { colors, value, onChange } = this.props; return ( -