Maywood: Reduce specificity on rules to hide extra color palettes.
This commit is contained in:
parent
33fc0eaebd
commit
178d3a07c5
1 changed files with 2 additions and 2 deletions
|
@ -180,8 +180,8 @@ function maywood_editor_styles() {
|
||||||
// Hide duplicate palette colors
|
// Hide duplicate palette colors
|
||||||
$colors_array = get_theme_mod( 'colors_manager' );
|
$colors_array = get_theme_mod( 'colors_manager' );
|
||||||
if ( ! empty( $colors_array ) && $colors_array['colors']['txt'] != '#686868' ) { // $config-global--color-foreground-light-default;
|
if ( ! empty( $colors_array ) && $colors_array['colors']['txt'] != '#686868' ) { // $config-global--color-foreground-light-default;
|
||||||
$inline_palette_css = '.block-editor-color-gradient-control .components-circular-option-picker__option-wrapper:nth-child(5),
|
$inline_palette_css = '.components-circular-option-picker__option-wrapper:nth-child(5),
|
||||||
.block-editor-color-gradient-control .components-circular-option-picker__option-wrapper:nth-child(6) {
|
.components-circular-option-picker__option-wrapper:nth-child(6) {
|
||||||
display: none;
|
display: none;
|
||||||
}';
|
}';
|
||||||
wp_add_inline_style( 'wp-edit-blocks', $inline_palette_css );
|
wp_add_inline_style( 'wp-edit-blocks', $inline_palette_css );
|
||||||
|
|
Loading…
Reference in a new issue