PluginProbe
Elementor Website Builder – more than just a page builder / 3.1.3
Elementor Website Builder – more than just a page builder v3.1.3
4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 All 454 releases
← All changes | core/kits/documents/tabs/settings-background.php +5 -23 4.3.0 → 3.1.3 View file →
@@ -4,9 +4,9 @@
4 4 use Elementor\Controls_Manager;
5 5 use Elementor\Group_Control_Background;
6 6
7 7 if ( ! defined( 'ABSPATH' ) ) {
8 - exit; // Exit if accessed directly.
8 + exit; // Exit if accessed directly
9 9 }
10 10
11 11 class Settings_Background extends Tab_Base {
12 12
@@ -14,9 +14,9 @@
14 14 return 'settings-background';
15 15 }
16 16
17 17 public function get_title() {
18 - return esc_html__( 'Background', 'elementor' );
18 + return __( 'Background', 'elementor' );
19 19 }
20 20
21 21 public function get_group() {
22 22 return 'settings';
@@ -26,9 +26,9 @@
26 26 return 'eicon-background';
27 27 }
28 28
29 29 public function get_help_url() {
30 - return 'https://go.elementor.com/global-background/';
30 + return 'https://go.elementor.com/global-background';
31 31 }
32 32
33 33 protected function register_tab_controls() {
34 34 $this->start_controls_section(
@@ -61,30 +61,12 @@
61 61
62 62 $this->add_control(
63 63 'mobile_browser_background',
64 64 [
65 - 'label' => esc_html__( 'Mobile Browser Background', 'elementor' ),
65 + 'label' => __( 'Mobile Browser Background', 'elementor' ),
66 66 'type' => Controls_Manager::COLOR,
67 - 'description' => esc_html__( 'The `theme-color` meta tag will only be available in supported browsers and devices.', 'elementor' ),
67 + 'description' => __( 'The `theme-color` meta tag will only be available in supported browsers and devices.', 'elementor' ),
68 68 'separator' => 'before',
69 - ]
70 - );
71 -
72 - $this->add_control(
73 - 'body_overscroll_behavior',
74 - [
75 - 'label' => esc_html__( 'Overscroll Behavior', 'elementor' ),
76 - 'type' => Controls_Manager::SELECT,
77 - 'options' => [
78 - '' => esc_html__( 'Default', 'elementor' ),
79 - 'none' => esc_html__( 'None', 'elementor' ),
80 - 'auto' => esc_html__( 'Auto', 'elementor' ),
81 - 'contain' => esc_html__( 'Contain', 'elementor' ),
82 - ],
83 - 'separator' => 'before',
84 - 'selectors' => [
85 - '{{WRAPPER}}' => 'overscroll-behavior: {{VALUE}};',
86 - ],
87 69 ]
88 70 );
89 71
90 72 $this->end_controls_section();