Changeset 3406530
- Timestamp:
- 12/01/2025 07:53:40 AM (3 months ago)
- Location:
- sifency-addons
- Files:
-
- 14 edited
-
tags/1.0.3/includes/traits/caption.php (modified) (2 diffs)
-
tags/1.0.3/includes/traits/content.php (modified) (2 diffs)
-
tags/1.0.3/includes/traits/label.php (modified) (3 diffs)
-
tags/1.0.3/includes/traits/meta-text.php (modified) (3 diffs)
-
tags/1.0.3/includes/traits/number.php (modified) (1 diff)
-
tags/1.0.3/includes/traits/separator.php (modified) (2 diffs)
-
tags/1.0.3/includes/traits/title.php (modified) (2 diffs)
-
trunk/includes/traits/caption.php (modified) (2 diffs)
-
trunk/includes/traits/content.php (modified) (2 diffs)
-
trunk/includes/traits/label.php (modified) (3 diffs)
-
trunk/includes/traits/meta-text.php (modified) (3 diffs)
-
trunk/includes/traits/number.php (modified) (1 diff)
-
trunk/includes/traits/separator.php (modified) (2 diffs)
-
trunk/includes/traits/title.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sifency-addons/tags/1.0.3/includes/traits/caption.php
r3406506 r3406530 116 116 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 117 117 'type' => Controls_Manager::COLOR, 118 'default' => 'var(--e-global-color-text)', 118 119 'selectors' => [ 119 120 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 157 158 ); 158 159 159 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );160 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 160 161 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $hover_selector_string, 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ], 'fields_options' => [ 'background' => [ 'label' => esc_html__( 'Text Fill', 'sifency-addons' ) ] ] ] ); 161 162 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/tags/1.0.3/includes/traits/content.php
r3406506 r3406530 110 110 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 111 111 'type' => Controls_Manager::COLOR, 112 'default' => 'var(--e-global-color-text)', 112 113 'selectors' => [ 113 114 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 150 151 ); 151 152 152 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );153 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 153 154 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $hover_selector_string, 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ], 'fields_options' => [ 'background' => [ 'label' => esc_html__( 'Text Fill', 'sifency-addons' ) ] ] ] ); 154 155 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/tags/1.0.3/includes/traits/label.php
r3406506 r3406530 138 138 'label' => esc_html__( 'Fill Type', 'sifency-addons' ), 139 139 'type' => Controls_Manager::SELECT, 140 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient ', 'image' => 'Image' ],140 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient & Image' ], 141 141 'default' => 'color', 142 142 'separator' => 'before', … … 153 153 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 154 154 'type' => Controls_Manager::COLOR, 155 'default' => 'var(--e-global-color-text)', 155 156 'selectors' => [ 156 157 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 225 226 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 226 227 'type' => Controls_Manager::COLOR, 228 'default' => 'var(--e-global-color-text)', 227 229 'selectors' => [ 228 230 $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', -
sifency-addons/tags/1.0.3/includes/traits/meta-text.php
r3406506 r3406530 37 37 $selector = '{{WRAPPER}} .sifency-meta-style'; 38 38 39 //============================================40 //== STYLE SECTION: META ==41 //============================================42 39 $this->start_controls_section( 43 40 $prefix . 'style_section', … … 57 54 $this->start_controls_tab( $prefix . 'normal_tab', [ 'label' => esc_html__( 'Normal', 'sifency-addons' ) ] ); 58 55 $this->add_control( $prefix . 'fill_type', [ 'label' => esc_html__( 'Fill Type', 'sifency-addons' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient & Image' ], 'default' => 'color' ] ); 59 $this->add_control( $prefix . 'color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ', ' . $selector . ' a' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'fill_type' => 'color' ] ] );56 $this->add_control( $prefix . 'color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ', ' . $selector . ' a' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 60 57 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $selector . ', ' . $selector . ' a', 'condition' => [ $prefix . 'fill_type' => [ 'gradient', 'image' ] ] ] ); 61 58 $this->add_control( $prefix . 'stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); … … 70 67 $this->start_controls_tab( $prefix . 'hover_tab', [ 'label' => esc_html__( 'Hover', 'sifency-addons' ) ] ); 71 68 $this->add_control( $prefix . 'hover_fill_type', [ 'label' => esc_html__( 'Fill Type', 'sifency-addons' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient & Image' ], 'default' => 'color' ] ); 72 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ':hover, ' . $selector . ' a:hover' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );69 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ':hover, ' . $selector . ' a:hover' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 73 70 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $selector . ':hover, ' . $selector . ' a:hover', 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ] ] ); 74 71 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/tags/1.0.3/includes/traits/number.php
r3406506 r3406530 115 115 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 116 116 'type' => Controls_Manager::COLOR, 117 'default' => 'var(--e-global-color-text)', 117 118 'selectors' => [ 118 119 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', -
sifency-addons/tags/1.0.3/includes/traits/separator.php
r3406506 r3406530 85 85 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 86 86 'type' => Controls_Manager::COLOR, 87 'default' => 'var(--e-global-color-text)', 87 88 'selectors' => [ 88 89 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 125 126 ); 126 127 127 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );128 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 128 129 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $hover_selector_string, 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ], 'fields_options' => [ 'background' => [ 'label' => esc_html__( 'Text Fill', 'sifency-addons' ) ] ] ] ); 129 130 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/tags/1.0.3/includes/traits/title.php
r3406506 r3406530 169 169 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 170 170 'type' => Controls_Manager::COLOR, 171 'default' => 'var(--e-global-color-text)', 171 172 'selectors' => [ 172 173 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 241 242 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 242 243 'type' => Controls_Manager::COLOR, 244 'default' => 'var(--e-global-color-text)', 243 245 'selectors' => [ 244 246 $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', -
sifency-addons/trunk/includes/traits/caption.php
r3406506 r3406530 116 116 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 117 117 'type' => Controls_Manager::COLOR, 118 'default' => 'var(--e-global-color-text)', 118 119 'selectors' => [ 119 120 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 157 158 ); 158 159 159 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );160 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 160 161 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $hover_selector_string, 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ], 'fields_options' => [ 'background' => [ 'label' => esc_html__( 'Text Fill', 'sifency-addons' ) ] ] ] ); 161 162 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/trunk/includes/traits/content.php
r3406506 r3406530 110 110 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 111 111 'type' => Controls_Manager::COLOR, 112 'default' => 'var(--e-global-color-text)', 112 113 'selectors' => [ 113 114 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 150 151 ); 151 152 152 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );153 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 153 154 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $hover_selector_string, 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ], 'fields_options' => [ 'background' => [ 'label' => esc_html__( 'Text Fill', 'sifency-addons' ) ] ] ] ); 154 155 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/trunk/includes/traits/label.php
r3406506 r3406530 138 138 'label' => esc_html__( 'Fill Type', 'sifency-addons' ), 139 139 'type' => Controls_Manager::SELECT, 140 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient ', 'image' => 'Image' ],140 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient & Image' ], 141 141 'default' => 'color', 142 142 'separator' => 'before', … … 153 153 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 154 154 'type' => Controls_Manager::COLOR, 155 'default' => 'var(--e-global-color-text)', 155 156 'selectors' => [ 156 157 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 225 226 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 226 227 'type' => Controls_Manager::COLOR, 228 'default' => 'var(--e-global-color-text)', 227 229 'selectors' => [ 228 230 $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', -
sifency-addons/trunk/includes/traits/meta-text.php
r3406506 r3406530 37 37 $selector = '{{WRAPPER}} .sifency-meta-style'; 38 38 39 //============================================40 //== STYLE SECTION: META ==41 //============================================42 39 $this->start_controls_section( 43 40 $prefix . 'style_section', … … 57 54 $this->start_controls_tab( $prefix . 'normal_tab', [ 'label' => esc_html__( 'Normal', 'sifency-addons' ) ] ); 58 55 $this->add_control( $prefix . 'fill_type', [ 'label' => esc_html__( 'Fill Type', 'sifency-addons' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient & Image' ], 'default' => 'color' ] ); 59 $this->add_control( $prefix . 'color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ', ' . $selector . ' a' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'fill_type' => 'color' ] ] );56 $this->add_control( $prefix . 'color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ', ' . $selector . ' a' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 60 57 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $selector . ', ' . $selector . ' a', 'condition' => [ $prefix . 'fill_type' => [ 'gradient', 'image' ] ] ] ); 61 58 $this->add_control( $prefix . 'stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); … … 70 67 $this->start_controls_tab( $prefix . 'hover_tab', [ 'label' => esc_html__( 'Hover', 'sifency-addons' ) ] ); 71 68 $this->add_control( $prefix . 'hover_fill_type', [ 'label' => esc_html__( 'Fill Type', 'sifency-addons' ), 'type' => Controls_Manager::SELECT, 'options' => [ 'color' => 'Color', 'gradient' => 'Gradient & Image' ], 'default' => 'color' ] ); 72 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ':hover, ' . $selector . ' a:hover' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );69 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $selector . ':hover, ' . $selector . ' a:hover' => 'color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 73 70 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $selector . ':hover, ' . $selector . ' a:hover', 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ] ] ); 74 71 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/trunk/includes/traits/number.php
r3406506 r3406530 115 115 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 116 116 'type' => Controls_Manager::COLOR, 117 'default' => 'var(--e-global-color-text)', 117 118 'selectors' => [ 118 119 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', -
sifency-addons/trunk/includes/traits/separator.php
r3406506 r3406530 85 85 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 86 86 'type' => Controls_Manager::COLOR, 87 'default' => 'var(--e-global-color-text)', 87 88 'selectors' => [ 88 89 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 125 126 ); 126 127 127 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ] ] );128 $this->add_control( $prefix . 'hover_color', [ 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};' ], 'condition' => [ $prefix . 'hover_fill_type' => 'color' ], 'default' => 'var(--e-global-color-text)' ] ); 128 129 $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => $prefix . 'hover_gradient_fill', 'types' => [ 'gradient', 'classic' ], 'selector' => $hover_selector_string, 'condition' => [ $prefix . 'hover_fill_type' => [ 'gradient', 'image' ] ], 'fields_options' => [ 'background' => [ 'label' => esc_html__( 'Text Fill', 'sifency-addons' ) ] ] ] ); 129 130 $this->add_control( $prefix . 'hover_stroke_switcher', [ 'label' => esc_html__( 'Enable Text Stroke', 'sifency-addons' ), 'type' => Controls_Manager::SWITCHER, 'separator' => 'before' ] ); -
sifency-addons/trunk/includes/traits/title.php
r3406506 r3406530 169 169 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 170 170 'type' => Controls_Manager::COLOR, 171 'default' => 'var(--e-global-color-text)', 171 172 'selectors' => [ 172 173 $selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};', … … 241 242 'label' => esc_html__( 'Text Color', 'sifency-addons' ), 242 243 'type' => Controls_Manager::COLOR, 244 'default' => 'var(--e-global-color-text)', 243 245 'selectors' => [ 244 246 $hover_selector_string => 'color: {{VALUE}}; -webkit-text-fill-color: {{VALUE}};',
Note: See TracChangeset
for help on using the changeset viewer.