Changeset 3202737
- Timestamp:
- 12/05/2024 02:59:36 AM (16 months ago)
- Location:
- themesflat-addons-for-elementor/trunk
- Files:
-
- 5 edited
-
assets/css/tf-imagebox.css (modified) (1 diff)
-
assets/css/tf-price-table.css (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
themesflat-addons-for-elementor.php (modified) (4 diffs)
-
widgets/widget-pricetable.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themesflat-addons-for-elementor/trunk/assets/css/tf-imagebox.css
r3129138 r3202737 1 1 /* Image Box */ 2 .elementor-widget-tfimagebox .elementor-widget-container{2 .elementor-widget-tfimagebox { 3 3 overflow: hidden; 4 4 } -
themesflat-addons-for-elementor/trunk/assets/css/tf-price-table.css
r3129138 r3202737 1 .elementor-widget-PriceTable > .elementor-widget-container{1 .elementor-widget-PriceTable { 2 2 position: relative; 3 3 overflow: initial; -
themesflat-addons-for-elementor/trunk/readme.txt
r3189190 r3202737 5 5 Tested up to: 6.7 6 6 Requires PHP: 5.2 7 Stable tag: 2.2. 37 Stable tag: 2.2.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
themesflat-addons-for-elementor/trunk/themesflat-addons-for-elementor.php
r3189189 r3202737 5 5 Author: Themesflat 6 6 Author URI: http://themesflat-addons.com/ 7 Version: 2.2. 37 Version: 2.2.4 8 8 Text Domain: themesflat-addons-for-elementor 9 9 Domain Path: /languages … … 140 140 add_action( 'wp', [ $this, 'hooks' ],100 ); 141 141 142 // Hook Animation All Widget 143 add_action('elementor/element/before_section_end', function( $section, $section_id, $args ) { 144 if( $section->get_name() == 'common' && $section_id == 'section_effects' ){ 145 146 $section->add_control( 147 'heading_tfanimation', 148 [ 149 'label' => esc_html__( 'TF Entrace Animation', 'themesflat-addons-for-elementor' ), 150 'type' => \Elementor\Controls_Manager::HEADING, 151 'separator' => 'before', 152 ] 153 ); 154 155 $section->add_control( 156 'ti_parallax', [ 157 'label' => __( 'Choose Animation', 'themesflat-addons-for-elementor' ), 158 'type' => \Elementor\Controls_Manager::SELECT, 159 'default' => '', 160 'options' => [ 161 '' => esc_html__( 'Default', 'themesflat-addons-for-elementor' ), 162 'tf-animated-item-fade' => esc_html__( 'Fade In', 'themesflat-addons-for-elementor' ), 163 'tf-animated-item' => esc_html__( 'Fade In Up', 'themesflat-addons-for-elementor' ), 164 'tf-animated-item-left' => esc_html__( 'Fade In Left', 'themesflat-addons-for-elementor' ), 165 'tf-animated-item-right' => esc_html__( 'Fade In Right', 'themesflat-addons-for-elementor' ), 166 'tf-animated-item-zoom-slide' => esc_html__( 'Zoom Slide', 'themesflat-addons-for-elementor' ), 167 'tf-animated-item-slide-right' => esc_html__( 'Slide In Right', 'themesflat-addons-for-elementor' ), 168 ], 169 'prefix_class' => '', 170 ] 171 ); 172 } 173 }, 10, 3 ); 174 // Hook Animation Container 175 add_action('elementor/element/before_section_end', function( $section, $section_id, $args ) { 176 if( $section->get_name() == 'container' && $section_id == 'section_effects' ){ 177 178 $section->add_control( 179 'heading_tfanimation', 180 [ 181 'label' => esc_html__( 'TF Entrace Animation', 'themesflat-addons-for-elementor' ), 182 'type' => \Elementor\Controls_Manager::HEADING, 183 'separator' => 'before', 184 ] 185 ); 186 187 $section->add_control( 188 'ti_parallax', [ 189 'label' => __( 'Choose Animation', 'themesflat-addons-for-elementor' ), 190 'type' => \Elementor\Controls_Manager::SELECT, 191 'default' => '', 192 'options' => [ 193 '' => esc_html__( 'Default', 'themesflat-addons-for-elementor' ), 194 'tf-animated-item-fade' => esc_html__( 'Fade In', 'themesflat-addons-for-elementor' ), 195 'tf-animated-item' => esc_html__( 'Fade In Up', 'themesflat-addons-for-elementor' ), 196 'tf-animated-item-left' => esc_html__( 'Fade In Left', 'themesflat-addons-for-elementor' ), 197 'tf-animated-item-right' => esc_html__( 'Fade In Right', 'themesflat-addons-for-elementor' ), 198 ], 199 'prefix_class' => '', 200 ] 201 ); 202 } 203 }, 10, 3 ); 204 142 205 143 } 206 144 … … 643 581 // group image 644 582 wp_register_style( 'tf-animation-item', plugins_url( '/assets/css/tf-animation-item.css', __FILE__ ) ); 645 646 // Entrace Animation647 wp_enqueue_style( 'entrace-animation', plugins_url( '/assets/css/tf-entrace-animation.css', __FILE__ ) );648 583 649 584 // video … … 777 712 wp_register_script( 'simple-parallax', plugins_url( '/assets/js/simple-parallax.min.js', __FILE__ ), [ 'jquery' ], false, true ); 778 713 wp_register_script( 'parallax-image', plugins_url( '/assets/js/tf-group-image.js', __FILE__ ), [ 'jquery' ], false, true ); 779 wp_enqueue_script( 'tf-animated', plugins_url( '/assets/js/tf-animated.js', __FILE__ ), [ 'jquery' ], false, true );714 780 715 781 716 // video -
themesflat-addons-for-elementor/trunk/widgets/widget-pricetable.php
r3129138 r3202737 584 584 'size_units' => ['px', 'em', '%'], 585 585 'selectors' => [ 586 '{{WRAPPER}} > .elementor-widget-container' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',586 '{{WRAPPER}} ' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 587 587 ], 588 588 ] … … 620 620 'toggle' => false, 621 621 'selectors' => [ 622 '{{WRAPPER}} > .elementor-widget-container' => 'overflow: {{VALUE}}',622 '{{WRAPPER}} ' => 'overflow: {{VALUE}}', 623 623 ], 624 624 ] … … 629 629 [ 630 630 'name' => 'general_shadow', 631 'selector' => '{{WRAPPER}} > .elementor-widget-container',631 'selector' => '{{WRAPPER}} ', 632 632 ] 633 633 );
Note: See TracChangeset
for help on using the changeset viewer.