| 1 |
<?php |
| 2 |
/** |
| 3 |
* Selectors class. |
| 4 |
* |
| 5 |
* @package RadiusTheme\SB |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace RadiusTheme\SB\Elementor\Widgets\General\InfoBox; |
| 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 |
'typography' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-layout4 .info-box-counter', |
| 30 |
'count_color' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-layout4 .info-box-counter', |
| 31 |
'border' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap', |
| 32 |
'padding' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap', |
| 33 |
'border_radius' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap,{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap:before', |
| 34 |
'box_shadow' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap', |
| 35 |
'hover_box_shadow' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap:hover', |
| 36 |
'gradient_bg' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap', |
| 37 |
'bg_overlay' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap:before', |
| 38 |
], |
| 39 |
'layout' => [ |
| 40 |
'alignment' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap', |
| 41 |
], |
| 42 |
'icon' => [ |
| 43 |
'position' => '{{WRAPPER}} .rtsb-info-box .info-box-icon-holder', |
| 44 |
], |
| 45 |
'title_style' => [ |
| 46 |
'typography' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-title', |
| 47 |
'color' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-title', |
| 48 |
'border' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-title', |
| 49 |
'padding' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-title', |
| 50 |
'margin' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-title', |
| 51 |
], |
| 52 |
'content_style' => [ |
| 53 |
'typography' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-description', |
| 54 |
'color' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-description', |
| 55 |
'border' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-description', |
| 56 |
'padding' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-description', |
| 57 |
'margin' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-description', |
| 58 |
], |
| 59 |
'primary_button_style' => [ |
| 60 |
'typography' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 61 |
'color' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn,{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn .icon', |
| 62 |
'hover_color' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:hover,{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:hover .icon', |
| 63 |
'gradient_bg' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:before,{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 64 |
'hover_gradient_bg' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:after,{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:hover', |
| 65 |
'border' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 66 |
'btn_width' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 67 |
'btn_height' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 68 |
'box_shadow' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 69 |
'border_hover_color' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:hover', |
| 70 |
'border_radius' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn,{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:before,{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn:after', |
| 71 |
'padding' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn', |
| 72 |
'margin' => '{{WRAPPER}} .rtsb-shopbuilder-button', |
| 73 |
'icon_gap' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn .text-wrap', |
| 74 |
'icon_size' => [ |
| 75 |
'font_size' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn .icon', |
| 76 |
'svg' => '{{WRAPPER}} .rtsb-shopbuilder-button .rtsb-btn .icon svg', |
| 77 |
], |
| 78 |
], |
| 79 |
'info_box_icon_style' => [ |
| 80 |
'box_shadow' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 81 |
'color' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap .icon', |
| 82 |
'hover_color' => '{{WRAPPER}} .rtsb-info-box:hover .rtsb-info-box-wrap .icon-wrap .icon', |
| 83 |
'gradient_bg' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 84 |
'border_top_color' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap', |
| 85 |
'hover_gradient_bg' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap:hover .icon-wrap', |
| 86 |
'border_hover_color' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap:hover .icon-wrap', |
| 87 |
'border' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 88 |
'icon_width' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 89 |
'icon_height' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 90 |
'border_radius' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 91 |
'margin' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap', |
| 92 |
'icon_size' => [ |
| 93 |
'font_size' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap .icon', |
| 94 |
'svg' => '{{WRAPPER}} .rtsb-info-box .rtsb-info-box-wrap .icon-wrap .icon svg', |
| 95 |
], |
| 96 |
], |
| 97 |
]; |
| 98 |
} |
| 99 |
} |
| 100 |
|