Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

管理画面ツールバーのCSSの読み込み不具合修正 #216

Merged
merged 3 commits into from
Oct 22, 2024
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: 3 additions & 0 deletions inc/edit-post/header-toolbar/style-index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vk-patterns-header-toolbar .components-external-link__contents {
text-decoration: none;
}
2 changes: 1 addition & 1 deletion inc/edit-post/header-toolbar/vkp-header-toolbar-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function vbp_edit_post_enqueue_scripts() {

wp_enqueue_style(
'vk-patterns-header-toolbar-css',
VBP_URL . 'build/edit-post/header-toolbar/style-index.css'
VBP_URL . 'inc/edit-post/header-toolbar/style-index.css'
);
}
add_action( 'enqueue_block_editor_assets', 'vbp_edit_post_enqueue_scripts' );
2 changes: 2 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ When you activate this plugin that create new custom post type for custom block

== Changelog ==

[ Bug fix ] Fix an issue with the CSS not loading correctly in the admin toolbar.

= 1.32.4 =
[ Design tuning ] Fixed "Fit columns alignfull" so that "Outer" also has full width.

Expand Down
Loading