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