Skip to content

Commit

Permalink
マイクロバルーンのデフォルト色を白に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
yhira committed Apr 7, 2020
1 parent 511a77d commit cfef4a3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions lib/gutenberg.php
Expand Up @@ -399,16 +399,15 @@ function get_block_editor_color_palette_css(){
<?php //マイクロバルーン(背景色) ?>
.micro-balloon.has-<?php echo $slug; ?>-background-color {
background-color: <?php echo $color; ?>;
border-color: transparent;
border: 1px;
border-color: #fff;
}
.micro-balloon.has-<?php echo $slug; ?>-background-color.micro-bottom::after {
border-bottom-color: <?php echo $color; ?>;
border-top-color: transparent;
border-top-color: #fff;
}
.micro-balloon.has-<?php echo $slug; ?>-background-color::before {
border-top-color: transparent;
border-bottom-color: transparent;
border-top-color: #fff;
border-bottom-color: #fff;
}
.micro-balloon.has-<?php echo $slug; ?>-background-color::after {
border-top-color: <?php echo $color; ?>;
Expand Down Expand Up @@ -487,7 +486,7 @@ function get_block_editor_color_palette_css(){
.body .btn-wrap{
background-color: <?php echo $btn_wrap_bk_color; ?>;
color: #333;
border-color: transparent;
border-color: #fff;
font-size: 16px;
}

Expand Down

0 comments on commit cfef4a3

Please sign in to comment.