PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.6.0
ShopBuilder – WooCommerce Builder For Elementor v2.6.0
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
shopbuilder / app / Elementor / Helper / ControlSelectors.php

ControlSelectors.php in ShopBuilder – WooCommerce Builder For Elementor 2.6.0, at app/Elementor/Helper/ControlSelectors.php

1,919 lines 151.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * BuilderFns class
4 *
5 * The builder.
6 *
7 * @package RadiusTheme\SB
8 * @since 1.0.0
9 */
10
11 namespace RadiusTheme\SB\Elementor\Helper;
12
13 use RadiusTheme\SB\Elementor\Widgets\General\{AdvancedHeading,
14 DropCaps,
15 ShopBuilderButton,
16 CallToAction,
17 InfoBox,
18 FlipBox,
19 Counter,
20 CountDown,
21 PricingTable,
22 ProgressBar,
23 ImageAccordion,
24 ShopBuilderFaq,
25 LogoSliderAndGrid,
26 Testimonial,
27 TeamMember,
28 PostList,
29 PostGrid
30 };
31
32 // Do not allow directly accessing this file.
33 if ( ! defined( 'ABSPATH' ) ) {
34 exit( 'This script cannot be accessed directly.' );
35 }
36
37 /**
38 * BuilderFns class
39 */
40 class ControlSelectors {
41
42 /**
43 * Get Widget Selectors.
44 *
45 * @param object $widget Widget object.
46 *
47 * @return array
48 */
49 public static function get_widget_selectors( $widget ): array {
50 $selectors = [];
51 $widget_selectors = self::widget_selectors();
52 if ( ! empty( $widget_selectors[ $widget->rtsb_base ] ) ) {
53 $selectors = $widget_selectors[ $widget->rtsb_base ];
54 }
55
56 return apply_filters( 'rtsb/elements/elementor/widget/selectors/' . $widget->rtsb_base, $selectors, $widget );
57 }
58
59 /**
60 * Widget Control Selectors.
61 *
62 * @return array
63 */
64 private static function widget_selectors(): array {
65 $selectors = array_merge(
66 self::product_widget_selectors(),
67 self::archive_widget_selectors(),
68 self::cart_widget_selectors(),
69 self::checkout_widget_selectors(),
70 self::general_widget_selectors()
71 );
72
73 return apply_filters( 'rtsb/elements/elementor/widget/selectors', $selectors );
74 }
75
76 /**
77 * Carousel Selectors.
78 *
79 * @return array
80 */
81 public static function carousel_selector(): array {
82 $defaults = [
83 'slider_btn' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn',
84 'slider_wrapper' => '{{WRAPPER}} .rtsb-carousel-slider .swiper-wrapper',
85 'slider_pagination' => '{{WRAPPER}} .rtsb-slider-pagination .swiper-pagination-bullet',
86 'slider_pagination_active' => '{{WRAPPER}} .rtsb-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active',
87 ];
88
89 return apply_filters( 'rtsb/elements/elementor/product_carousel_selectors', $defaults );
90 }
91
92 /**
93 * Carousel Selectors.
94 *
95 * @return array
96 */
97 public static function review_star_icon_selector(): array {
98 $defaults = [
99 'review_star_icon_default_color' => '{{WRAPPER}} .star-rating::before, {{WRAPPER}} p.stars a:before, {{WRAPPER}} p.stars a:hover~a:before, {{WRAPPER}} p.stars.selected a.active~a:before',
100 'review_star_icon_color' => '{{WRAPPER}} .star-rating span::before, {{WRAPPER}} p.stars.selected a.active:before, {{WRAPPER}} p.stars:hover a:before, {{WRAPPER}} p.stars.selected a:not(.active):before, {{WRAPPER}} p.stars.selected a.active:before',
101 'review_star_icon_size' => '{{WRAPPER}} .star-rating',
102 'review_star_icon_specing' => '{{WRAPPER}} .star-rating',
103 'review_star_icon_margin' => '{{WRAPPER}} .woocommerce-product-rating',
104 ];
105
106 return apply_filters( 'rtsb/elements/elementor/review_star_icon_selector', $defaults );
107 }
108
109 /**
110 * Carousel Selectors.
111 *
112 * @return array
113 */
114 public static function button_settings_selector(): array {
115 $defaults = [
116 'button_typography' => '{{WRAPPER}} .button',
117 'button_height' => '{{WRAPPER}} .button',
118 'button_width' => '{{WRAPPER}} .button',
119 'button_text_color_normal' => '{{WRAPPER}} .button,{{WRAPPER}} .rtsb-myacount-page .woocommerce-table tbody td a.button,{{WRAPPER}} .rtsb-myacount-page .woocommerce-orders-table tbody td a.button,{{WRAPPER}} .rtsb-myacount-page .woocommerce-pagination a.button',
120 'button_bg_color_normal' => '{{WRAPPER}} .button',
121 'button_border' => '{{WRAPPER}} .button',
122 'button_text_color_hover' => '{{WRAPPER}} .button:hover,{{WRAPPER}} .rtsb-myacount-page .woocommerce-table tbody td a.button:hover,{{WRAPPER}} .rtsb-myacount-page .woocommerce-pagination a.button:hover,{{WRAPPER}} .rtsb-myacount-page .woocommerce-orders-table tbody td a.button:hover',
123 'button_bg_color_hover' => '{{WRAPPER}} .button:hover',
124 'button_border_hover_color' => '{{WRAPPER}} .button:hover',
125 'button_border_radius' => '{{WRAPPER}} .button',
126 'button_padding' => '{{WRAPPER}} .button',
127 'button_margin' => '{{WRAPPER}} .button',
128 ];
129
130 return apply_filters( 'rtsb/elements/elementor/button_settings_selector', $defaults );
131 }
132
133 /**
134 * Carousel Selectors.
135 *
136 * @return array
137 */
138 public static function reviews_settings_selecotor(): array {
139 $defaults = array_merge(
140 self::review_star_icon_selector(),
141 [
142 'review_heading_typography' => '{{WRAPPER}} #reviews .woocommerce-Reviews-title',
143 'review_heading_color' => '{{WRAPPER}} #reviews .woocommerce-Reviews-title',
144 'review_title_margin' => '{{WRAPPER}} #reviews .woocommerce-Reviews-title',
145
146 'form_heading_typography' => '{{WRAPPER}} #reviews #reply-title',
147 'form_heading_color' => '{{WRAPPER}} #reviews #reply-title',
148 'noform_heading_color' => '{{WRAPPER}} #reviews .woocommerce-noreviews',
149 'form_title_margin' => '{{WRAPPER}} #reviews #reply-title',
150 'input_label_typography' => '{{WRAPPER}} #commentform label',
151 'review_label_color' => '{{WRAPPER}} #commentform label',
152 'review_label_required' => '{{WRAPPER}} #commentform .required',
153
154 'review_input_color' => '{{WRAPPER}} #review_form #respond .comment-form :is(input:not([type=checkbox], .submit), textarea)',
155 'review_input_border_color' => '{{WRAPPER}} #review_form #respond .comment-form :is(textarea, input:not(.submit))',
156 'review_input_border_color_focus' => '{{WRAPPER}} #review_form #respond .comment-form :is(textarea, input):focus',
157 'label_input_text_typography' => '{{WRAPPER}} #review_form #respond .comment-form :is(input:not([type=checkbox], [type=submit] ), textarea)',
158 'review_comment_field_height' => '{{WRAPPER}} #review_form #respond .comment-form :is(textarea)',
159 'review_form_rating_size' => '{{WRAPPER}} p.stars a',
160 'review_field_spacing' => [
161 'margin-0' => '{{WRAPPER}} #review_form #respond :is(.comment-form)',
162 'margin-buttom' => '{{WRAPPER}} #review_form #respond .comment-form :is(.comment-notes, .comment-form-rating, .comment-form-comment, .comment-form-author, .comment-form-email, .comment-form-cookies-consent)',
163 ],
164 'review_input_border_radius' => '{{WRAPPER}} #review_form #respond .comment-form :is(input:not([type=submit]), textarea )',
165 'review_input_padding' => '{{WRAPPER}} #review_form #respond .comment-form :is(textarea, input:not(#wp-comment-cookies-consent, .submit))',
166
167 'button_typography' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
168 'submit_button_alignment' => [
169 'text-align' => '{{WRAPPER}} #review_form #respond .comment-form .form-submit',
170 'float' => '{{WRAPPER}} #review_form #respond .comment-form .form-submit input#submit',
171 ],
172 'submit_button_height' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
173 'button_text_color_normal' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
174 'button_bg_color_normal' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
175 'button_border' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
176 'button_text_color_hover' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit):hover',
177 'button_bg_color_hover' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit):hover',
178 'button_border_hover_color' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit):hover',
179 'button_border_radius' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
180 'button_padding' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
181 'button_margin' => '{{WRAPPER}} #review_form #respond .comment-form :is(.submit)',
182
183 'review_meta_color' => '{{WRAPPER}} #reviews #comments ol.commentlist li .meta',
184 'description_color' => '{{WRAPPER}} #reviews .description, {{WRAPPER}} #reviews .description p',
185 'review_border' => '{{WRAPPER}} #reviews #comments ol.commentlist li .comment-text',
186 'review_meta_typography' => '{{WRAPPER}} #reviews #comments ol.commentlist li .meta',
187 'review_desc_typography' => '{{WRAPPER}} #reviews .description, {{WRAPPER}} #reviews .description p',
188 'review_single_spacing' => '{{WRAPPER}} #reviews #comments ol.commentlist li',
189 'review_padding' => '{{WRAPPER}} #reviews #comments ol.commentlist li .comment-text',
190
191 ]
192 );
193
194 return apply_filters( 'rtsb/elements/elementor/reviews_settings_selecotor', $defaults );
195 }
196
197 /**
198 * Module Button Selectors.
199 *
200 * @return array
201 */
202 public static function module_btn_selector(): array {
203 $defaults = [
204 'module_width' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
205 'module_height' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
206 'module_text_color_normal' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
207 'module_bg_color_normal' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
208 'module_border' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
209 'module_text_color_hover' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn):hover',
210 'module_bg_color_hover' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn):hover',
211 'module_border_hover_color' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn):hover',
212 'module_border_radius' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
213 'module_item_gap' => '{{WRAPPER}} :is( .action-button-wrapper, .rtsb-actions-button )',
214 'module_wrapper_margin' => '{{WRAPPER}} :is( .action-button-wrapper, .rtsb-actions-button )',
215 'module_item_alignment' => '{{WRAPPER}} :is( .action-button-wrapper, .rtsb-actions-button )',
216 'icon_size' => [
217 'icon' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
218 'svg' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) svg',
219 ],
220 ];
221
222 return apply_filters( 'rtsb/elements/elementor/module_btn_selector', $defaults );
223 }
224
225 /**
226 * Products Loop Default Selectors
227 *
228 * @return array
229 */
230 public static function products_loop_default_selector(): array {
231 $defaults = [
232 // Product Image.
233 'product_image_bg_color' => '{{WRAPPER}} .products .product img',
234 'product_image_height' => '{{WRAPPER}} .products .product img',
235 'product_image_auto_fit' => '{{WRAPPER}} .products .product img',
236 'product_image_padding' => '{{WRAPPER}} .products .product img',
237 // Product Title.
238 'product_title_typography' => '{{WRAPPER}} .products .product .woocommerce-loop-product__title',
239 'product_title_color' => '{{WRAPPER}} .products .product .woocommerce-loop-product__title',
240 'product_title_hover_color' => '{{WRAPPER}} .products .product .woocommerce-loop-product__title:hover',
241 'product_title_padding' => '{{WRAPPER}} .products .product .woocommerce-loop-product__title',
242
243 // Product Price.
244 'product_price_typography' => '{{WRAPPER}} .products .product .price, {{WRAPPER}} .products .product ins .woocommerce-Price-amount',
245 'product_price_color' => '{{WRAPPER}} .products .product .price',
246 'product_reguler_price_color' => '{{WRAPPER}} .products .product .price :is(del, del span, del .amount)',
247 'product_price_padding' => '{{WRAPPER}} .products .product .price',
248 // FLash Sale.
249 'flash_sale_typography' => '{{WRAPPER}} .products .product .onsale',
250 'product_flash_sale_color' => '{{WRAPPER}} .products .product .onsale',
251 'flash_sale_bg_color' => '{{WRAPPER}} .products .product .onsale',
252 'flash_sale_badge_width' => '{{WRAPPER}} .products .product .onsale',
253 'flash_sale_badge_height' => '{{WRAPPER}} .products .product .onsale',
254 'flash_sale_badge_border_radius' => '{{WRAPPER}} .products .product .onsale',
255 // Cart Button.
256 'cart_button_typography' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
257 'cart_button_text_color_normal' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
258 'cart_button_bg_color_normal' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
259 'cart_button_border' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
260 'cart_button_text_color_hover' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped ):hover',
261 'cart_button_bg_color_hover' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped ):hover',
262 'cart_button_border_hover_color' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped ):hover',
263 'cart_button_border_radius' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
264 'add_cart_button_padding' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
265 'add_cart_button_margin' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
266 'cart_height' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
267 'icon_align' => [
268 'align' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
269 'flex-direction' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped ), {{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped ) :is(i, span)',
270 ],
271 'cart_icon_gap' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped )',
272 'cart_icon_size' => '{{WRAPPER}} .products .product :is(a.add_to_cart_button, a.product_type_simple, a.product_type_grouped ) :is(i, span, svg):not(.ahfb-svg-iconset):not(.ast-card-action-tooltip)',
273 // Slider.
274 'slider_arrow_icon_size' => [
275 'icon' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn 1',
276 'svg' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn svg',
277 ],
278 'slider_arrow_size' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn',
279 'arrows_color' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn',
280 'arrows_bg_color' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn',
281 'arrows_border_color' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn',
282 'arrows_hover_color' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn:hover',
283 'arrows_hover_bg_color' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn:hover',
284 'arrows_hover_border_color' => '{{WRAPPER}} .rtsb-carousel-slider .rtsb-slider-btn:hover',
285 'dots_gap' => '{{WRAPPER}} .rtsb-carousel-slider .swiper-wrapper',
286 'dots_size' => '{{WRAPPER}} .rtsb-slider-pagination .swiper-pagination-bullet',
287 'dot_color' => '{{WRAPPER}} .rtsb-slider-pagination .swiper-pagination-bullet',
288 'dot_active_color' => '{{WRAPPER}} .rtsb-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active',
289 // Pagination.
290 'pagination_typography' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
291 'align' => '{{WRAPPER}} .woocommerce-pagination',
292 'pagination_gap' => '{{WRAPPER}} .woocommerce-pagination > .page-numbers',
293 'pagination_text_color_normal' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
294 'pagination_bg_color_normal' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
295 'pagination_border' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
296 'pagination_text_color_hover' => '{{WRAPPER}} .page-numbers:not(ul,div):hover,{{WRAPPER}} .woocommerce-pagination .page-numbers.current',
297 'pagination_bg_color_hover' => '{{WRAPPER}} .page-numbers:not(ul,div):hover, {{WRAPPER}} .woocommerce-pagination .page-numbers.current',
298 'pagination_border_hover_color' => '{{WRAPPER}} .page-numbers:not(ul,div):hover,{{WRAPPER}} .woocommerce-pagination .page-numbers.current',
299 'pagination_border_radius' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
300 'pagination_padding' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
301 'pagination_margin' => '{{WRAPPER}} .woocommerce-pagination',
302 'pagination_width' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
303 'pagination_height' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div)',
304 'pagination_icon_size' => [
305 'icon' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div) i',
306 'svg' => '{{WRAPPER}} .woocommerce-pagination .page-numbers:not(ul,div) svg',
307 ],
308 // Review Star.
309 'review_star_icon_default_color' => '{{WRAPPER}} .products .product .star-rating::before, {{WRAPPER}} p.stars a:before, {{WRAPPER}} p.stars a:hover~a:before, {{WRAPPER}} p.stars.selected a.active~a:before',
310 'review_star_icon_color' => '{{WRAPPER}} .products .product .star-rating span::before, {{WRAPPER}} p.stars.selected a.active:before, {{WRAPPER}} p.stars:hover a:before, {{WRAPPER}} p.stars.selected a:not(.active):before, {{WRAPPER}} p.stars.selected a.active:before',
311 'review_star_icon_size' => '{{WRAPPER}} .products .product .star-rating',
312 'review_star_icon_specing' => '{{WRAPPER}} .products .product .star-rating',
313 'review_star_icon_margin' => '{{WRAPPER}} .products .product .star-rating',
314 'not_found_notice' => self::not_found_notice_selectors(),
315 ];
316 $defaults = array_merge( self::review_star_icon_selector(), self::module_btn_selector(), $defaults );
317
318 return apply_filters( 'rtsb/elements/elementor/product_loop_default_selectors', $defaults );
319 }
320
321
322 /**
323 * General Widget Selectors.
324 *
325 * @return array
326 */
327 private static function general_widget_selectors(): array {
328 $selectors = [
329 'rtsb-product-breadcrumbs' => [
330 'breadcrumbs_align' => '{{WRAPPER}} .rtsb-breadcrumb',
331 'text_color' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb',
332 'link_color' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb a',
333 'link_hover_color' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb a:hover',
334 'item_spacing' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator',
335 'icon_size' => [
336 'icon' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator',
337 'svg' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator svg',
338 ],
339 'breadcrumbs_typography' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb',
340 'icon_color' => '{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator i,{{WRAPPER}} .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator',
341 ],
342 'rtsb-wc-notice' => [
343 'notice_typography' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner)',
344 'notice_icon_size' => [
345 'icon' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message::before, .woocommerce-error::before)',
346 'svg' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner > svg',
347 ],
348 'notice_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner)',
349 'notice_text_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner)',
350 'notice_icon_color' => [
351 'icon' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message::before, .woocommerce-error::before)',
352 'svg' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner > svg',
353 ],
354 'notice_icon_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner > svg',
355 'notice_border_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner)',
356 'notice_success_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner.is-success)',
357 'notice_success_text_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner.is-success)',
358 'notice_success_icon_color' => [
359 'icon' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message::before, .woocommerce-error::before)',
360 'svg' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-success > svg',
361 ],
362 'notice_success_icon_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-success > svg',
363 'notice_success_border_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner.is-success)',
364 'notice_error_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-error',
365 'notice_error_text_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-error',
366 'notice_error_icon_color' => [
367 'icon' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message::before, .woocommerce-error::before)',
368 'svg' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-error > svg',
369 ],
370 'notice_error_icon_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-error > svg',
371 'notice_error_border_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner.is-error)',
372 'notice_info_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-info',
373 'notice_info_text_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-info',
374 'notice_info_icon_color' => [
375 'icon' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message::before, .woocommerce-error::before)',
376 'svg' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-info > svg',
377 ],
378 'notice_info_icon_bg_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error), {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner.is-info > svg',
379 'notice_info_border_color' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner.is-info)',
380 'notice_padding' => '{{WRAPPER}} .rtsb-notice :is(.woocommerce-message, .woocommerce-error, .wc-block-components-notice-banner)',
381 'button_height' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
382 'button_width' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
383 'button_typography' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
384 'button_text_color_normal' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
385 'button_bg_color_normal' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
386 'button_border' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
387 'button_text_color_hover' => '{{WRAPPER}} .rtsb-notice a.button:hover, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover',
388 'button_bg_color_hover' => '{{WRAPPER}} .rtsb-notice a.button:hover, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover',
389 'button_border_hover_color' => '{{WRAPPER}} .rtsb-notice a.button:hover, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover',
390 'button_border_radius' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
391 'button_padding' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
392 'button_margin' => '{{WRAPPER}} .rtsb-notice a.button, {{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
393 'notice_button_alignment' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward',
394 'notice_gap_multiple' => '{{WRAPPER}} .rtsb-notice .woocommerce-notices-wrapper, {{WRAPPER}} .rtsb-notice',
395 'notice_icon_gap' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner',
396 'notice_border_radius' => '{{WRAPPER}} .rtsb-notice .wc-block-components-notice-banner',
397 ],
398 'rtsb-products-grid' => array_merge(
399 self::general_common_selectors(),
400 self::general_product_selectors()
401 ),
402 'rtsb-products-list' => array_merge(
403 self::general_common_selectors(),
404 self::general_product_selectors()
405 ),
406 'rtsb-products-slider' => array_merge(
407 self::general_common_selectors(),
408 self::general_product_selectors(),
409 self::general_slider_selectors(),
410 ),
411 'rtsb-product-categories-general' => array_merge(
412 self::general_common_selectors(),
413 self::general_cat_selectors()
414 ),
415 'rtsb-products-single-category' => array_merge(
416 self::general_common_selectors(),
417 self::general_cat_selectors()
418 ),
419 'rtsb-social-share' => array_merge(
420 self::social_share(),
421 ),
422 'rtsb-wishlist' => [
423 'table_border' => '{{WRAPPER}} .rtsb-wishlist-content table td,{{WRAPPER}} .rtsb-wishlist-content table th',
424 'table_heading_cell_padding' => '{{WRAPPER}} .rtsb-wishlist-content table th,{{WRAPPER}} .rtsb-wishlist-content table td',
425 'table_header_typo' => '{{WRAPPER}} .rtsb-wishlist-content table thead th',
426 'table_header_align' => '{{WRAPPER}} .rtsb-wishlist-content table thead th',
427 'table_header_color' => '{{WRAPPER}} .rtsb-wishlist-content table thead th',
428 'table_header_bg_color' => '{{WRAPPER}} .rtsb-wishlist-content table thead th',
429 'table_item_typo' => '{{WRAPPER}} .rtsb-wishlist-content table td,{{WRAPPER}} .rtsb-wishlist-content table td a',
430 'table_item_align' => '{{WRAPPER}} .rtsb-wishlist-content table td',
431 'table_item_color' => '{{WRAPPER}} .rtsb-wishlist-content table td,{{WRAPPER}} .rtsb-wishlist-content table td a',
432 'table_item_bg_color' => '{{WRAPPER}} .rtsb-wishlist-content table td',
433 'header_cell_width' => '{{WRAPPER}} .rtsb-wishlist-content table thead th',
434 'item_cell_width' => '{{WRAPPER}} .rtsb-wishlist-content table tbody td',
435 ],
436 'rtsb-advanced-heading' => AdvancedHeading\Selectors::get_selectors(),
437 'rtsb-dropcaps' => DropCaps\Selectors::get_selectors(),
438 'rtsb-shopbuilder-button' => ShopBuilderButton\Selectors::get_selectors(),
439 'rtsb-call-to-action' => CallToAction\Selectors::get_selectors(),
440 'rtsb-info-box' => InfoBox\Selectors::get_selectors(),
441 'rtsb-pricing-table' => PricingTable\Selectors::get_selectors(),
442 'rtsb-flip-box' => FlipBox\Selectors::get_selectors(),
443 'rtsb-counter' => Counter\Selectors::get_selectors(),
444 'rtsb-countdown-addon' => CountDown\Selectors::get_selectors(),
445 'rtsb-progress-bar-addon' => ProgressBar\Selectors::get_selectors(),
446 'rtsb-image-accordion-addon' => ImageAccordion\Selectors::get_selectors(),
447 'rtsb-shopbuilder-faq' => ShopBuilderFaq\Selectors::get_selectors(),
448 'rtsb-logo-slider-and-grid' => LogoSliderAndGrid\Selectors::get_selectors(),
449 'rtsb-testimonial' => Testimonial\Selectors::get_selectors(),
450 'rtsb-team-member' => TeamMember\Selectors::get_selectors(),
451 'rtsb-post-list' => PostList\Selectors::get_selectors(),
452 'rtsb-post-grid' => PostGrid\Selectors::get_selectors(),
453 ];
454
455 return apply_filters( 'rtsb/elements/elementor/widget/general/selectors', $selectors );
456 }
457
458 /**
459 * Product Page Selectors.
460 *
461 * @return array
462 */
463 private static function product_widget_selectors(): array {
464 $selectors = [
465 'rtsb-related-product' => array_merge(
466 self::products_loop_default_selector(),
467 self::carousel_selector(),
468 [
469 'section_heading_typography' => '{{WRAPPER}} .rtsb-related-products .related > h2',
470 'section_heading_color' => '{{WRAPPER}} .rtsb-related-products .related > h2',
471 'section_title_margin' => '{{WRAPPER}} .rtsb-related-products .related > h2',
472 'section_title_align' => '{{WRAPPER}} .rtsb-related-products .related > h2',
473 ]
474 ),
475 'rtsb-related-product-custom' => array_merge(
476 self::general_common_selectors(),
477 self::general_product_selectors()
478 ),
479 'rtsb-related-products-slider' => array_merge(
480 self::general_common_selectors(),
481 self::general_product_selectors(),
482 self::general_slider_selectors(),
483 ),
484
485 'rtsb-upsells-product' => array_merge(
486 self::products_loop_default_selector(),
487 self::carousel_selector(),
488 [
489 'section_heading_typography' => '{{WRAPPER}} .rtsb-upsells-products :is(.up-sells, .upsells ) > h2',
490 'section_heading_color' => '{{WRAPPER}} .rtsb-upsells-products :is(.up-sells, .upsells ) > h2',
491 'section_title_margin' => '{{WRAPPER}} .rtsb-upsells-products :is(.up-sells, .upsells ) > h2',
492 'section_title_align' => '{{WRAPPER}} .rtsb-upsells-products :is(.up-sells, .upsells ) > h2',
493 ],
494 ),
495 'rtsb-upsells-product-custom' => array_merge(
496 self::general_common_selectors(),
497 self::general_product_selectors()
498 ),
499
500 'rtsb-upsells-product-slider' => array_merge(
501 self::general_common_selectors(),
502 self::general_product_selectors(),
503 self::general_slider_selectors(),
504 ),
505
506 'rtsb-actions-button' => [
507 'module_width' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon ',
508 'module_height' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon',
509 'module_text_color_normal' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn)',
510 'module_bg_color_normal' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon',
511 'module_border' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon',
512 'module_text_color_hover' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn):hover',
513 'module_bg_color_hover' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn):hover .icon',
514 'module_border_hover_color' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn):hover .icon',
515 'module_border_radius' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon',
516 'module_item_gap' => '{{WRAPPER}} :is( .action-button-wrapper, .rtsb-actions-button ) ',
517 'module_wrapper_margin' => '{{WRAPPER}} :is( .action-button-wrapper, .rtsb-actions-button )',
518 'module_item_alignment' => '{{WRAPPER}} :is( .action-button-wrapper, .rtsb-actions-button )',
519 'icon_size' => [
520 'icon' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon',
521 'svg' => '{{WRAPPER}} a:is(.rtsb-wishlist-btn,.rtsb-compare-btn,.rtsb-quick-view-btn) .icon svg',
522 ],
523
524 'separator_color_normal' => '{{WRAPPER}} .rtsb-actions-button .button-separator',
525 'separator_typography' => '{{WRAPPER}} .rtsb-actions-button .button-separator',
526 'typo' => '{{WRAPPER}} .rtsb-actions-button .button-text',
527 'align' => '{{WRAPPER}} .rtsb-actions-button .button-text',
528 'text_color' => '{{WRAPPER}} .rtsb-actions-button .button-text',
529 'text_hover_color' => '{{WRAPPER}} .rtsb-actions-button .button-text:hover',
530 'text_shadow' => '{{WRAPPER}} .rtsb-actions-button .button-text',
531 'text_margin' => '{{WRAPPER}} .rtsb-actions-button .button-text',
532
533 ],
534 'rtsb-product-additional-info' => [
535 'heading_typography' => '{{WRAPPER}} .rtsb-product-additional-information h2',
536 'heading_color' => '{{WRAPPER}} .rtsb-product-additional-information h2',
537 'heading_margin' => '{{WRAPPER}} .rtsb-product-additional-information h2',
538 'content_typography' => '{{WRAPPER}} .shop_attributes',
539 'content_color' => '{{WRAPPER}} .shop_attributes',
540 'content_border' => '{{WRAPPER}} .shop_attributes td, {{WRAPPER}} .shop_attributes th',
541 'content_padding' => '{{WRAPPER}} .shop_attributes td, {{WRAPPER}} .shop_attributes th',
542 ],
543 'rtsb-product-add-to-cart' => [
544 'button_height' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
545 'button_width' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
546 'cart_icon_align' => [
547 'icon' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button i',
548 'svg' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button svg',
549 ],
550 'cart_icon_gap' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
551 'button_typography' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
552 'button_text_color_normal' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
553 'button_bg_color_normal' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
554 'button_border' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
555 'button_text_color_hover' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button:hover',
556 'button_bg_color_hover' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button:hover',
557 'button_border_hover_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button:hover',
558 'button_border_radius' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
559 'button_padding' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
560 'button_margin' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button',
561 'cart_icon_size' => [
562 'icon' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button i',
563 'svg' => '{{WRAPPER}} .rtsb-product-add-to-cart .cart .button svg',
564 ],
565 'quantity_height' => [
566 'full' => '{{WRAPPER}} .rtsb-product-add-to-cart input[type=number], {{WRAPPER}} .rtsb-quantity-box-group:is(.rtsb-quantity-box-group-style-1,.rtsb-quantity-box-group-style-2) .rtsb-quantity-btn',
567 'half' => '{{WRAPPER}} .rtsb-quantity-box-group:is(.rtsb-quantity-box-group-style-3,.rtsb-quantity-box-group-style-4) .rtsb-quantity-btn',
568 ],
569 'quantity_increment_button_padding' => '{{WRAPPER}} .rtsb-product-add-to-cart .rtsb-quantity-box-group .rtsb-quantity-btn.rtsb-quantity-plus',
570 'quantity_decrement_button_padding' => '{{WRAPPER}} .rtsb-product-add-to-cart .rtsb-quantity-box-group .rtsb-quantity-btn.rtsb-quantity-minus',
571 'quantity_input_width' => '{{WRAPPER}} .rtsb-product-add-to-cart input.qty',
572 'quantity_button_width' => '{{WRAPPER}} .rtsb-product-add-to-cart .rtsb-quantity-box-group .rtsb-quantity-btn',
573
574 'icon_size' => [
575 'icon' => '{{WRAPPER}} .rtsb-product-add-to-cart .rtsb-quantity-box-group .rtsb-quantity-btn',
576 'svg' => '{{WRAPPER}} .rtsb-product-add-to-cart .rtsb-quantity-box-group .rtsb-quantity-btn svg',
577 ],
578 'quantity_icon_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity :is(i, svg)',
579 'quantity_icon_hover_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity .rtsb-quantity-btn:hover :is(i, svg)',
580 'text_typography' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity input',
581 'quantity_number_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity input',
582 'quantity_background_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity input',
583 'quantity_border' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity input',
584 'quantity_radius' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity input',
585 'qunatity_padding' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity input',
586 'quantity_wrapper_background_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity .rtsb-quantity-box-group',
587 'qunatity_wrapper_padding' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity .rtsb-quantity-box-group',
588 'quantity_wrapper_radius' => '{{WRAPPER}} .rtsb-product-add-to-cart .quantity .rtsb-quantity-box-group',
589 'variation_padding' => '{{WRAPPER}} .rtsb-product-add-to-cart .variations select, .rtwpvs {{WRAPPER}} .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-button-term',
590 'variation_label_margin' => '{{WRAPPER}} .rtsb-product-add-to-cart table.variations tr .label label',
591 'variation_item_margin' => '{{WRAPPER}} .rtsb-product-add-to-cart table.variations tr:not(:last-child) .value',
592 'variation_border' => '{{WRAPPER}} .rtsb-product-add-to-cart .variations select',
593 'price_typography' => '.single-product {{WRAPPER}} .single_variation .price',
594 'price_color' => '.single-product {{WRAPPER}} .single_variation :is(.price, .price .amount, .price ins)',
595 'price_margin' => '.single-product {{WRAPPER}} .single_variation :is(.price, .price .amount, .price ins)',
596 'variation_height' => '.rtwpvs {{WRAPPER}} .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term), {{WRAPPER}} .rtsb-product-add-to-cart .variations select',
597 'variation_width' => '.rtwpvs {{WRAPPER}} .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term), {{WRAPPER}} .rtsb-product-add-to-cart .variations select',
598 'variation_border_radius' => '.rtwpvs {{WRAPPER}} .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term), {{WRAPPER}} .rtsb-product-add-to-cart .variations select',
599 'variation_label_typography' => '{{WRAPPER}} .rtsb-product-add-to-cart table.variations tr .label label',
600 'variation_stock_typography' => '{{WRAPPER}} .rtsb-product-add-to-cart .woocommerce-variation-availability .stock',
601 'variation_label_color' => '{{WRAPPER}} .rtsb-product-add-to-cart table.variations tr .label label',
602 'variation_stock_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .woocommerce-variation-availability .stock',
603 'variation_outofstock_color' => '{{WRAPPER}} .rtsb-product-add-to-cart .woocommerce-variation-availability .stock.out-of-stock',
604
605 ],
606 'rtsb-product-categories' => [
607 'align' => '{{WRAPPER}} .rtsb-product-categories',
608 'label_typo' => '{{WRAPPER}} .rtsb-product-categories .categories-title',
609 'meta_label_color' => '{{WRAPPER}} .rtsb-product-categories .categories-title',
610 'value_typo' => '{{WRAPPER}} .rtsb-product-categories a',
611 'meta_value_color' => '{{WRAPPER}} .rtsb-product-categories a',
612 'meta_value_hover_color' => '{{WRAPPER}} .rtsb-product-categories a:hover',
613 ],
614 'rtsb-product-description' => [
615 'typo' => '{{WRAPPER}} .rtsb-description, {{WRAPPER}} .rtsb-description p',
616 'align' => '{{WRAPPER}}',
617 'text_color' => '{{WRAPPER}} :is(.rtsb-description , p)',
618 'text_shadow' => '{{WRAPPER}} .rtsb-description , {{WRAPPER}} .rtsb-description p',
619 ],
620 'rtsb-product-tags' => [
621 'align' => '{{WRAPPER}} .rtsb-product-tags',
622 'label_typo' => '{{WRAPPER}} .rtsb-product-tags .tags-title',
623 'meta_label_color' => '{{WRAPPER}} .rtsb-product-tags .tags-title',
624 'value_typo' => '{{WRAPPER}} .rtsb-product-tags a',
625 'meta_value_color' => '{{WRAPPER}} .rtsb-product-tags a',
626 'meta_value_hover_color' => '{{WRAPPER}} .rtsb-product-tags a:hover',
627 ],
628
629 'rtsb-product-image' => [
630 'image_width' => '{{WRAPPER}} .rtsb-product-images .woocommerce-product-gallery__image a > img',
631 'image_border_radius' => '{{WRAPPER}} .rtsb-product-images .woocommerce-product-gallery__image',
632 'gallery_thumbs_column' => '{{WRAPPER}} div.images .flex-control-thumbs li',
633 // 'gallery_thumbs_column_gap' => '{{WRAPPER}} div.images .flex-control-thumbs',
634 // 'gallery_image_gap_with_main' => [
635 // 'margin-top' => '{{WRAPPER}} div.images .flex-control-thumbs',
636 // 'rtwpvg-thumb-mb' => '{{WRAPPER}} .rtsb-product-images .rtwpvg-has-product-thumbnail .rtwpvg-thumbnail-position-bottom .rtwpvg-slider-wrapper',
637 // 'rtwpvg-thumb-ml' => '{{WRAPPER}} .rtsb-product-images .rtwpvg-has-product-thumbnail .rtwpvg-thumbnail-position-left .rtwpvg-slider-wrapper',
638 // 'rtwpvg-thumb-mr' => '{{WRAPPER}} .rtsb-product-images .rtwpvg-has-product-thumbnail .rtwpvg-thumbnail-position-right .rtwpvg-slider-wrapper',
639 // ],
640 'thumb_border' => '{{WRAPPER}} .rtsb-product-images div.images .flex-control-thumbs li img, {{WRAPPER}} .rtsb-product-images .rtwpvg-thumbnail-image img, {{WRAPPER}} .rtsb-product-images .rtwpvg-grid-layout .rtwpvg-gallery-image',
641 'thumbs_border_radius' => '{{WRAPPER}} .rtsb-product-images div.images .flex-control-thumbs li img, {{WRAPPER}} .rtsb-product-images :is( .rtwpvg-thumbnail-image, img), {{WRAPPER}} .rtsb-product-images .rtwpvg-grid-layout .rtwpvg-gallery-image',
642 'flash_sale_typography' => '{{WRAPPER}} .rtsb-product-images .onsale',
643 'product_flash_sale_color' => '{{WRAPPER}} .rtsb-product-images .onsale',
644 'flash_sale_bg_color' => '{{WRAPPER}} .rtsb-product-images .onsale',
645 'flash_sale_badge_width' => '{{WRAPPER}} .rtsb-product-images .onsale',
646 'flash_sale_badge_height' => '{{WRAPPER}} .rtsb-product-images .onsale',
647 'flash_sale_badge_border_radius' => '{{WRAPPER}} .rtsb-product-images .onsale',
648 'flash_sale_position_horizontal' => '{{WRAPPER}} .rtsb-product-images .onsale',
649 'flash_sale_position_vertical' => '{{WRAPPER}} .rtsb-product-images .onsale',
650 'zoom_color' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger',
651
652 'zoom_bg_color' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger',
653 'zoom_icon_size' => [
654 'icon' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger :is(span, i)',
655 'svg' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger svg, {{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger svg',
656 ],
657 'zoom_badge_width' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger',
658 'zoom_badge_height' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger',
659 'zoom_badge_border_radius' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger',
660 'zoom_padding' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger,{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger',
661 'zoom_position_horizontal' => [
662 'zoom_position' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger',
663 'rtwpvg-tr-br' => '{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger:is(.rtwpvg-trigger-position-top-right, .rtwpvg-trigger-position-bottom-right)',
664 'rtwpvg-tl-bl' => '{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger:is(.rtwpvg-trigger-position-top-left,.rtwpvg-trigger-position-bottom-left)',
665 ],
666 'zoom_position_vertical' => [
667 'zoom-icon-top' => '{{WRAPPER}} .rtsb-product-images .images .woocommerce-product-gallery__trigger, {{WRAPPER}} .rtsb-product-images .rtwpvg-trigger',
668 'zoom-icon-bottom' => '{{WRAPPER}} .rtsb-product-images .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger:is(.rtwpvg-trigger-position-bottom-right, .rtwpvg-trigger-position-bottom-left)',
669 ],
670 ],
671 'rtsb-product-meta' => [
672 'meta_layout' => '{{WRAPPER}} .rtsb-product-meta .product_meta',
673 'align' => '{{WRAPPER}} .product_meta',
674 'gap' => '{{WRAPPER}} .rtsb-product-meta .product_meta',
675 'meta_padding' => '{{WRAPPER}} .rtsb-product-meta .product_meta :is(.sku_wrapper, .posted_in, .tagged_as)',
676 'label_typo' => '{{WRAPPER}} .rtsb-product-meta .product_meta :is(.sku_wrapper, .posted_in, .tagged_as)',
677 'meta_label_color' => '{{WRAPPER}} .rtsb-product-meta .product_meta :is(.sku_wrapper, .posted_in, .tagged_as)',
678 'value_typo' => '{{WRAPPER}} .rtsb-product-meta .product_meta :is(.sku, .posted_in a, .tagged_as a)',
679 'meta_value_color' => '{{WRAPPER}} .rtsb-product-meta .product_meta :is(.sku, .posted_in a, .tagged_as a)',
680 'meta_value_hover_color' => '{{WRAPPER}} .rtsb-product-meta .product_meta :is(.posted_in a, .tagged_as a):hover',
681 ],
682 'rtsb-product-price' => [
683 'price_align' => '{{WRAPPER}}',
684 'space_between' => [
685 'del_price' => '{{WRAPPER}} .rtsb-product-price .price del',
686 'del_price_rtl' => '.rtl {{WRAPPER}} .rtsb-product-price .price del',
687 ],
688 'price_typo' => '{{WRAPPER}} .rtsb-product-price :is(.price, .price .amount, .price ins)',
689 'price_color' => '{{WRAPPER}} .rtsb-product-price :is(.price, .price .amount, .price ins)',
690 'sale_price_typo' => '{{WRAPPER}} .rtsb-product-price .price ins .amount',
691 'sale_price_color' => '{{WRAPPER}} .rtsb-product-price .price ins .amount',
692 ],
693 // New Convension.
694 'rtsb-product-rating' => array_merge(
695 self::review_star_icon_selector(),
696 [
697 'rating_align' => '{{WRAPPER}}',
698 'rating_text_link_color' => '{{WRAPPER}} .woocommerce-review-link',
699 'rating_text_link_hover_color' => '{{WRAPPER}} .woocommerce-review-link:hover',
700 'link_typography' => '{{WRAPPER}} .woocommerce-review-link',
701 'rating_space_between' => [
702 'margin-right' => 'body:not(.rtl) {{WRAPPER}} .star-rating',
703 'margin-left' => 'body.rtl {{WRAPPER}} .star-rating',
704 ],
705 ]
706 ),
707 'rtsb-product-reviews' => self::reviews_settings_selecotor(),
708 'rtsb-product-sku' => [
709 'align' => '{{WRAPPER}} .rtsb-product-sku',
710 'label_typo' => '{{WRAPPER}} .rtsb-product-sku .sku-label',
711 'meta_label_color' => '{{WRAPPER}} .rtsb-product-sku .sku-label',
712 'value_typo' => '{{WRAPPER}} .rtsb-product-sku .sku-value',
713 'meta_value_color' => '{{WRAPPER}} .rtsb-product-sku .sku-value',
714 'meta_value_hover_color' => '{{WRAPPER}} .rtsb-product-sku .sku-value:hover',
715 ],
716 'rtsb-product-stock' => [
717 'stock_text_typography' => '{{WRAPPER}} .rtsb-product-stock .stock',
718 'in_stock_color' => '{{WRAPPER}} .rtsb-product-stock .stock.in-stock',
719 'outof_stock_color' => '{{WRAPPER}} .rtsb-product-stock .stock.out-of-stock',
720 'backorder_stock_color' => '{{WRAPPER}} .rtsb-product-stock .stock.available-on-backorder',
721 'icon_size' => [
722 'icon' => '{{WRAPPER}} .rtsb-product-stock .stock i',
723 'svg' => '{{WRAPPER}} .rtsb-product-stock .stock svg',
724 ],
725 'icon_gap' => '{{WRAPPER}} .rtsb-product-stock .stock i',
726 'stock_alignment' => '{{WRAPPER}} .rtsb-product-stock p',
727 'stock_padding' => '{{WRAPPER}} .rtsb-product-stock p',
728 'stock_margin' => '{{WRAPPER}} .rtsb-product-stock p',
729 ],
730 'rtsb-product-tabs' => array_merge(
731 self::reviews_settings_selecotor(),
732 [
733 'nav_typography' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li a',
734 'nav_position' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs.tabs-custom-layout2 ul.wc-tabs',
735 'nav_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li a',
736 'nav_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li a',
737 'nav_border' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li',
738
739 'nav_active_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li.active a',
740 'nav_active_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li.active a',
741 'nav_active_border_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li.active',
742 'nav_hover_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li:not(.active):hover a',
743 'nav_hover_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li:not(.active):hover a',
744 'nav_active_hover_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li.active:hover a',
745 'nav_active_hover_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li.active:hover a',
746 'nav_active_hover_border_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li.active:hover a',
747 'nav_padding' => '#rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs ul.tabs li a ',
748 'content_padding' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .wc-tab ',
749
750 'show_title' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child,{{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .woocommerce-Tabs-panel .comment-reply-title, {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-Reviews-title',
751 'tab_title_typography' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .wc-tab h2',
752 'tab_title_gap' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .wc-tab h2',
753 'tab_content_title_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child, {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-Reviews-title',
754
755 'additional_info_typography' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs .woocommerce-tabs .wc-tab .shop_attributes',
756 'attributes_gap' => '.rtsb-builder-content {{WRAPPER}} .rtsb-product-tabs table.shop_attributes td,{{WRAPPER}} .rtsb-product-tabs table.shop_attributes th',
757 ]
758 ),
759 'rtsb-product-title' => [
760 'title_typo' => '{{WRAPPER}} .product_title',
761 'title_align' => '{{WRAPPER}}',
762 'title_color' => '{{WRAPPER}} .product_title',
763 'title_text_stroke' => '{{WRAPPER}} .product_title',
764 'title_text_shadow' => '{{WRAPPER}} .product_title',
765 'title_margin' => '{{WRAPPER}} .product_title',
766 'title_padding' => '{{WRAPPER}} .product_title',
767 'title_border' => '{{WRAPPER}} .product_title',
768 ],
769 'rtsb-short-description' => [
770 'typo' => '{{WRAPPER}} .rtsb-short-description, {{WRAPPER}} .rtsb-short-description p',
771 'align' => '{{WRAPPER}}',
772 'text_color' => '{{WRAPPER}} :is(.rtsb-short-description , p)',
773 'text_shadow' => '{{WRAPPER}} .rtsb-short-description, {{WRAPPER}} .rtsb-short-description p',
774 ],
775 'rtsb-product-onsale' => [
776 'flash_sale_typography' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline)',
777 'product_flash_sale_color' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline)',
778 'flash_sale_bg_color' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline)',
779 'flash_sale_border_color' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline), {{WRAPPER}} .rtsb-tag-outline.angle-right::after',
780 'flash_sale_badge_width' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline)',
781 'flash_sale_badge_height' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline)',
782 'flash_sale_badge_border_radius' => '{{WRAPPER}} .rtsb-product-onsale :is(.onsale, .rtsb-tag-fill, .rtsb-tag-outline)',
783 'product_badges' => [
784 'typography' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill, .rtsb-tag-outline)',
785 'color' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill,.rtsb-tag-outline)',
786 'bg_color' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill,.rtsb-tag-outline)',
787 'border_color' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill,.rtsb-tag-outline),{{WRAPPER}} .rtsb-tag-outline.angle-right::after',
788 'border_radius' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill,.rtsb-tag-outline)',
789 'padding' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill,.rtsb-tag-outline)',
790 'margin' => '{{WRAPPER}} .rtsb-product-onsale :is(.rtsb-tag-fill,.rtsb-tag-outline)',
791 'position_x' => '',
792 'position_y' => '',
793 ],
794 'badges_module' => [
795 'direction' => '{{WRAPPER}} .rtsb-promotion .rtsb-badge-group-style',
796 'alignment' => '{{WRAPPER}} .rtsb-promotion .rtsb-badge-group-style',
797 ],
798 ],
799 ];
800
801 return apply_filters( 'rtsb/elements/elementor/widget/product/selectors', $selectors );
802 }
803
804 /**
805 * Archive Selectors.
806 *
807 * @return array
808 */
809 private static function archive_widget_selectors(): array {
810 $selectors = [
811
812 'rtsb-products-archive' => array_merge(
813 self::products_loop_default_selector(),
814 [
815 'column_per_row' => '{{WRAPPER}} .rtsb-product-catalog.product-catalog-grid-view .products .product',
816 'column_gap' => '{{WRAPPER}} .rtsb-product-catalog.product-catalog-grid-view .products',
817 'row_gap' => '{{WRAPPER}} .rtsb-product-catalog .products',
818 'list_image_width' => '{{WRAPPER}} .rtsb-product-catalog.product-catalog-list-view .rtsb-image-wrapper',
819 'image_gap' => [
820 'margin-right' => '{{WRAPPER}} .rtsb-product-catalog.product-catalog-list-view .rtsb-image-wrapper',
821 'margin-bottom' => '{{WRAPPER}} .rtsb-product-catalog.product-catalog-grid-view .rtsb-image-wrapper',
822 ],
823 ],
824 ),
825
826 'rtsb-products-archive-custom' => array_merge(
827 self::general_common_selectors(),
828 self::general_product_selectors()
829 ),
830
831 'rtsb-archive-title' => [
832 'archive_title_align' => '{{WRAPPER}}',
833 'archive_title_color' => '{{WRAPPER}} .archive-title',
834 'title_typo' => '{{WRAPPER}} .archive-title',
835 'text_stroke' => '{{WRAPPER}} .archive-title',
836 'text_shadow' => '{{WRAPPER}} .archive-title',
837 ],
838 'rtsb-archive-description' => [
839 'typo' => '{{WRAPPER}} .rtsb-archive-description',
840 'align' => '{{WRAPPER}}',
841 'text_color' => '{{WRAPPER}}',
842 'text_shadow' => '{{WRAPPER}} .rtsb-archive-description',
843 ],
844 'rtsb-archive-product-mode' => [
845 'icon_size' => [
846 'icon' => '{{WRAPPER}} .rtsb-archive-view-mode i',
847 'svg' => '{{WRAPPER}} .rtsb-archive-view-mode svg',
848 ],
849 'mode_button_align' => '{{WRAPPER}}',
850 'mode_button_height' => '{{WRAPPER}} .rtsb-archive-view-mode a',
851 'mode_button_width' => '{{WRAPPER}} .rtsb-archive-view-mode a',
852 'mode_button_gap' => '{{WRAPPER}} .rtsb-archive-view-mode',
853 'mode_button_color' => '{{WRAPPER}} .rtsb-archive-view-mode a',
854 'mode_button_bg_color' => '{{WRAPPER}} .rtsb-archive-view-mode a',
855 'text_color' => '{{WRAPPER}} .rtsb-archive-view-mode a',
856 'mode_button_border' => '{{WRAPPER}} .rtsb-archive-view-mode a',
857 'mode_button_bg_hover_color' => '{{WRAPPER}} .rtsb-archive-view-mode a:hover,{{WRAPPER}} .rtsb-archive-view-mode a.active',
858 'text_hover_color' => '{{WRAPPER}} .rtsb-archive-view-mode a:hover,{{WRAPPER}} .rtsb-archive-view-mode a.active',
859 'mode_button_border_hover_color' => '{{WRAPPER}} .rtsb-archive-view-mode a:hover,{{WRAPPER}} .rtsb-archive-view-mode a.active',
860 'mode_button_radius' => '{{WRAPPER}} .rtsb-archive-view-mode a',
861 ],
862 'rtsb-archive-result-count' => [
863 'align' => '{{WRAPPER}}',
864 'text_color' => '{{WRAPPER}}',
865 'typo' => '{{WRAPPER}} .rtsb-archive-result-count',
866 'text_shadow' => '{{WRAPPER}} .rtsb-archive-result-count',
867 ],
868 'rtsb-products-ordering' => [
869 'typo' => '{{WRAPPER}} .rtsb-archive-catalog-ordering :is( .woocommerce-ordering, select )',
870 'align' => '{{WRAPPER}}',
871 'orderby_height' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
872 'orderby_width' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering,{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
873 'ordering_padding' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
874 'orderby_bg_color' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
875 'text_color' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
876 'orderby_border' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
877 'orderby_bg_hover_color' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby:hover',
878 'text_hover_color' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby:hover',
879 'orderby_border_hover_color' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby:hover',
880 'orderby_radius' => '{{WRAPPER}} .rtsb-archive-catalog-ordering .woocommerce-ordering .orderby',
881 ],
882 ];
883
884 return apply_filters( 'rtsb/elements/elementor/widget/archive/selectors', $selectors );
885 }
886
887 /**
888 * Cart Selectors.
889 *
890 * @return array
891 */
892 private static function cart_widget_selectors(): array {
893 $selectors = [
894 'rtsb-cross-sells' => array_merge(
895 self::products_loop_default_selector(),
896 self::carousel_selector(),
897 [
898 'section_heading_typography' => '{{WRAPPER}} .rtsb-cross-sell .cross-sells > h2',
899 'section_heading_color' => '{{WRAPPER}} .rtsb-cross-sell .cross-sells > h2',
900 'section_title_margin' => '{{WRAPPER}} .rtsb-cross-sell .cross-sells > h2',
901 'section_title_align' => '{{WRAPPER}} .rtsb-cross-sell .cross-sells > h2',
902 ],
903 ),
904
905 'rtsb-cross-sell-product-custom' => array_merge(
906 self::general_common_selectors(),
907 self::general_product_selectors()
908 ),
909
910 'rtsb-crosssell-product-slider' => array_merge(
911 self::general_common_selectors(),
912 self::general_product_selectors(),
913 self::general_slider_selectors(),
914 ),
915
916 'rtsb-product-cart-totals' => [
917 'show_title' => '{{WRAPPER}} .rtsb-cart-totals h2',
918 'table_min_width' => '.rtsb-builder-content {{WRAPPER}} .rtsb-table-horizontal-scroll-on-mobile table.shop_table',
919 // Title Style.
920 'title_align' => '{{WRAPPER}}',
921 'title_typo' => '{{WRAPPER}} .rtsb-cart-totals h2',
922 'title_color' => '{{WRAPPER}} .rtsb-cart-totals h2',
923 'title_text_stroke' => '{{WRAPPER}} .rtsb-cart-totals h2',
924 'title_text_shadow' => '{{WRAPPER}} .rtsb-cart-totals h2',
925 'title_margin' => '{{WRAPPER}} .rtsb-cart-totals h2',
926 'title_padding' => '{{WRAPPER}} .rtsb-cart-totals h2',
927 'title_border' => '{{WRAPPER}} .rtsb-cart-totals h2',
928 // Table.
929 'table_heading_cell_border' => '#rtsb-builder-content {{WRAPPER}} .rtsb-cart-totals th,#rtsb-builder-content {{WRAPPER}} .rtsb-cart-totals td',
930 'table_heading_cell_padding' => '{{WRAPPER}} .rtsb-cart-totals th,{{WRAPPER}} .rtsb-cart-totals td',
931 'table_heading_typography' => '{{WRAPPER}} .rtsb-cart-totals th',
932 'table_heading_color' => '{{WRAPPER}} .rtsb-cart-totals th',
933 'table_heading_background_color' => '{{WRAPPER}} .rtsb-cart-totals th',
934 'table_heading_align' => '{{WRAPPER}} .rtsb-cart-totals th',
935 'total_heading_width' => '{{WRAPPER}} .rtsb-cart-totals th',
936 'table_cell_typography' => '{{WRAPPER}} .rtsb-cart-totals td *',
937 'table_cell_color' => '{{WRAPPER}} .rtsb-cart-totals td',
938 'table_cell_background_color' => '{{WRAPPER}} .rtsb-cart-totals td',
939 'table_cell_align' => '{{WRAPPER}} .rtsb-cart-totals td, .woocommerce .rtsb-builder-content {{WRAPPER}} ul#shipping_method li',
940 'total_cell_heading_width' => '{{WRAPPER}} .rtsb-cart-totals td',
941 'table_wrapper_border' => '{{WRAPPER}} .rtsb-cart-totals .shop_table',
942 'table_wrapper_padding' => '{{WRAPPER}} .rtsb-cart-totals .shop_table',
943 'button_typography' => '{{WRAPPER}} .rtsb-cart-totals .button',
944 'button_height' => '{{WRAPPER}} .rtsb-cart-totals .button',
945 'button_width' => '{{WRAPPER}} .rtsb-cart-totals .button',
946 'button_text_color_normal' => '{{WRAPPER}} .rtsb-cart-totals .button',
947 'button_bg_color_normal' => '{{WRAPPER}} .rtsb-cart-totals .button',
948 'button_border' => '{{WRAPPER}} .rtsb-cart-totals .button',
949 'button_text_color_hover' => '{{WRAPPER}} .rtsb-cart-totals .button:hover',
950 'button_bg_color_hover' => '{{WRAPPER}} .rtsb-cart-totals .button:hover',
951 'button_border_hover_color' => '{{WRAPPER}} .rtsb-cart-totals .button:hover',
952 'button_border_radius' => '{{WRAPPER}} .rtsb-cart-totals .button',
953 'button_padding' => '{{WRAPPER}} .rtsb-cart-totals .button',
954 'button_margin' => '{{WRAPPER}} .rtsb-cart-totals .button',
955
956 ],
957 'rtsb-product-carttable' => [
958 'button_typography' => '{{WRAPPER}} .woocommerce-cart-form .button',
959 'button_height' => '{{WRAPPER}} .woocommerce-cart-form .button',
960 'button_width' => '{{WRAPPER}} .woocommerce-cart-form .button',
961 'button_text_color_normal' => '{{WRAPPER}} .woocommerce-cart-form .button',
962 'button_bg_color_normal' => '{{WRAPPER}} .woocommerce-cart-form .button',
963 'button_border' => '{{WRAPPER}} .woocommerce-cart-form .button',
964 'button_text_color_hover' => '{{WRAPPER}} .woocommerce-cart-form .button:hover',
965 'button_bg_color_hover' => '{{WRAPPER}} .woocommerce-cart-form .button:hover',
966 'button_border_hover_color' => '{{WRAPPER}} .woocommerce-cart-form .button:hover',
967 'button_border_radius' => '{{WRAPPER}} .woocommerce-cart-form .button',
968 'button_padding' => '{{WRAPPER}} .woocommerce-cart-form .button',
969 'button_margin' => '{{WRAPPER}} .woocommerce-cart-form .button',
970 'coupon_typography' => '{{WRAPPER}} .woocommerce-cart-form .coupon input',
971 'coupon_input_height' => '{{WRAPPER}} .woocommerce-cart-form .coupon input',
972 'coupon_input_width' => '{{WRAPPER}} .woocommerce-cart-form .coupon input',
973 'coupon_padding' => '{{WRAPPER}} .woocommerce-cart-form .coupon input',
974 'coupon_border_radius' => '{{WRAPPER}} .woocommerce-cart-form .coupon input',
975 'coupon_input_border' => '{{WRAPPER}} .woocommerce-cart-form .coupon .input-text',
976 'input_text_color' => '{{WRAPPER}} .woocommerce-cart-form input',
977 'input_bg_color' => '{{WRAPPER}} .woocommerce-cart-form input',
978
979 'return_shop_button_typography' => '{{WRAPPER}} .return-to-shop .button',
980 'return_shop_button_height' => '{{WRAPPER}} .return-to-shop .button',
981 'return_shop_button_text_color_normal' => '{{WRAPPER}} .return-to-shop .button',
982 'return_shop_button_bg_color_normal' => '{{WRAPPER}} .return-to-shop .button',
983 'return_shop_button_border' => '{{WRAPPER}} .return-to-shop .button',
984 'return_shop_button_text_color_hover' => '{{WRAPPER}} .return-to-shop .button:hover',
985 'return_shop_button_bg_color_hover' => '{{WRAPPER}} .return-to-shop .button:hover',
986 'return_shop_button_border_hover_color' => '{{WRAPPER}} .return-to-shop .button:hover',
987 'return_shop_button_border_radius' => '{{WRAPPER}} .return-to-shop .button',
988 'return_shop_button_padding' => '{{WRAPPER}} .return-to-shop .button',
989 'return_shop_button_margin' => '{{WRAPPER}} .return-to-shop .button',
990
991 'notice_typography' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner',
992 'notice_padding' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner',
993 'notice_bg_color' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner',
994 'notice_text_color' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner',
995 'notice_border_color' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner',
996 'icon_color' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner svg',
997 'notice_icon_size' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner svg',
998 'icon_bg_color' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner svg',
999 'icon_margin' => '{{WRAPPER}} .rtsb-cart-table .wc-block-components-notice-banner svg',
1000
1001 'table_thumbnail_width' => '{{WRAPPER}} .shop_table :is( .product-thumbnail, .product-data ) img',
1002 'table_thumbnail_border_radius' => '{{WRAPPER}} .shop_table :is( .product-thumbnail, .product-data ) img',
1003 'table_thumbnail_padding' => '{{WRAPPER}} .shop_table :is( .product-thumbnail, .product-data )',
1004 'cart_remove_icon_size' => '{{WRAPPER}} .woocommerce table.shop_table tbody tr td.product-remove a',
1005 'cart_remove_button_size' => '{{WRAPPER}} .woocommerce table.shop_table tbody tr td.product-remove a',
1006 'cart_icon_color' => '{{WRAPPER}} .woocommerce table.shop_table tbody tr td.product-remove a',
1007 'cart_icon_bg_color' => '{{WRAPPER}} .woocommerce table.shop_table tbody tr td.product-remove a',
1008 'cart_icon_hover_color' => '{{WRAPPER}} .woocommerce table.shop_table tbody tr td.product-remove a:hover',
1009 'cart_icon_hover_bg_color' => '{{WRAPPER}} .woocommerce table.shop_table tbody tr td.product-remove a:hover',
1010 // 'table_content_column_padding' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td',
1011 'table_column_header_padding' => '{{WRAPPER}} .woocommerce table.shop_table thead tr th',
1012 'cart_element_alignment' => '#rtsb-builder-content {{WRAPPER}} .woocommerce table.shop_table th, #rtsb-builder-content {{WRAPPER}} .woocommerce table.shop_table td, #rtsb-builder-content {{WRAPPER}} .woocommerce table.shop_table .table-column-wrapper .product-attributes-wrapper .product-attributes li',
1013 'cart_table_border' => '{{WRAPPER}} .woocommerce table.shop_table',
1014
1015 'table_wrapper_margin' => '{{WRAPPER}} .woocommerce :is(table.shop_table, form )',
1016 'element_alignment' => '#rtsb-builder-content {{WRAPPER}} th.product-subtotal, #rtsb-builder-content {{WRAPPER}} td.product-subtotal',
1017 'action_button_padding' => '{{WRAPPER}} .woocommerce :is(table.shop_table, from ) .actions-button-wrapper',
1018
1019 'cart_subtotal_price_typo' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td .amount',
1020 'cart_price_color' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td .amount',
1021
1022 'cart_title_element_alignment' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td:is(.product-name, .product-data), #rtsb-builder-content {{WRAPPER}} .woocommerce table.shop_table .table-column-wrapper .product-attributes-wrapper .product-attributes li',
1023 'cart_product_title_color' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td:is(.product-name, .product-data) a',
1024 'cart_product_title_typo' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td:is(.product-name, .product-data) a',
1025 'cart_product_title_padding' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td:is(.product-name, .product-data) .rtsb-product-content, {{WRAPPER}} .rtsb-cart-table table.shop_table tr th:is(.product-name, .product-data) .table-column-wrapper',
1026
1027 'cart_product_title_meta_typo' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td:is(.product-name, .product-data) .product-attributes li',
1028 'cart_product_title_meta_color' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tr td:is(.product-name, .product-data) .product-attributes li',
1029
1030 'cart_subtotal_button_typo' => '{{WRAPPER}} td.product-subtotal .subtotal-action-button-wrapper a',
1031 'cart_subtotal_price_padding' => '{{WRAPPER}} td.product-subtotal .table-column-wrapper .amount',
1032 'cart_subtotal_price_margin' => '{{WRAPPER}} td.product-subtotal .table-column-wrapper .amount',
1033 'cart_subtotal_button_gap' => '{{WRAPPER}} td.product-subtotal .table-column-wrapper .subtotal-action-button-wrapper',
1034 'cart_subtotal_button_wrapper_padding' => '{{WRAPPER}} td.product-subtotal .table-column-wrapper .subtotal-action-button-wrapper',
1035 'cart_subtotal_col_wrapper_padding' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tbody tr td.product-subtotal',
1036
1037 'table_min_width' => '.rtsb-builder-content {{WRAPPER}} .rtsb-table-horizontal-scroll-on-mobile table.shop_table',
1038 'cart_table_cell_width' => [
1039 'th' => '{{WRAPPER}} .shop_table.cart tr th',
1040 'td' => '{{WRAPPER}} .shop_table.cart tr td',
1041 ],
1042
1043 'clear_cart_button_bg_color' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-clear-cart-items',
1044 'clear_cart_button_text_color' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-clear-cart-items',
1045 'clear_cart_button_border_color' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-clear-cart-items',
1046 'clear_cart_button_bg_color_hover' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-clear-cart-items:hover',
1047 'clear_cart_button_text_color_hover' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-clear-cart-items:hover',
1048 'clear_cart_button_border_color_hover' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-clear-cart-items:hover',
1049
1050 // Table.
1051 'table_row_border' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table :is( thead, tbody ) tr',
1052
1053 'cart_table_header_typography' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tr th',
1054 'cart_heading_element_alignment' => '#rtsb-builder-content {{WRAPPER}} .woocommerce table.shop_table th',
1055 'cart_table_header_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table thead',
1056 'cart_table_header_text_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tr th',
1057
1058 'cart_table_odd_row_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tbody tr:nth-child(odd)',
1059 'cart_table_odd_row_text_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tr:nth-child(odd) td',
1060
1061 'cart_table_even_row_bg_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tbody tr:nth-child(even)',
1062 'cart_table_even_row_text_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tr:nth-child(even) td',
1063
1064 'cart_table_col_padding' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tbody tr td:not(.product-remove)',
1065 'cart_table_col_attributes_padding' => '{{WRAPPER}} .rtsb-cart-table table.shop_table tbody tr td .product-attributes-wrapper',
1066 'cart_table_row_padding' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tbody tr',
1067
1068 'cart_link_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tr td a',
1069 'cart_link_hover_color' => '.rtsb-builder-content {{WRAPPER}} .rtsb-cart-table table.shop_table tr td a:hover',
1070
1071 // Cart Quantity.
1072 'quantity_input_width' => '{{WRAPPER}} .woocommerce-cart-form input.qty',
1073 'quantity_height' => [
1074 'full' => '{{WRAPPER}} .woocommerce-cart-form input[type=number], {{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group:is( .rtsb-quantity-box-group-style-1, .rtsb-quantity-box-group-style-2 ) .rtsb-quantity-btn',
1075 'half' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group:is( .rtsb-quantity-box-group-style-3, .rtsb-quantity-box-group-style-4 ) .rtsb-quantity-btn',
1076 ],
1077 'quantity_increment_button_padding' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group .rtsb-quantity-btn.rtsb-quantity-plus',
1078 'quantity_decrement_button_padding' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group .rtsb-quantity-btn.rtsb-quantity-minus',
1079
1080 'quantity_button_width' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group .rtsb-quantity-btn',
1081 'icon_size' => [
1082 'icon' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group .rtsb-quantity-btn',
1083 'svg' => '{{WRAPPER}} .woocommerce-cart-form .rtsb-quantity-box-group .rtsb-quantity-btn svg',
1084 ],
1085 'quantity_icon_color' => '{{WRAPPER}} .woocommerce-cart-form .quantity :is(i, svg)',
1086 'quantity_icon_hover_color' => '{{WRAPPER}} .woocommerce-cart-form .quantity .rtsb-quantity-btn:hover :is(i, svg)',
1087 'text_typography' => '{{WRAPPER}} .woocommerce-cart-form .quantity input',
1088 'quantity_number_color' => '{{WRAPPER}} .woocommerce-cart-form .quantity input',
1089 'quantity_background_color' => '{{WRAPPER}} .woocommerce-cart-form .quantity input',
1090 'quantity_border' => '{{WRAPPER}} .woocommerce-cart-form .quantity input',
1091 'quantity_radius' => '{{WRAPPER}} .woocommerce-cart-form .quantity input',
1092 'qunatity_padding' => '{{WRAPPER}} .woocommerce-cart-form .quantity input',
1093 'quantity_wrapper_background_color' => '{{WRAPPER}} .woocommerce-cart-form .quantity .rtsb-quantity-box-group',
1094 'qunatity_wrapper_padding' => '{{WRAPPER}} .woocommerce-cart-form .quantity .rtsb-quantity-box-group',
1095 'quantity_wrapper_radius' => '{{WRAPPER}} .woocommerce-cart-form .quantity .rtsb-quantity-box-group',
1096 ],
1097 ];
1098
1099 return apply_filters( 'rtsb/elements/elementor/widget/cart/selectors', $selectors );
1100 }
1101
1102 /**
1103 * Checkout Selectors.
1104 *
1105 * @return array
1106 */
1107 private static function checkout_widget_selectors(): array {
1108 $selectors = [
1109 'rtsb-billing-form' => [
1110 // Title.
1111 'show_title' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1112 'title_typo' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1113 'title_align' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1114 'title_color' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1115 'title_text_stroke' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1116 'title_text_shadow' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1117 'title_margin' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1118 'title_padding' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1119 'title_border' => '{{WRAPPER}} .woocommerce-billing-fields h3',
1120 // Label.
1121 'fields_label_typo' => '{{WRAPPER}} .woocommerce-billing-fields label',
1122 'fields_label_color' => '{{WRAPPER}} .woocommerce-billing-fields label',
1123 'fields_label_reguired_color' => '{{WRAPPER}} .woocommerce-billing-fields label .required',
1124 'fields_label_margin' => '{{WRAPPER}} .woocommerce-billing-fields label:not(.radio)',
1125
1126 // Input Fields.
1127 'textarea_fields_height' => '{{WRAPPER}} .woocommerce-billing-fields textarea',
1128 'fields_height' => '{{WRAPPER}} .woocommerce-billing-fields input:not([type=checkbox],[type=radio]), {{WRAPPER}} .rtsb-form-billing .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select',
1129 'fields_border' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea), {{WRAPPER}} .woocommerce-billing-fields .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select',
1130
1131 'fields_border_radius' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]), {{WRAPPER}} .woocommerce-billing-fields .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select',
1132
1133 'fields_text_color' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]), {{WRAPPER}} .woocommerce-billing-fields .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select',
1134 'fields_bg_color' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]), {{WRAPPER}} .woocommerce-billing-fields .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select',
1135
1136 // Hover.
1137 'fields_hover_border' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]):is(:hover, :focus, :active), {{WRAPPER}} .woocommerce-billing-fields .select2-container--open .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select:is(:hover, :focus, :active,:focus-visible)',
1138
1139 'fields_border_radius_hover' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]):is(:hover, :focus, :active), {{WRAPPER}} .woocommerce-billing-fields .select2-container--open .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields select:is(:hover, :focus, :active,:focus-visible)',
1140
1141 'fields_hover_text_color' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]):is(:hover, :focus, :active), {{WRAPPER}} , {{WRAPPER}} .woocommerce-billing-fields .select2-container--open .select2-selection--single',
1142 'fields_hover_bg_color' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]):is(:hover, :focus, :active), {{WRAPPER}} .woocommerce-billing-fields .select2-container--open .select2-selection--single',
1143 'fields_padding' => '{{WRAPPER}} .woocommerce-billing-fields :is(input, textarea):not([type=checkbox],[type=radio]),{{WRAPPER}} .rtsb-form-billing .select2-container--default .select2-selection--single, {{WRAPPER}} .woocommerce-billing-fields :is( select, .select2-selection--single )',
1144
1145 'form_row_margin' => '{{WRAPPER}} .woocommerce-billing-fields p.form-row',
1146 'form_wrapper_margin' => '{{WRAPPER}} .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper',
1147
1148 ],
1149 'rtsb-shipping-form' => [
1150 // Label.
1151 'form_heading_gap' => '{{WRAPPER}} .rtsb-form-shipping #ship-to-different-address',
1152 'form_heading_color' => '{{WRAPPER}} .rtsb-form-shipping #ship-to-different-address',
1153 'form_heading_typo' => '{{WRAPPER}} .rtsb-form-shipping #ship-to-different-address',
1154
1155 'fields_label_typo' => '{{WRAPPER}} .rtsb-form-shipping .shipping_address label',
1156 'fields_label_color' => '{{WRAPPER}} .rtsb-form-shipping .shipping_address label',
1157 'fields_label_reguired_color' => '{{WRAPPER}} .rtsb-form-shipping .shipping_address label .required',
1158 'fields_label_margin' => '{{WRAPPER}} .rtsb-form-shipping .shipping_address label:not(.radio)',
1159
1160 // Input Fields.
1161 'textarea_fields_height' => '{{WRAPPER}} .rtsb-form-shipping textarea',
1162 'fields_height' => '{{WRAPPER}} .rtsb-form-shipping input:not([type=checkbox],[type=radio]), {{WRAPPER}} .rtsb-form-shipping .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select',
1163 'fields_border' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ), {{WRAPPER}} .rtsb-form-shipping .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select',
1164
1165 'fields_border_radius' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ), {{WRAPPER}} .rtsb-form-shipping .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select',
1166
1167 'fields_text_color' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ), {{WRAPPER}} .rtsb-form-shipping .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select',
1168 'fields_bg_color' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ), {{WRAPPER}} .rtsb-form-shipping .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select',
1169
1170 // Hover.
1171 'fields_hover_border' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active), {{WRAPPER}} .rtsb-form-shipping .select2-container--open .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select:is(:hover, :focus, :active,:focus-visible)',
1172
1173 'fields_border_radius_hover' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active), {{WRAPPER}} .rtsb-form-shipping .select2-container--open .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping select:is(:hover, :focus, :active,:focus-visible)',
1174
1175 'fields_hover_text_color' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active), {{WRAPPER}} , {{WRAPPER}} .rtsb-form-shipping .select2-container--open .select2-selection--single',
1176 'fields_hover_bg_color' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active), {{WRAPPER}} .rtsb-form-shipping .select2-container--open .select2-selection--single',
1177 'fields_padding' => '{{WRAPPER}} .rtsb-form-shipping :is( input:not([type=checkbox],[type=radio]), textarea ),{{WRAPPER}} .rtsb-form-billing .select2-container--default .select2-selection--single, {{WRAPPER}} .rtsb-form-shipping :is( select, .select2-selection--single )',
1178 'form_row_margin' => '{{WRAPPER}} .rtsb-form-shipping p.form-row',
1179 'form_wrapper_margin' => '{{WRAPPER}} .rtsb-form-shipping .shipping_address',
1180
1181 ],
1182 'rtsb-order-notes' => [
1183 'show_title' => '{{WRAPPER}} .rtsb-form-order-note h3',
1184 'title_typo' => '{{WRAPPER}} .rtsb-form-order-note h3',
1185 'title_align' => '{{WRAPPER}} .rtsb-form-order-note h3',
1186 'title_color' => '{{WRAPPER}} .rtsb-form-order-note h3',
1187 'title_text_stroke' => '{{WRAPPER}} .rtsb-form-order-note h3',
1188 'title_text_shadow' => '{{WRAPPER}} .rtsb-form-order-note h3',
1189 'title_margin' => '{{WRAPPER}} .rtsb-form-order-note h3',
1190 'title_padding' => '{{WRAPPER}} .rtsb-form-order-note h3',
1191 'title_border' => '{{WRAPPER}} .rtsb-form-order-note h3',
1192
1193 'fields_label_typo' => '{{WRAPPER}} .rtsb-form-order-note label',
1194 'fields_label_color' => '{{WRAPPER}} .rtsb-form-order-note label',
1195 'fields_label_reguired_color' => '{{WRAPPER}} .rtsb-form-order-note label .required',
1196 'fields_label_margin' => '{{WRAPPER}} .rtsb-form-order-note label:not(.radio)',
1197
1198 // Input Fields.
1199 'textarea_fields_height' => '{{WRAPPER}} .rtsb-form-order-note textarea',
1200 'fields_height' => '{{WRAPPER}} .rtsb-form-order-note input:not([type=checkbox],[type=radio]), {{WRAPPER}} .rtsb-form-order-note .select2-selection--single, {{WRAPPER}} .rtsb-form-order-note select',
1201 'fields_border' => '{{WRAPPER}} .rtsb-form-order-note :is( textarea, input, select, .select2-selection--multiple )',
1202 'fields_border_radius' => '{{WRAPPER}} .rtsb-form-order-note :is( input:not([type=checkbox],[type=radio]), textarea )',
1203 'fields_text_color' => '{{WRAPPER}} .rtsb-form-order-note :is( textarea, input, select, .select2-selection--multiple )',
1204 'fields_bg_color' => '{{WRAPPER}} .rtsb-form-order-note :is( textarea, input, select, .select2-selection--multiple )',
1205
1206 // Hover.
1207 'fields_hover_border' => '{{WRAPPER}} .rtsb-form-order-note :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active)',
1208
1209 'fields_border_radius_hover' => '{{WRAPPER}} .rtsb-form-order-note :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active)',
1210 'fields_hover_text_color' => '{{WRAPPER}} .rtsb-form-order-note :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active)',
1211 'fields_hover_bg_color' => '{{WRAPPER}} .rtsb-form-order-note :is( input:not([type=checkbox],[type=radio]), textarea ):is(:hover, :focus, :active)',
1212
1213 'fields_padding' => '{{WRAPPER}} .rtsb-form-order-note :is( input:not([type=checkbox],[type=radio]), textarea )',
1214 'form_row_margin' => '{{WRAPPER}} .rtsb-form-order-note .woocommerce-input-wrapper',
1215 'form_wrapper_margin' => '{{WRAPPER}} .rtsb-form-order-note .woocommerce-input-wrapper',
1216
1217 ],
1218
1219 'rtsb-order-review' => [
1220 // Title.
1221 'show_title' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1222 'table_min_width' => '.rtsb-builder-content {{WRAPPER}} .rtsb-table-horizontal-scroll-on-mobile table.shop_table',
1223 'title_typo' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1224 'title_align' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1225 'title_color' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1226 'title_text_stroke' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1227 'title_text_shadow' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1228 'title_margin' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1229 'title_padding' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1230 'title_border' => '#rtsb-builder-content {{WRAPPER}} .rtsb-checkout-order-review #order_review_heading',
1231 // Table Settings.
1232 'table_wrapper_border' => '#rtsb-builder-content {{WRAPPER}} #order_review',
1233 'table_wrapper_padding' => '#rtsb-builder-content {{WRAPPER}} #order_review',
1234 'table_wrapper_margin' => '#rtsb-builder-content {{WRAPPER}} #order_review',
1235 'table_border' => '{{WRAPPER}} #order_review table :is( td, th )',
1236 'label_typo' => '{{WRAPPER}} #order_review thead th',
1237 'label_color' => '{{WRAPPER}} #order_review thead th',
1238 'label_bg_color' => '{{WRAPPER}} #order_review thead th',
1239 'label_item_padding' => '{{WRAPPER}} #order_review thead th',
1240 // Table Body
1241 'body_text_typo' => '{{WRAPPER}} #order_review tbody td',
1242 'body_text_color' => '{{WRAPPER}} #order_review tbody td',
1243 'body_item_padding' => '{{WRAPPER}} #order_review tbody td',
1244 'table_body_bg_color' => '{{WRAPPER}} #order_review tbody td',
1245 // Counter
1246 'counter_text_color' => '{{WRAPPER}} .product-quantity',
1247 'counter_style' => '{{WRAPPER}} .product-quantity',
1248 // Table Footer
1249 'table_footer_label_typo' => '{{WRAPPER}} #order_review tfoot :is( th, td )',
1250 'table_footer_label_color' => '{{WRAPPER}} #order_review tfoot th',
1251 'table_footer_text_color' => '{{WRAPPER}} #order_review tfoot td',
1252 'table_footer_label_bg_color' => '{{WRAPPER}} #order_review tfoot :is( th, td )',
1253 'table_footer_item_padding' => '{{WRAPPER}} #order_review tfoot td, {{WRAPPER}} #order_review tfoot th',
1254
1255 ],
1256 'rtsb-checkout-payment' => [
1257 'payment_method_wrapper_bg_color' => '{{WRAPPER}} #payment ul.payment_methods',
1258 'payment_link_color' => '{{WRAPPER}} .rtsb-checkout-payment a',
1259 'payment_link_hover_color' => '{{WRAPPER}} .rtsb-checkout-payment a:hover',
1260
1261 'payment_label_typography' => '{{WRAPPER}} .rtsb-checkout-payment .wc_payment_method label',
1262 'payment_label_color' => '{{WRAPPER}} .rtsb-checkout-payment .wc_payment_method label, {{WRAPPER}} #payment .payment_methods li input[type=radio]:first-child+label:before',
1263 'payment_label_active_hover_color' => '{{WRAPPER}} .rtsb-checkout-payment .wc_payment_method label:hover, {{WRAPPER}} #payment .payment_methods li input[type=radio]:first-child:checked+label:before, {{WRAPPER}} #payment .payment_methods li input[type=radio]:first-child:checked+label',
1264 'payment_label_bg_color' => '{{WRAPPER}} .rtsb-checkout-payment .wc_payment_method label',
1265 'payment_method_space_between' => '{{WRAPPER}} #payment ul.payment_methods li input',
1266 'payment_method_bacs_padding' => '{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods>.woocommerce-PaymentMethod>label,{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods>.wc_payment_method>label',
1267 'payment_method_wrap_padding' => '{{WRAPPER}} #payment ul.payment_methods',
1268 'payment_method_bacs_margin' => '{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods>.woocommerce-PaymentMethod>label,{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods>.wc_payment_method>label',
1269
1270 'payment_description_typography' => '{{WRAPPER}} .rtsb-checkout-payment p',
1271 'payment_description_text_color' => '{{WRAPPER}} .rtsb-checkout-payment p',
1272 'payment_description_bg_color' => '{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods > li .payment_box',
1273 'payment_description_border' => '{{WRAPPER}} .rtsb-checkout-payment #payment ul.payment_methods',
1274 'payment_method_desc_padding' => '{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods li .payment_box',
1275 'payment_method_desc_margin' => '{{WRAPPER}} .rtsb-checkout-payment #payment .payment_methods li .payment_box',
1276
1277 'payment_button_description_typography' => '{{WRAPPER}} .rtsb-checkout-payment #payment .place-order p',
1278 'payment_button_description_text_color' => '{{WRAPPER}} .rtsb-checkout-payment #payment .place-order p',
1279 'payment_button_description_bg_color' => '{{WRAPPER}} .rtsb-checkout-payment #payment .place-order',
1280 'payment_button_wrapper_padding' => '{{WRAPPER}} .rtsb-checkout-payment #payment .place-order',
1281 'payment_button_wrapper_margin' => '{{WRAPPER}} .rtsb-checkout-payment #payment .place-order',
1282
1283 // Button section.
1284 'button_height' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1285 'button_width' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1286 'button_typography' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1287 'submit_button_alignment' => [
1288 'text-align' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1289 'float' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1290 ],
1291 'button_text_color_normal' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1292 'button_bg_color_normal' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1293 'button_border' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1294 'button_text_color_hover' => '{{WRAPPER}} .rtsb-checkout-payment #place_order:hover',
1295 'button_bg_color_hover' => '{{WRAPPER}} .rtsb-checkout-payment #place_order:hover',
1296 'button_border_hover_color' => '{{WRAPPER}} .rtsb-checkout-payment #place_order:hover',
1297 'button_border_radius' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1298 'button_padding' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1299 'button_margin' => '{{WRAPPER}} .rtsb-checkout-payment #place_order',
1300 ],
1301 'rtsb-coupon-form' => array_merge(
1302 self::button_settings_selector(),
1303 [
1304 'typo' => '{{WRAPPER}} p',
1305 'align' => '{{WRAPPER}} p',
1306 'text_color' => '{{WRAPPER}} p',
1307 'text_shadow' => '{{WRAPPER}} p',
1308 'text_margin' => '{{WRAPPER}} p',
1309
1310 // Input Fields.
1311 'fields_height' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text',
1312 'fields_border' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text',
1313 'fields_text_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text',
1314 'fields_bg_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text',
1315 'form_fields_border_radius' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text',
1316
1317 // Hover.
1318 'fields_hover_border' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text:is(:hover, :focus, :active)',
1319 'fields_hover_text_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text:is(:hover, :focus, :active)',
1320 'fields_hover_bg_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text:is(:hover, :focus, :active)',
1321 'form_fields_border_radius_hover' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text:is(:hover, :focus, :active)',
1322
1323 'fields_padding' => '{{WRAPPER}} .rtsb-checkout-coupon-form input.input-text',
1324 'fields_gap' => '{{WRAPPER}} .rtsb-checkout-coupon-form .coupon-form-fields',
1325
1326 'infobox_typography' => '{{WRAPPER}} .rtsb-checkout-coupon-form :is(.woocommerce-info, .wc-block-components-notice-banner__content )',
1327 'infobox_bg_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form :is(.woocommerce-info, .wc-block-components-notice-banner )',
1328 'infobox_text_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form :is(.woocommerce-info, .wc-block-components-notice-banner__content )',
1329
1330 'infobox_text_link_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form a',
1331 'infobox_border_color' => '{{WRAPPER}} .rtsb-checkout-coupon-form :is(.woocommerce-info, .wc-block-components-notice-banner ) ',
1332 'infobox_icon_size' => [
1333 'icon' => '{{WRAPPER}} :is( .woocommerce-info::before, .woocommerce-info i), {{WRAPPER}} .wc-block-components-notice-banner__content i',
1334 'svg' => '{{WRAPPER}} :is( .woocommerce-info svg, .wc-block-components-notice-banner__content svg )',
1335 ],
1336
1337 'infobox_icon_margin' => '{{WRAPPER}} .woocommerce-info::before, {{WRAPPER}} .woocommerce-info :is( i, svg ), {{WRAPPER}} .wc-block-components-notice-banner__content :is( i, svg ) ',
1338
1339 'infobox_icon_color' => '{{WRAPPER}} :is( .woocommerce-info::before, .woocommerce-info i, .woocommerce-info svg ), {{WRAPPER}} :is( .wc-block-components-notice-banner__content svg, .wc-block-components-notice-banner__content i )',
1340
1341 'infobox_wrapper_border' => '{{WRAPPER}} .rtsb-checkout-coupon-form ',
1342 'infobox_border_radius' => '{{WRAPPER}} .rtsb-checkout-coupon-form .wc-block-components-notice-banner',
1343 'infobox_padding' => '{{WRAPPER}} .rtsb-checkout-coupon-form :is( .woocommerce-info, .wc-block-components-notice-banner__content )',
1344 'form_margin' => '{{WRAPPER}} .rtsb-checkout-coupon-form .coupon-form-fields',
1345 'form_area_padding' => '{{WRAPPER}} .rtsb-checkout-coupon-form .woocommerce-form-coupon',
1346 'form_area_margin' => '{{WRAPPER}} .rtsb-checkout-coupon-form .woocommerce-form-coupon',
1347
1348 'form_area_wrapper_border' => '{{WRAPPER}} .rtsb-checkout-coupon-form .woocommerce-form-coupon',
1349 'form_area_border_radius' => '{{WRAPPER}} .rtsb-checkout-coupon-form .woocommerce-form-coupon',
1350
1351 ]
1352 ),
1353 'rtsb-checkout-login-form' => array_merge(
1354 self::button_settings_selector(),
1355 [
1356 'typo' => '{{WRAPPER}} p',
1357 'align' => '{{WRAPPER}} p',
1358 'text_color' => '{{WRAPPER}} p',
1359 'text_shadow' => '{{WRAPPER}} p',
1360 'text_margin' => '{{WRAPPER}} p',
1361
1362 // Input Fields.
1363 'fields_height' => '{{WRAPPER}} input.input-text',
1364 'fields_border' => '{{WRAPPER}} input.input-text',
1365 'form_fields_border_radius' => '{{WRAPPER}} input.input-text',
1366 'fields_text_color' => '{{WRAPPER}} input.input-text',
1367 'fields_bg_color' => '{{WRAPPER}} input.input-text',
1368
1369 // Hover.
1370 'fields_hover_border' => '{{WRAPPER}} input.input-text:is(:hover, :focus, :active)',
1371 'form_fields_border_radius_hover' => '{{WRAPPER}} input.input-text:is(:hover, :focus, :active)',
1372 'fields_hover_text_color' => '{{WRAPPER}} input.input-text:is(:hover, :focus, :active)',
1373 'fields_hover_bg_color' => '{{WRAPPER}} input.input-text:is(:hover, :focus, :active)',
1374
1375 'fields_padding' => '{{WRAPPER}} .rtsb-checkout-login-form input.input-text',
1376 'fields_gap' => '{{WRAPPER}} .rtsb-checkout-login-form .login-form-fields',
1377 'label_gap' => '{{WRAPPER}} .rtsb-checkout-login-form .field-wrapper label',
1378 // Info Box.
1379 'infobox_typography' => '{{WRAPPER}} .rtsb-checkout-login-form :is(.woocommerce-info, .wc-block-components-notice-banner__content )',
1380 'infobox_bg_color' => '{{WRAPPER}} .rtsb-checkout-login-form :is(.woocommerce-info, .wc-block-components-notice-banner.is-info )',
1381 'infobox_text_color' => '{{WRAPPER}} .rtsb-checkout-login-form :is(.woocommerce-info, .wc-block-components-notice-banner__content )',
1382
1383 'infobox_text_link_color' => '{{WRAPPER}} .rtsb-checkout-login-form a',
1384
1385 'infobox_border_color' => '{{WRAPPER}} .rtsb-checkout-login-form :is(.woocommerce-info, .wc-block-components-notice-banner.is-info )',
1386 'infobox_icon_size' => [
1387 'icon' => '{{WRAPPER}} :is( .woocommerce-info::before, .woocommerce-info i), {{WRAPPER}} .wc-block-components-notice-banner__content i',
1388 'svg' => '{{WRAPPER}} :is( .woocommerce-info svg, .wc-block-components-notice-banner__content svg )',
1389 ],
1390
1391 'infobox_icon_margin' => '{{WRAPPER}} .woocommerce-info::before, {{WRAPPER}} .woocommerce-info :is( i, svg ), {{WRAPPER}} .wc-block-components-notice-banner :is( i, svg ) ',
1392
1393 'infobox_icon_color' => '{{WRAPPER}} :is( .woocommerce-info::before, .woocommerce-info i, .woocommerce-info svg ), {{WRAPPER}} :is( .wc-block-components-notice-banner svg, .wc-block-components-notice-banner i )',
1394
1395 'infobox_wrapper_border' => '{{WRAPPER}} .rtsb-checkout-login-form',
1396 'infobox_border_radius' => '{{WRAPPER}} .rtsb-checkout-login-form .wc-block-components-notice-banner',
1397 'infobox_padding' => '{{WRAPPER}} .rtsb-checkout-login-form :is( .woocommerce-info, .wc-block-components-notice-banner__content ) ',
1398 'form_margin' => '{{WRAPPER}} .rtsb-checkout-login-form .login-form-fields',
1399 'form_area_padding' => '{{WRAPPER}} .rtsb-checkout-login-form .woocommerce-form-login',
1400 'form_area_margin' => '{{WRAPPER}} .rtsb-checkout-login-form .woocommerce-form-login',
1401 'form_area_wrapper_border' => '{{WRAPPER}} .rtsb-checkout-login-form .woocommerce-form-login',
1402 'form_area_border_radius' => '{{WRAPPER}} .rtsb-checkout-login-form .woocommerce-form-login',
1403
1404 ]
1405 ),
1406 'rtsb-shipping-method' => [
1407
1408 // General.
1409 'general_cart_table_border' => '{{WRAPPER}} .rtsb_woocommerce_shipping_methods :is( td )',
1410 'general_cart_table_bg' => '{{WRAPPER}} .rtsb_woocommerce_shipping_methods :is( td )',
1411 'general_table_padding' => '{{WRAPPER}} .rtsb_woocommerce_shipping_methods :is( td )',
1412
1413 // Title.
1414 'show_title' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1415 'title_typo' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1416 'title_align' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1417 'title_color' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1418 'title_text_stroke' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1419 'title_text_shadow' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1420 'title_margin' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1421 'title_padding' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1422 'title_border' => '{{WRAPPER}} .rtsb-shipping-method .shipping-method-title',
1423 // Label.
1424 'label_title_typo' => '{{WRAPPER}} .rtsb-shipping-method .woocommerce-shipping-methods label',
1425 'label_title_color' => '{{WRAPPER}} .rtsb-shipping-method .woocommerce-shipping-methods label',
1426 'label_space_between' => '{{WRAPPER}} .woocommerce .rtsb-builder-content ul#shipping_method li',
1427 'label_item_space' => '{{WRAPPER}} .woocommerce .rtsb-builder-content ul#shipping_method',
1428 ],
1429 ];
1430
1431 return apply_filters( 'rtsb/elements/elementor/widget/checkout/selectors', $selectors );
1432 }
1433
1434 /**
1435 * Common CSS Selectors.
1436 *
1437 * @return array
1438 */
1439 private static function general_common_selectors(): array {
1440 return apply_filters(
1441 'rtsb/elementor/common_selectors',
1442 [
1443 'columns' => [
1444 'cols' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-row',
1445 'masonry' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-row.rtsb-masonry',
1446 'list_cols' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-row[class*="list-layout"]',
1447 'list_masonry' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-row[class*="list-layout"].rtsb-masonry',
1448 'grid_gap' => [
1449 'padding' => '{{WRAPPER}} .rtsb-elementor-container [class*=rtsb-col-]',
1450 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-row',
1451 'slider_layout3' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-slider-layout3',
1452 'slider_layout9' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-slider-layout9',
1453 ],
1454 'image_width' => [
1455 'image' => '{{WRAPPER}} .rtsb-product .rtsb-list-item .rtsb-product-img, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-layout6 .rtsb-content-left',
1456 // 'content' => '{{WRAPPER}} .rtsb-product .rtsb-list-item .rtsb-product-content',
1457 ],
1458 'v_action_btn_width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-list-layout3 .rtsb-product .rtsb-action-buttons.after-content',
1459 'image_gap' => '{{WRAPPER}} .rtsb-product .rtsb-list-item,{{WRAPPER}} .rtsb-elementor-container .rtsb-list-layout6 .rtsb-product .rtsb-list-item .rtsb-product-content',
1460 'grid_alignment' => [
1461 'text_align' => '{{WRAPPER}} .rtsb-elementor-container, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout4 .rtsb-product-content',
1462 'justify_content' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-category, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-list, {{WRAPPER}} .rtsb-elementor-container .price-wrapper, {{WRAPPER}} .rtsb-elementor-container [class*=list-layout] .rtsb-product-category, {{WRAPPER}} .rtsb-elementor-container .rtwpvs-archive-variation-wrapper, {{WRAPPER}} .rtsb-elementor-container .product-rating, {{WRAPPER}} .rtsb-elementor-container .category-title-with-count, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product-content .rtsb-product-category,{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout4 .rtsb-product-content .rtsb-product-category,{{WRAPPER}} .rtsb-grid-layout4 .rtsb-content-footer.has-cart-text .rtsb-action-button-list',
1463 ],
1464 ],
1465 'color_scheme' => [
1466 'primary_color' => '{{WRAPPER}}',
1467 'secondary_color' => '{{WRAPPER}}',
1468 ],
1469 'count' => [
1470 'typography' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .product-count',
1471 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .product-count',
1472 'color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .product-count, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .product-count',
1473 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .product-count, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .product-count',
1474 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid:hover .single-category-area .product-count, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid:hover .category-wrapper .product-count',
1475 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid:hover .single-category-area .product-count, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid:hover .category-wrapper .product-count',
1476 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .product-count',
1477 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid:hover .product-count',
1478 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .product-count',
1479 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .product-count',
1480 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .product-count',
1481 ],
1482 'product_badges' => [
1483 'typography' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline',
1484 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline',
1485 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline',
1486 'border_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline.angle-right::after',
1487 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline',
1488 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline, {{WRAPPER}} .rtsb-elementor-container .rtsb-badge.type-image',
1489 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-tag-fill, {{WRAPPER}} .rtsb-elementor-container .rtsb-tag-outline, {{WRAPPER}} .rtsb-elementor-container .rtsb-badge.type-image',
1490 'position_x' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-img > .rtsb-promotion',
1491 'position_y' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-img > .rtsb-promotion',
1492 ],
1493 'image' => [
1494 'overlay' => '{{WRAPPER}} .rtsb-elementor-container.has-overlay [class*=category-single-layout] .single-category-area .rtsb-img-link::before',
1495 'hover_overlay' => '{{WRAPPER}} .rtsb-elementor-container.has-overlay .single-category-area .rtsb-img-link::after',
1496 'img_bg_color' => '{{WRAPPER}} .rtsb-product-img .rtsb-product-image, {{WRAPPER}} .rtsb-product-img .default-img',
1497 'img_wrapper_bg_color' => '{{WRAPPER}} .rtsb-product-img figure',
1498 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-img figure',
1499 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item .rtsb-product-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item .default-img, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .rtsb-product-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .default-img, {{WRAPPER}} .rtsb-elementor-container .rtsb-product-img .default-img, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item .rtsb-product-image',
1500 'max_width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item .rtsb-product-img figure, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image .rtsb-product-img figure,{{WRAPPER}} .rtsb-elementor-container .rtsb-product-img figure, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item .rtsb-product-img figure',
1501 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-img figure, {{WRAPPER}} .rtsb-elementor-container.has-overlay [class*=category-single-layout] .single-category-area::before, {{WRAPPER}} .rtsb-elementor-container.has-overlay [class*=category-single-layout] .single-category-area::after',
1502 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-img',
1503
1504 ],
1505 'advanced' => [
1506 'wrapper_padding' => '{{WRAPPER}} .rtsb-elementor-container > .rtsb-row',
1507 'content_padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .rtsb-category-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image',
1508 'element_margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid',
1509 'element_padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item, {{WRAPPER}} .rtsb-elementor-container .single-category-area, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .category-wrapper, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .fade-action-button, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-layout3 .rtsb-product .rtsb-action-buttons.after-content',
1510 'content_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .rtsb-category-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image',
1511 'element_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item, {{WRAPPER}} .rtsb-elementor-container .single-category-area, {{WRAPPER}} .rtsb-elementor-container .category-wrapper,{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product .fade-action-button,{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product .product-fade-content',
1512 'rtsb_el_element_shadow' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item, {{WRAPPER}} .rtsb-elementor-container .single-category-area, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .category-wrapper, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product .product-fade-content',
1513 'content_hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .rtsb-category-content:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image:hover',
1514 'element_hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item:hover, {{WRAPPER}} .rtsb-elementor-container .single-category-area:hover, {{WRAPPER}} .rtsb-elementor-container .category-wrapper:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product:hover :is( .product-fade-content, .fade-action-button )',
1515 'rtsb_el_element_hover_shadow' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item:hover, {{WRAPPER}} .rtsb-elementor-container .single-category-area:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .category-wrapper:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .rtsb-category-grid:hover .category-title-with-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-grid-layout3 .rtsb-product:hover .product-fade-content',
1516 'rtsb_el_wrapper_border' => '{{WRAPPER}} .rtsb-elementor-container > .rtsb-row',
1517 'wrapper_border_radius' => '{{WRAPPER}} .rtsb-elementor-container > .rtsb-row',
1518 'rtsb_el_element_border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item, {{WRAPPER}} .rtsb-elementor-container .single-category-area, {{WRAPPER}} .rtsb-elementor-container .category-wrapper',
1519 'element_border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item:hover, {{WRAPPER}} .rtsb-elementor-container .single-category-area:hover, {{WRAPPER}} .rtsb-elementor-container .category-wrapper:hover',
1520 'element_border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-grid-item, {{WRAPPER}} .rtsb-elementor-container .rtsb-list-item, {{WRAPPER}} .rtsb-elementor-container .single-category-area, {{WRAPPER}} .rtsb-elementor-container .category-wrapper',
1521 'rtsb_el_content_border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .rtsb-category-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image',
1522 'content_border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .rtsb-category-content:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image:hover',
1523 'content_border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-row:not(.rtsb-category-layout2) .rtsb-category-content, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image',
1524 ],
1525 'badges_module' => [
1526 'direction' => '{{WRAPPER}} .rtsb-promotion .rtsb-badge-group-style',
1527 'alignment' => '{{WRAPPER}} .rtsb-promotion .rtsb-badge-group-style',
1528 ],
1529 ]
1530 );
1531 }
1532
1533 /**
1534 * Common CSS Selectors.
1535 *
1536 * @return array
1537 */
1538 public static function general_slider_selectors(): array {
1539 return [
1540 'slider_buttons' => [
1541 'arrow_size' => [
1542 'icon' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow i',
1543 'svg' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow svg',
1544 ],
1545 'arrow_width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow',
1546 'arrow_height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow',
1547 'arrow_line_height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow i',
1548 'dot_width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet',
1549 'dot_height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet',
1550 'dot_spacing' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet',
1551 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow',
1552 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow',
1553 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow:hover',
1554 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow:hover',
1555 'dot_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet',
1556 'dot_active_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet-active',
1557 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow, {{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet',
1558 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet:hover',
1559 'active_border_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet-active',
1560 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-arrow, {{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination-bullet',
1561 'wrapper_padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-nav, {{WRAPPER}} .rtsb-elementor-container .rtsb-carousel-slider .swiper-pagination',
1562 ],
1563 ];
1564 }
1565
1566 /**
1567 * Category CSS Selectors.
1568 *
1569 * @return array
1570 */
1571 private static function general_product_selectors(): array {
1572 return apply_filters(
1573 'rtsb/elementor/general_product_selectors',
1574 [
1575 'section_title' => [
1576 'typography' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1577 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1578 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1579 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1580 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title:hover',
1581 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title:hover',
1582 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1583 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title:hover',
1584 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1585 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-section-title',
1586 ],
1587 'product_title' => [
1588 'typography' => '{{WRAPPER}} .rtsb-elementor-container .product-title',
1589 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .product-title',
1590 'color' => '{{WRAPPER}} .rtsb-elementor-container .product-title',
1591 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper,{{WRAPPER}} .rtsb-elementor-container .product-title',
1592 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper:hover .product-title',
1593 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper:hover,{{WRAPPER}} .rtsb-elementor-container .product-title:hover',
1594 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper',
1595 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper:hover',
1596 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper,{{WRAPPER}} .rtsb-elementor-container .product-title',
1597 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-title-wrapper,{{WRAPPER}} .rtsb-elementor-container .product-title',
1598 ],
1599 'short_description' => array_fill_keys(
1600 [
1601 'typography',
1602 'alignment',
1603 'color',
1604 'bg_color',
1605 'border',
1606 'padding',
1607 'margin',
1608 ],
1609 '{{WRAPPER}} .rtsb-elementor-container .product-short-description'
1610 ),
1611 'action_buttons' => [
1612 'action_btn_alignment' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product .rtsb-action-buttons.horizontal-floating-btn .rtsb-action-button-list',
1613 'action_btn_gap' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-action-button-list',
1614 ],
1615 'product_price' => [
1616 'typography' => '{{WRAPPER}} .rtsb-elementor-container .price-wrapper, {{WRAPPER}} .rtsb-elementor-container .price-wrapper ins .woocommerce-Price-amount, {{WRAPPER}}.elementor-element .rtsb-elementor-container.products .price-wrapper > p',
1617 'sale_typography' => '{{WRAPPER}} .rtsb-elementor-container.products .price-wrapper del',
1618 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .product-price',
1619 'color' => '{{WRAPPER}} .rtsb-elementor-container .price-wrapper :is( ins, ins span bdi)',
1620 'regular_color' => '{{WRAPPER}} .rtsb-elementor-container .price-wrapper :is( bdi, del bdi), {{WRAPPER}} .rtsb-elementor-container.products .price-wrapper del',
1621 'crossed_regular_color' => '{{WRAPPER}} .rtsb-elementor-container .price-wrapper :is(del bdi), {{WRAPPER}} .rtsb-elementor-container.products .price-wrapper del',
1622 'border' => '{{WRAPPER}} .rtsb-elementor-container .price-wrapper',
1623 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .price-wrapper:hover',
1624 'padding' => '{{WRAPPER}} .rtsb-elementor-container .product-price',
1625 'margin' => '{{WRAPPER}} .rtsb-elementor-container .product-price',
1626 ],
1627 'product_rating' => [
1628 'typography' => '{{WRAPPER}} .rtsb-elementor-container .star-rating',
1629 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .product-rating',
1630 'color' => '{{WRAPPER}} .rtsb-elementor-container :is(.star-rating span):before',
1631 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container :is(.star-rating):before',
1632 'padding' => '{{WRAPPER}} .rtsb-elementor-container .star-rating',
1633 'margin' => '{{WRAPPER}} .rtsb-elementor-container .product-rating',
1634 ],
1635 'product_categories' => [
1636 'typography' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1637 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-content .rtsb-product-category',
1638 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1639 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1640 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a:hover',
1641 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a:hover',
1642 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1643 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a:hover',
1644 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1645 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1646 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-list li > a',
1647 'wrapper_margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-product-category',
1648 ],
1649 'pagination' => [
1650 'typography' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1651 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap',
1652 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1653 'height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1654 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1655 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1656 'active_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span',
1657 'active_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span',
1658 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button:hover',
1659 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button:hover',
1660 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1661 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button:hover, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button:hover',
1662 'border_active_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span',
1663 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li a, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list li span, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1664 'spacing' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap',
1665 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap .rtsb-load-more button, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap .rtsb-load-more button',
1666 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-pagination ul.pagination-list, {{WRAPPER}} .rtsb-elementor-container .rtsb-pagination-wrap, {{WRAPPER}} .rtsb-elementor-container .rtsb-archive-pagination-wrap',
1667 ],
1668 'product_add_to_cart' => [
1669 'typography' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1670 'icon_size' => [
1671 'font_size' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn .icon',
1672 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn .icon svg',
1673 ],
1674 'cart_icon_spacing' => [
1675 'margin_left' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-action-button-list .rtsb-cart .rtsb-action-btn.icon-left .icon + .text',
1676 'margin_right' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-action-button-list .rtsb-cart .rtsb-action-btn.icon-right .icon + .text',
1677 ],
1678 'cart_width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1679 'cart_height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1680 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1681 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1682 'icon_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn .icon',
1683 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn:hover',
1684 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn:hover',
1685 'hover_icon_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn:hover .icon',
1686 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1687 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn:hover',
1688 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1689 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1690 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-cart .rtsb-action-btn',
1691 ],
1692 'product_compare' => [
1693 'icon_size' => [
1694 'font_size' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn .icon',
1695 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn .icon svg',
1696 ],
1697 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1698 'height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1699 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1700 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1701 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn:hover',
1702 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn:hover',
1703 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1704 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn:hover',
1705 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1706 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1707 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-compare .rtsb-action-btn',
1708 ],
1709 'product_wishlist' => [
1710 'icon_size' => [
1711 'font_size' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn .icon',
1712 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn .icon svg',
1713 ],
1714 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1715 'height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1716 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1717 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1718 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn:hover',
1719 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn:hover',
1720 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1721 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn:hover',
1722 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1723 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1724 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-wishlist .rtsb-action-btn',
1725 ],
1726 'product_quick_view' => [
1727 'icon_size' => [
1728 'font_size' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn .icon',
1729 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn .icon svg',
1730 ],
1731 'width' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1732 'height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1733 'color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1734 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1735 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn:hover',
1736 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn:hover',
1737 'border' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1738 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn:hover',
1739 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1740 'padding' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1741 'margin' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-quick-view .rtsb-action-btn',
1742 ],
1743 'hover_icon_button' => [
1744 'typography' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1745 'icon_size' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a .icon',
1746 'hover_icon_spacing' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a .text + .icon',
1747 'color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1748 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1749 'icon_color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a .icon',
1750 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a:hover',
1751 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a:hover',
1752 'hover_icon_color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a:hover i',
1753 'border' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1754 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a:hover',
1755 'border_radius' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1756 'padding' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1757 'margin' => '{{WRAPPER}} .rtsb-elementor-container .product-title-with-btn .btn-wrap a',
1758 ],
1759 'not_found_notice' => self::not_found_notice_selectors(),
1760 ]
1761 );
1762 }
1763
1764 /**
1765 * Not Found Notice Selectors.
1766 *
1767 * @return array
1768 */
1769 public static function not_found_notice_selectors() {
1770 return array_fill_keys(
1771 [
1772 'typography',
1773 'alignment',
1774 'color',
1775 'bg_color',
1776 'border',
1777 'padding',
1778 'margin',
1779 ],
1780 '{{WRAPPER}} .rtsb-elementor-container .woocommerce-no-products-found .woocommerce-info, {{WRAPPER}} .rtsb-product-catalog .woocommerce-no-products-found .woocommerce-info'
1781 );
1782 }
1783
1784 /**
1785 * Category CSS Selectors.
1786 *
1787 * @return array
1788 */
1789 private static function general_cat_selectors(): array {
1790 return [
1791 'category_single_layout' => [
1792 'cat_alignment' => [
1793 'text_align' => '{{WRAPPER}} .rtsb-elementor-container',
1794 'justify_content' => '{{WRAPPER}} .rtsb-elementor-container [class*=list-layout] .rtsb-product-category, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .category-title-with-count',
1795 ],
1796 'cat_height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .rtsb-product-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-grid .default-img',
1797 ],
1798 'category_multi_layout' => [
1799 'cat_height' => '{{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout1 .rtsb-product-img .rtsb-product-image, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout1 .rtsb-product-img .default-img, {{WRAPPER}} .rtsb-elementor-container .rtsb-category-layout2 .category-title-with-image',
1800 ],
1801 'cat_count_settings' => [
1802 'count_display_type' => '{{WRAPPER}} .rtsb-elementor-container .category-title-with-count',
1803 ],
1804 'cat_title' => [
1805 'typography' => '{{WRAPPER}} .rtsb-elementor-container .category-title',
1806 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .category-title',
1807 'color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-title, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .category-title, {{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-title-with-count',
1808 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-title, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .category-title',
1809 'hover_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-title:hover, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .category-title:hover',
1810 'hover_bg_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-title:hover, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .category-title:hover',
1811 'border' => '{{WRAPPER}} .rtsb-elementor-container .category-title',
1812 'border_hover_color' => '{{WRAPPER}} .rtsb-elementor-container .category-title:hover',
1813 'padding' => '{{WRAPPER}} .rtsb-elementor-container .category-title',
1814 'margin' => '{{WRAPPER}} .rtsb-elementor-container .category-title',
1815 ],
1816 'cat_description' => [
1817 'typography' => '{{WRAPPER}} .rtsb-elementor-container .category-description',
1818 'alignment' => '{{WRAPPER}} .rtsb-elementor-container .category-description',
1819 'color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-description, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .category-description',
1820 'bg_color' => '{{WRAPPER}} .rtsb-elementor-container [class*=category-single-layout] .rtsb-category-grid .single-category-area .category-description, {{WRAPPER}} .rtsb-elementor-container [class*=rtsb-category-layout] .rtsb-category-grid .category-wrapper .category-description',
1821 'border' => '{{WRAPPER}} .rtsb-elementor-container .category-description',
1822 'padding' => '{{WRAPPER}} .rtsb-elementor-container .category-description',
1823 'margin' => '{{WRAPPER}} .rtsb-elementor-container .category-description',
1824 ],
1825 ];
1826 }
1827
1828 /**
1829 * Social Share CSS Selectors.
1830 *
1831 * @return array
1832 */
1833 private static function social_share(): array {
1834 return apply_filters(
1835 'rtsb/elements/elementor/social_share_selectors',
1836 [
1837 'share_items' => [
1838 'share_icons_spacing' => '{{WRAPPER}} .rtsb-social-share',
1839 'share_items_min_width' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn',
1840 'social_items_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn svg, {{WRAPPER}} .rtsb-social-share .rtsb-share-btn .rtsb-share-label',
1841 'social_items_bg_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn',
1842 'facebook_color' => '{{WRAPPER}} .rtsb-social-share .facebook svg, {{WRAPPER}} .rtsb-social-share .facebook .rtsb-share-label',
1843 'twitter_color' => '{{WRAPPER}} .rtsb-social-share .twitter svg, {{WRAPPER}} .rtsb-social-share .twitter .rtsb-share-label',
1844 'linkedin_color' => '{{WRAPPER}} .rtsb-social-share .linkedin svg, {{WRAPPER}} .rtsb-social-share .linkedin .rtsb-share-label',
1845 'pinterest_color' => '{{WRAPPER}} .rtsb-social-share .pinterest svg, {{WRAPPER}} .rtsb-social-share .pinterest .rtsb-share-label',
1846 'skype_color' => '{{WRAPPER}} .rtsb-social-share .skype svg, {{WRAPPER}} .rtsb-social-share .skype .rtsb-share-label',
1847 'whatsapp_color' => '{{WRAPPER}} .rtsb-social-share .whatsapp svg, {{WRAPPER}} .rtsb-social-share .whatsapp .rtsb-share-label',
1848 'reddit_color' => '{{WRAPPER}} .rtsb-social-share .reddit svg, {{WRAPPER}} .rtsb-social-share .reddit .rtsb-share-label',
1849 'telegram_color' => '{{WRAPPER}} .rtsb-social-share .telegram svg, {{WRAPPER}} .rtsb-social-share .telegram .rtsb-share-label',
1850 'facebook_bg_color' => '{{WRAPPER}} .rtsb-social-share .facebook',
1851 'twitter_bg_color' => '{{WRAPPER}} .rtsb-social-share .twitter',
1852 'linkedin_bg_color' => '{{WRAPPER}} .rtsb-social-share .linkedin',
1853 'pinterest_bg_color' => '{{WRAPPER}} .rtsb-social-share .pinterest',
1854 'skype_bg_color' => '{{WRAPPER}} .rtsb-social-share .skype',
1855 'whatsapp_bg_color' => '{{WRAPPER}} .rtsb-social-share .whatsapp',
1856 'reddit_bg_color' => '{{WRAPPER}} .rtsb-social-share .reddit',
1857 'telegram_bg_color' => '{{WRAPPER}} .rtsb-social-share .telegram',
1858 'social_items_hover_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover svg, {{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover .rtsb-share-label',
1859 'social_items_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover',
1860 'facebook_hover_color' => '{{WRAPPER}} .rtsb-social-share .facebook:hover svg, {{WRAPPER}} .rtsb-social-share .facebook:hover .rtsb-share-label',
1861 'twitter_hover_color' => '{{WRAPPER}} .rtsb-social-share .twitter:hover svg, {{WRAPPER}} .rtsb-social-share .twitter:hover .rtsb-share-label',
1862 'linkedin_hover_color' => '{{WRAPPER}} .rtsb-social-share .linkedin:hover svg, {{WRAPPER}} .rtsb-social-share .linkedin:hover .rtsb-share-label',
1863 'pinterest_hover_color' => '{{WRAPPER}} .rtsb-social-share .pinterest:hover svg, {{WRAPPER}} .rtsb-social-share .pinterest:hover .rtsb-share-label',
1864 'skype_hover_color' => '{{WRAPPER}} .rtsb-social-share .skype:hover svg, {{WRAPPER}} .rtsb-social-share .skype:hover .rtsb-share-label',
1865 'whatsapp_hover_color' => '{{WRAPPER}} .rtsb-social-share .whatsapp:hover svg, {{WRAPPER}} .rtsb-social-share .whatsapp:hover .rtsb-share-label',
1866 'reddit_hover_color' => '{{WRAPPER}} .rtsb-social-share .reddit:hover svg, {{WRAPPER}} .rtsb-social-share .reddit:hover .rtsb-share-label',
1867 'telegram_hover_color' => '{{WRAPPER}} .rtsb-social-share .telegram:hover svg, {{WRAPPER}} .rtsb-social-share .telegram:hover .rtsb-share-label',
1868 'facebook_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .facebook:hover',
1869 'twitter_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .twitter:hover',
1870 'linkedin_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .linkedin:hover',
1871 'pinterest_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .pinterest:hover',
1872 'skype_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .skype:hover',
1873 'whatsapp_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .whatsapp:hover',
1874 'reddit_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .reddit:hover',
1875 'telegram_hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .telegram:hover',
1876 'border' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn',
1877 'border_hover_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover',
1878 'border_radius' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn',
1879 'padding' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn',
1880 'margin' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn',
1881 ],
1882 'share_icons' => [
1883 'share_icons_width' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn svg',
1884 'share_icons_height' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn svg',
1885 'color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn svg',
1886 'bg_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn .rtsb-share-icon',
1887 'hover_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover svg',
1888 'hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover .rtsb-share-icon',
1889 'border' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-icon',
1890 'border_hover_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover .rtsb-share-icon',
1891 'padding' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-icon',
1892 'margin' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-icon',
1893 ],
1894 'share_text' => [
1895 'typography' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1896 'alignment' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1897 'color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1898 'bg_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1899 'hover_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover .rtsb-share-label',
1900 'hover_bg_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover .rtsb-share-label',
1901 'border' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1902 'border_hover_color' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-btn:hover .rtsb-share-label',
1903 'padding' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1904 'margin' => '{{WRAPPER}} .rtsb-social-share .rtsb-share-icon-label .rtsb-share-label',
1905 ],
1906 'share_header' => [
1907 'typography' => '{{WRAPPER}} .rtsb-social-share-container .rtsb-social-header p',
1908 'share_header_type' => '{{WRAPPER}} .rtsb-social-share-container',
1909 'color' => '{{WRAPPER}} .rtsb-social-share-container .rtsb-social-header p',
1910 'bg_color' => '{{WRAPPER}} .rtsb-social-share-container .rtsb-social-header p',
1911 'border' => '{{WRAPPER}} .rtsb-social-share-container .rtsb-social-header p',
1912 'padding' => '{{WRAPPER}} .rtsb-social-share-container .rtsb-social-header p',
1913 'margin' => '{{WRAPPER}} .rtsb-social-share-container .rtsb-social-header p',
1914 ],
1915 ]
1916 );
1917 }
1918 }
1919