Make WordPress Core

Ticket #39096: 39096.3.patch

File 39096.3.patch, 1.2 KB (added by tejas5989, 8 years ago)
  • wp-admin/css/color-picker.css

     
    9999}
    100100
    101101.wp-picker-container input[type="text"].wp-color-picker {
    102         width: 65px;
     102        width: 85px;
    103103        font-size: 12px;
    104104        font-family: monospace;
    105105        line-height: 16px;
    106106        margin: 0;
     107        padding-left: 15px;
    107108}
    108109
    109110.wp-color-picker::-webkit-input-placeholder {
  • wp-includes/customize/class-wp-customize-color-control.php

     
    114114                                <# if ( isHueSlider ) { #>
    115115                                        <input class="color-picker-hue" type="text" data-type="hue" />
    116116                                <# } else { #>
    117                                         <input class="color-picker-hex" type="text" maxlength="7" placeholder="<?php esc_attr_e( 'Hex Value' ); ?>" {{ defaultValue }} />
     117                                        <input class="color-picker-hex" type="text" maxlength="7" placeholder="#21759b" {{ defaultValue }} />
    118118                                <# } #>
    119119                        </div>
    120120                </label>