From 422164bf7ad5c6da474d6ed6e75e05d424dc3cf7 Mon Sep 17 00:00:00 2001 From: Prateek Saxena Date: Tue, 19 May 2020 13:40:37 +0530 Subject: [PATCH] fix: remove references to editor.css closes #12 --- sticky-note-plugin.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sticky-note-plugin.php b/sticky-note-plugin.php index 0110c44..4677f05 100644 --- a/sticky-note-plugin.php +++ b/sticky-note-plugin.php @@ -29,13 +29,6 @@ function a_sticky_note_block() { true ); - wp_register_style( - 'sticky-note-editor', - plugins_url( 'editor.css', __FILE__), - array( 'wp-edit-blocks' ), - filemtime( plugin_dir_path( __FILE__ ) . 'editor.css' ) - ); - wp_register_style( 'sticky-note-style', plugins_url( 'style.css', __FILE__), @@ -49,7 +42,6 @@ function a_sticky_note_block() { 'sticky-note/sticky-note', array( 'style' => 'sticky-note-style', - 'editor_style' => 'sticky-note-editor', 'editor_script' => 'sticky-note', ) );