PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 3.2.6
ShopBuilder – WooCommerce Builder For Elementor v3.2.6
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
shopbuilder / app / Elementor / Widgets / General / Counter / Selectors.php

Selectors.php in ShopBuilder – WooCommerce Builder For Elementor 3.2.6, at app/Elementor/Widgets/General/Counter/Selectors.php

78 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Selectors class.
4 *
5 * @package RadiusTheme\SB
6 */
7
8 namespace RadiusTheme\SB\Elementor\Widgets\General\Counter;
9
10 // Do not allow directly accessing this file.
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit( 'This script cannot be accessed directly.' );
13 }
14
15 /**
16 * Selectors class.
17 *
18 * @package RadiusTheme\SB
19 */
20 class Selectors {
21 /**
22 * Advanced Heading CSS Selectors.
23 *
24 * @return array
25 */
26 public static function get_selectors() {
27 return [
28 'content_box_style' => [
29 'border' => '{{WRAPPER}} .rtsb-counter .counter-inner',
30 'border_hover_color' => '{{WRAPPER}} .rtsb-counter .counter-inner:hover',
31 'padding' => '{{WRAPPER}} .rtsb-counter .counter-inner',
32 'border_radius' => '{{WRAPPER}} .rtsb-counter .counter-inner,{{WRAPPER}} .rtsb-counter .counter-inner:before',
33 'box_shadow' => '{{WRAPPER}} .rtsb-counter .counter-inner',
34 'hover_box_shadow' => '{{WRAPPER}} .rtsb-counter .counter-inner:hover',
35 'gradient_bg' => '{{WRAPPER}} .rtsb-counter .counter-inner',
36 'hover_gradient_bg' => '{{WRAPPER}} .rtsb-counter .counter-inner:hover',
37 'bg_overlay' => '{{WRAPPER}} .rtsb-counter .counter-inner:before',
38 'hover_bg_overlay' => '{{WRAPPER}} .rtsb-counter .counter-inner:hover:before',
39 ],
40 'layout' => [
41 'alignment' => '{{WRAPPER}} .rtsb-counter .counter-inner,{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-content',
42 'vertical_alignment' => '{{WRAPPER}} .rtsb-counter .counter-inner',
43 ],
44 'icon' => [
45 'position' => '{{WRAPPER}} .rtsb-counter .counter-inner .counter-icon-holder',
46 ],
47 'title_style' => [
48 'typography' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-title',
49 'color' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-title',
50 'border' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-title',
51 'padding' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-title',
52 'margin' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-title',
53 ],
54 'counter_icon_style' => [
55 'box_shadow' => '{{WRAPPER}} .rtsb-counter .icon-wrap',
56 'color' => '{{WRAPPER}} .rtsb-counter .icon-wrap .icon',
57 'gradient_bg' => '{{WRAPPER}} .rtsb-counter .icon-wrap',
58 'border' => '{{WRAPPER}} .rtsb-counter .icon-wrap',
59 'icon_width' => '{{WRAPPER}} .rtsb-counter .icon-wrap',
60 'icon_height' => '{{WRAPPER}} .rtsb-counter .icon-wrap',
61 'border_radius' => '{{WRAPPER}} .rtsb-counter .icon-wrap',
62 'margin' => '{{WRAPPER}} .rtsb-counter .counter-icon-holder',
63 'icon_size' => [
64 'font_size' => '{{WRAPPER}} .rtsb-counter .icon-wrap .icon',
65 'svg' => '{{WRAPPER}} .rtsb-counter .icon-wrap .icon svg',
66 ],
67 ],
68 'counter_count_style' => [
69 'typography' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-number-wrap',
70 'color' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-number-wrap',
71 'margin' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-number-wrap',
72 'suffix_color' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-prefix',
73 'prefix_color' => '{{WRAPPER}} .rtsb-counter .counter-inner .rtsb-counter-suffix',
74 ],
75 ];
76 }
77 }
78