Changeset 2856373
- Timestamp:
- 01/29/2023 12:19:15 AM (3 years ago)
- Location:
- gum-elementor-addon
- Files:
-
- 45 added
- 6 edited
-
tags/1.2.19 (added)
-
tags/1.2.19/css (added)
-
tags/1.2.19/css/index.html (added)
-
tags/1.2.19/css/owl.carousel.css (added)
-
tags/1.2.19/css/style.css (added)
-
tags/1.2.19/gum-elementor-addon.php (added)
-
tags/1.2.19/helper.php (added)
-
tags/1.2.19/index.html (added)
-
tags/1.2.19/js (added)
-
tags/1.2.19/js/allscripts.js (added)
-
tags/1.2.19/js/index.html (added)
-
tags/1.2.19/js/jquery.easing.1.3.js (added)
-
tags/1.2.19/js/jquery.superslides.js (added)
-
tags/1.2.19/js/owl.carousel.min.js (added)
-
tags/1.2.19/js/price-table.js (added)
-
tags/1.2.19/languages (added)
-
tags/1.2.19/languages/gum-elementor-addon.pot (added)
-
tags/1.2.19/languages/index.html (added)
-
tags/1.2.19/readme.txt (added)
-
tags/1.2.19/widgets (added)
-
tags/1.2.19/widgets/accordion.php (added)
-
tags/1.2.19/widgets/blog_grid.php (added)
-
tags/1.2.19/widgets/blog_image.php (added)
-
tags/1.2.19/widgets/blog_lists.php (added)
-
tags/1.2.19/widgets/blog_pagination.php (added)
-
tags/1.2.19/widgets/blog_post_adjacent.php (added)
-
tags/1.2.19/widgets/blog_post_meta.php (added)
-
tags/1.2.19/widgets/blog_post_related.php (added)
-
tags/1.2.19/widgets/blog_post_share.php (added)
-
tags/1.2.19/widgets/blog_term.php (added)
-
tags/1.2.19/widgets/button.php (added)
-
tags/1.2.19/widgets/carousel_ibox.php (added)
-
tags/1.2.19/widgets/counter.php (added)
-
tags/1.2.19/widgets/heading.php (added)
-
tags/1.2.19/widgets/icon_list.php (added)
-
tags/1.2.19/widgets/index.html (added)
-
tags/1.2.19/widgets/popover_btn.php (added)
-
tags/1.2.19/widgets/post_slider.php (added)
-
tags/1.2.19/widgets/pricetable.php (added)
-
tags/1.2.19/widgets/progress.php (added)
-
tags/1.2.19/widgets/section.php (added)
-
tags/1.2.19/widgets/site_navigation.php (added)
-
tags/1.2.19/widgets/slideshow.php (added)
-
tags/1.2.19/widgets/toggle_period.php (added)
-
tags/1.2.19/widgets/totop_btn.php (added)
-
trunk/css/style.css (modified) (1 diff)
-
trunk/gum-elementor-addon.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/widgets/blog_grid.php (modified) (5 diffs)
-
trunk/widgets/heading.php (modified) (5 diffs)
-
trunk/widgets/pricetable.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gum-elementor-addon/trunk/css/style.css
r2822754 r2856373 520 520 521 521 .not-empty{ height: 0.1px; width: 0px; z-index: -999;} 522 .grid-posts,.grid-imboxs{ margin: 0; }522 .grid-posts,.grid-imboxs{ margin: 0; position: relative; display: inline-block; } 523 523 .grid-imboxs .grid-box,.grid-posts .grid-post{ width: 100%; float: left; } 524 524 .grid-posts .grid-post:not(.grid-col-1){ padding-left: 15px; padding-right: 15px; } -
gum-elementor-addon/trunk/gum-elementor-addon.php
r2822754 r2856373 5 5 * Plugin URI: http://themegum.com/ 6 6 * Description: Addon widget for Elementor. Slideshow, pricing table, icon list, recent post, blog term, post term, post share, post meta, post related, post adjacent, blog grid, post slider,navigation menu, image box, popover and to top button 7 * Version: 1.2.1 87 * Version: 1.2.19 8 8 * Author: TemeGUM 9 9 * Author URI: http://themegum.com -
gum-elementor-addon/trunk/readme.txt
r2822754 r2856373 72 72 73 73 == Changelog == 74 = 1.2.19 = 75 * Bux Fixing: Blog grid pagination margin ( blog grid widget ) 76 * Bux Fixing: Title missing text shadow and stroke ( gum heading widget ) 77 74 78 = 1.2.18 = 75 79 * Improvement: Adding counter title spacing ( native counter box widget ) -
gum-elementor-addon/trunk/widgets/blog_grid.php
r2822754 r2856373 13 13 use Elementor\Group_Control_Border; 14 14 use Elementor\Group_Control_Typography; 15 use Elementor\Group_Control_Box_Shadow; 15 16 use WP_Query; 16 17 use Gum_Elementor_Helper; … … 805 806 ); 806 807 808 809 $this->add_group_control( 810 Group_Control_Border::get_type(), 811 [ 812 'name' => 'post_grid_border', 813 'selector' => '{{WRAPPER}} .grid-posts .grid-post article', 814 ] 815 ); 816 817 818 $this->add_control( 819 'post_grid_bdhover', 820 [ 821 'label' => esc_html__( 'Hover Color', 'gum-elementor-addon' ), 822 'type' => Controls_Manager::COLOR, 823 'default' => '', 824 'selectors' => [ 825 '{{WRAPPER}} .grid-posts .grid-post article:hover' => 'border-color: {{VALUE}};', 826 ], 827 'condition' => [ 828 'post_grid_border_border!' => '' 829 ], 830 ] 831 ); 832 833 807 834 $this->add_control( 808 835 'post_grid_radius', … … 816 843 ] 817 844 ); 818 819 $this->add_group_control( 820 Group_Control_Border::get_type(), 821 [ 822 'name' => 'post_grid_border', 823 'selector' => '{{WRAPPER}} .grid-posts .grid-post article', 824 ] 825 ); 826 827 828 $this->add_control( 829 'post_grid_bdhover', 830 [ 831 'label' => esc_html__( 'Hover Color', 'gum-elementor-addon' ), 832 'type' => Controls_Manager::COLOR, 833 'default' => '', 834 'selectors' => [ 835 '{{WRAPPER}} .grid-posts .grid-post article:hover' => 'border-color: {{VALUE}};', 836 ], 837 'condition' => [ 838 'post_grid_border_border!' => '' 839 ], 840 ] 841 ); 845 842 846 843 847 $this->add_control( … … 1077 1081 ); 1078 1082 1083 $this->add_group_control( 1084 Group_Control_Border::get_type(), 1085 [ 1086 'name' => 'post_image_border', 1087 'selector' => '{{WRAPPER}} article .blog-image', 1088 ] 1089 ); 1090 1091 1092 $this->add_control( 1093 'post_image_bdhover', 1094 [ 1095 'label' => esc_html__( 'Hover Color', 'gum-elementor-addon' ), 1096 'type' => Controls_Manager::COLOR, 1097 'default' => '', 1098 'selectors' => [ 1099 '{{WRAPPER}} article:hover .post-top' => 'border-color: {{VALUE}};', 1100 ], 1101 'condition' => [ 1102 'post_image_border_border!' => '' 1103 ], 1104 ] 1105 ); 1106 1107 1108 $this->add_control( 1109 'post_image_radius', 1110 [ 1111 'label' => esc_html__( 'Border Radius', 'gum-elementor-addon' ), 1112 'type' => Controls_Manager::DIMENSIONS, 1113 'size_units' => [ 'px', '%' ], 1114 'selectors' => [ 1115 '{{WRAPPER}} article .blog-image' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 1116 ], 1117 ] 1118 ); 1119 1120 1121 $this->add_group_control( 1122 Group_Control_Box_Shadow::get_type(), 1123 [ 1124 'name' => 'post_image_shadow', 1125 'selector' => '{{WRAPPER}} article .blog-image', 1126 ] 1127 ); 1128 1129 1130 1131 $this->add_responsive_control( 1132 'post_image_padding', 1133 [ 1134 'label' => esc_html__( 'Padding', 'gum-elementor-addon' ), 1135 'type' => Controls_Manager::DIMENSIONS, 1136 'size_units' => [ 'px', '%', 'em' ], 1137 'selectors' => [ 1138 '{{WRAPPER}} article .blog-image' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 1139 ], 1140 'separator' => 'before' 1141 ] 1142 ); 1143 1079 1144 $this->add_responsive_control( 1080 1145 'post_image_margin', … … 1088 1153 ] 1089 1154 ); 1090 1091 $this->add_responsive_control(1092 'post_image_padding',1093 [1094 'label' => esc_html__( 'Padding', 'gum-elementor-addon' ),1095 'type' => Controls_Manager::DIMENSIONS,1096 'size_units' => [ 'px', '%', 'em' ],1097 'selectors' => [1098 '{{WRAPPER}} article .blog-image' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',1099 ],1100 ]1101 );1102 1103 $this->add_control(1104 'post_image_radius',1105 [1106 'label' => esc_html__( 'Border Radius', 'gum-elementor-addon' ),1107 'type' => Controls_Manager::DIMENSIONS,1108 'size_units' => [ 'px', '%' ],1109 'selectors' => [1110 '{{WRAPPER}} article .blog-image' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',1111 ],1112 ]1113 );1114 1115 $this->add_group_control(1116 Group_Control_Border::get_type(),1117 [1118 'name' => 'post_image_border',1119 'selector' => '{{WRAPPER}} article .blog-image',1120 ]1121 );1122 1123 1124 $this->add_control(1125 'post_image_bdhover',1126 [1127 'label' => esc_html__( 'Hover Color', 'gum-elementor-addon' ),1128 'type' => Controls_Manager::COLOR,1129 'default' => '',1130 'selectors' => [1131 '{{WRAPPER}} article:hover .post-top' => 'border-color: {{VALUE}};',1132 ],1133 'condition' => [1134 'post_image_border_border!' => ''1135 ],1136 ]1137 );1138 1139 1155 1140 1156 $this->end_controls_section(); -
gum-elementor-addon/trunk/widgets/heading.php
r2822754 r2856373 334 334 [ 335 335 'name' => 'title_text_stroke', 336 'selector' => '{{WRAPPER}} .section-main-title > span',336 'selector' => '{{WRAPPER}} .section-main-title', 337 337 ] 338 338 ); … … 342 342 [ 343 343 'name' => 'title_text_shadow', 344 'selector' => '{{WRAPPER}} .section-main-title > span',344 'selector' => '{{WRAPPER}} .section-main-title', 345 345 ] 346 346 ); … … 352 352 'prefix_title_style', 353 353 [ 354 'label' => esc_html__( 'Prefix Title', ' elementor' ),354 'label' => esc_html__( 'Prefix Title', 'gum-elementor-addon' ), 355 355 'tab' => Controls_Manager::TAB_STYLE, 356 356 'condition' => [ 357 'prefix_heading[value]!' => '' 357 'prefix_heading[value]!' => '', 358 'heading_source[value]' => 'text' 358 359 ], 359 360 ] … … 419 420 'sub_title_style', 420 421 [ 421 'label' => esc_html__( 'Suffix Title', ' elementor' ),422 'label' => esc_html__( 'Suffix Title', 'gum-elementor-addon' ), 422 423 'tab' => Controls_Manager::TAB_STYLE, 423 424 'condition' => [ 424 'sub_heading[value]!' => '' 425 'sub_heading[value]!' => '', 426 'heading_source[value]' => 'text' 425 427 ], 426 428 ] … … 486 488 'title_decoration', 487 489 [ 488 'label' => esc_html__( 'Decoration', ' elementor' ),490 'label' => esc_html__( 'Decoration', 'gum-elementor-addon' ), 489 491 'tab' => Controls_Manager::TAB_STYLE, 490 492 'condition' => [ -
gum-elementor-addon/trunk/widgets/pricetable.php
r2800703 r2856373 1775 1775 ); 1776 1776 1777 $this->add_group_control( 1778 Group_Control_Box_Shadow::get_type(), 1779 [ 1780 'name' => 'button_box_shadow', 1781 'selector' => '{{WRAPPER}} .elementor-button', 1782 ] 1783 ); 1784 1777 1785 $this->add_responsive_control( 1778 1786 'btn_text_padding', … … 1783 1791 'selectors' => [ 1784 1792 '{{WRAPPER}} .elementor-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 1785 ] 1786 ] 1787 ); 1788 1789 $this->add_group_control( 1790 Group_Control_Box_Shadow::get_type(), 1791 [ 1792 'name' => 'button_box_shadow', 1793 'selector' => '{{WRAPPER}} .elementor-button', 1793 ], 1794 'separator' => 'before' 1794 1795 ] 1795 1796 );
Note: See TracChangeset
for help on using the changeset viewer.