File manager - Edit - /home/vblioqus/public_html/wp-content/themes/kadence/inc/customizer/options/secondary-button-options.php
Back
<?php /** * Secondary Button Options * * @package Kadence */ namespace Kadence; use Kadence\Theme_Customizer; use function Kadence\kadence; Theme_Customizer::add_settings( array( 'buttons_secondary_color' => array( 'control_type' => 'kadence_color_control', 'section' => 'secondary_button', 'label' => esc_html__( 'Text Colors', 'kadence' ), 'default' => kadence()->default( 'buttons_secondary_color' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.button.button-style-secondary', 'property' => 'color', 'pattern' => '$', 'key' => 'color', ), array( 'type' => 'css', 'selector' => '.button.button-style-secondary:hover', 'property' => 'color', 'pattern' => '$', 'key' => 'hover', ), ), 'input_attrs' => array( 'colors' => array( 'color' => array( 'tooltip' => __( 'Initial Color', 'kadence' ), 'palette' => true, ), 'hover' => array( 'tooltip' => __( 'Hover Color', 'kadence' ), 'palette' => true, ), ), ), ), 'buttons_secondary_background' => array( 'control_type' => 'kadence_color_control', 'section' => 'secondary_button', 'label' => esc_html__( 'Background Colors', 'kadence' ), 'default' => kadence()->default( 'buttons_secondary_background' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.button.button-style-secondary', 'property' => 'background', 'pattern' => '$', 'key' => 'color', ), array( 'type' => 'css', 'selector' => '.button.button-style-secondary:hover', 'property' => 'background', 'pattern' => '$', 'key' => 'hover', ), ), 'input_attrs' => array( 'colors' => array( 'color' => array( 'tooltip' => __( 'Initial Color', 'kadence' ), 'palette' => true, ), 'hover' => array( 'tooltip' => __( 'Hover Color', 'kadence' ), 'palette' => true, ), ), 'allowGradient' => true, ), ), 'buttons_secondary_border_colors' => array( 'control_type' => 'kadence_color_control', 'section' => 'secondary_button', 'label' => esc_html__( 'Border Colors', 'kadence' ), 'default' => kadence()->default( 'buttons_secondary_border' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.button.button-style-secondary', 'property' => 'border-color', 'pattern' => '$', 'key' => 'color', ), array( 'type' => 'css', 'selector' => '.button.button-style-secondary:hover', 'property' => 'border-color', 'pattern' => '$', 'key' => 'hover', ), ), 'input_attrs' => array( 'colors' => array( 'color' => array( 'tooltip' => __( 'Initial Color', 'kadence' ), 'palette' => true, ), 'hover' => array( 'tooltip' => __( 'Hover Color', 'kadence' ), 'palette' => true, ), ), ), ), 'buttons_secondary_border' => array( 'control_type' => 'kadence_border_control', 'section' => 'secondary_button', 'label' => esc_html__( 'Border', 'kadence' ), 'default' => kadence()->default( 'buttons_secondary_border' ), 'live_method' => array( array( 'type' => 'css_border', 'selector' => '.button.button-style-secondary', 'property' => 'border', 'pattern' => '$', 'key' => 'border', ), ), 'input_attrs' => array( 'responsive' => true, 'color' => false, ), ), 'buttons_secondary_border_radius' => array( 'control_type' => 'kadence_range_control', 'section' => 'secondary_button', 'label' => esc_html__( 'Border Radius', 'kadence' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.button.button-style-secondary', 'property' => 'border-radius', 'pattern' => '$', 'key' => 'size', ), ), 'default' => kadence()->default( 'buttons_secondary_border_radius' ), 'input_attrs' => array( 'min' => array( 'px' => 0, 'em' => 0, 'rem' => 0, '%' => 0, ), 'max' => array( 'px' => 100, 'em' => 12, 'rem' => 12, '%' => 100, ), 'step' => array( 'px' => 1, 'em' => 0.01, 'rem' => 0.01, '%' => 1, ), 'units' => array( 'px', 'em', 'rem', '%' ), 'responsive' => true, ), ), 'buttons_secondary_typography' => array( 'control_type' => 'kadence_typography_control', 'section' => 'secondary_button', 'label' => esc_html__( 'Font', 'kadence' ), 'default' => kadence()->default( 'buttons_secondary_typography' ), 'live_method' => array( array( 'type' => 'css_typography', 'selector' => '.button.button-style-secondary', 'pattern' => array( 'desktop' => '$', 'tablet' => '$', 'mobile' => '$', ), 'property' => 'font', 'key' => 'typography', ), ), 'input_attrs' => array( 'id' => 'buttons_secondary_typography', 'options' => 'no-color', ), ), 'buttons_secondary_padding' => array( 'control_type' => 'kadence_measure_control', 'section' => 'secondary_button', 'priority' => 10, 'default' => kadence()->default( 'buttons_secondary_padding' ), 'label' => esc_html__( 'Padding', 'kadence' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.button.button-style-secondary', 'property' => 'padding', 'pattern' => '$', 'key' => 'measure', ), ), 'input_attrs' => array( 'responsive' => true, ), ), 'buttons_secondary_shadow' => array( 'control_type' => 'kadence_shadow_control', 'section' => 'secondary_button', 'priority' => 20, 'label' => esc_html__( 'Button Shadow', 'kadence' ), 'live_method' => array( array( 'type' => 'css_boxshadow', 'selector' => '.button.button-style-secondary', 'property' => 'box-shadow', 'pattern' => '$', 'key' => '', ), ), 'default' => kadence()->default( 'buttons_secondary_shadow' ), ), 'buttons_secondary_shadow_hover' => array( 'control_type' => 'kadence_shadow_control', 'section' => 'secondary_button', 'priority' => 20, 'label' => esc_html__( 'Button Hover State Shadow', 'kadence' ), 'live_method' => array( array( 'type' => 'css_boxshadow', 'selector' => '.button.button-style-secondary:hover', 'property' => 'box-shadow', 'pattern' => '$', 'key' => '', ), ), 'default' => kadence()->default( 'buttons_secondary_shadow_hover' ), ), ) );
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings