Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’ve come up with some CSS which overrides display:none on the customizer color pickers. I am not sure if display:none is an error, or if this is the intended behavior. This CSS should do the job for now. Add this to one of your CSS files and enqueue the file in functions.php and you should be good to go.

    /**
    * WordPress 4.9
    *
    * Override: display:none for color pickers;
    */

    .wp-picker-container > .wp-color-result{
    display: inline-block;
    height: 22px;
    min-width: 32px;
    border: 1px #ccc solid;
    }

    .wp-color-picker {
    display: inline !important;
    }

    .wp-picker-default {
    display: inline !important;
    float: right;
    margin: 0;
    }

    I notice the exact same issue. I have no idea where display:none is coming from. Overall the color picker behavior seems completely broken in both themes and plugins.

Viewing 2 replies - 1 through 2 (of 2 total)