Make WordPress Core

Ticket #42078: 42078-class-wp-customize-color-control.php.diff

File 42078-class-wp-customize-color-control.php.diff, 1.4 KB (added by subrataemfluence, 7 years ago)

PHP diff file

  • .php

    old new  
    103103                        }
    104104                        defaultValueAttr = ' data-default-color=' + defaultValue; // Quotes added automatically.
    105105                } #>
    106                 <label>
    107                         <# if ( data.label ) { #>
    108                                 <span class="customize-control-title">{{{ data.label }}}</span>
     106               
     107                <# if ( data.label ) { #>
     108                        <span class="customize-control-title">{{{ data.label }}}</span>
     109                <# } #>
     110                <# if ( data.description ) { #>
     111                        <span class="description customize-control-description">{{{ data.description }}}</span>
     112                <# } #>
     113                <div class="customize-control-content">
     114                        <# if ( isHueSlider ) { #>
     115                                <input class="color-picker-hue" type="text" data-type="hue" maxlength="3" />
     116                        <# } else { #>
     117                                <input class="color-picker-hex" type="text" maxlength="7" placeholder="{{ defaultValue }}" {{ defaultValueAttr }} />
    109118                        <# } #>
    110                         <# if ( data.description ) { #>
    111                                 <span class="description customize-control-description">{{{ data.description }}}</span>
    112                         <# } #>
    113                         <div class="customize-control-content">
    114                                 <# if ( isHueSlider ) { #>
    115                                         <input class="color-picker-hue" type="text" data-type="hue" />
    116                                 <# } else { #>
    117                                         <input class="color-picker-hex" type="text" maxlength="7" placeholder="{{ defaultValue }}" {{ defaultValueAttr }} />
    118                                 <# } #>
    119                         </div>
    120                 </label>
     119                </div>
     120
    121121                <?php
    122122        }
    123123}