PluginProbe
Elementor Website Builder – more than just a page builder / 3.23.0-dev3
Elementor Website Builder – more than just a page builder v3.23.0-dev3
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 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/controls/icons.php +7 -6 4.1.0-dev23.23.0-dev3 View file →
@@ -79,9 +79,9 @@
79 79 <i class="eicon-plus-circle" aria-hidden="true"></i>
80 80 <span class="elementor-screen-only"><?php echo esc_html__( 'Add', 'elementor' ); ?></span>
81 81 </div>
82 82 <div class="elementor-control-media-area">
83 - <div class="elementor-control-media__remove elementor-control-media__content__remove" data-tooltip="<?php echo esc_attr__( 'Remove', 'elementor' ); ?>">
83 + <div class="elementor-control-media__remove elementor-control-media__content__remove" title="<?php echo esc_attr__( 'Remove', 'elementor' ); ?>">
84 84 <i class="eicon-trash-o" aria-hidden="true"></i>
85 85 <span class="elementor-screen-only"><?php echo esc_html__( 'Remove', 'elementor' ); ?></span>
86 86 </div>
87 87 <div class="elementor-control-media__preview"></div>
@@ -133,9 +133,9 @@
133 133 <div class="elementor-control-input-wrapper">
134 134 <div class="elementor-choices">
135 135 <# if ( ! data.exclude_inline_options.includes( 'none' ) ) { #>
136 136 <input id="<?php $this->print_control_uid(); ?>-none" type="radio" value="none">
137 - <label class="elementor-choices-label elementor-control-unit-1 tooltip-target elementor-control-icons--inline__none" for="<?php $this->print_control_uid(); ?>-none" data-tooltip="{{ get( 'none', 'label' ) }}">
137 + <label class="elementor-choices-label elementor-control-unit-1 tooltip-target elementor-control-icons--inline__none" for="<?php $this->print_control_uid(); ?>-none" data-tooltip="{{ get( 'none', 'label' ) }}" title="{{ get( 'none', 'label' ) }}">
138 138 <i class="{{ get( 'none', 'icon' ) }}" aria-hidden="true"></i>
139 139 <span class="elementor-screen-only">{{ get( 'none', 'label' ) }}</span>
140 140 </label>
141 141 <# }
@@ -140,9 +140,9 @@
140 140 </label>
141 141 <# }
142 142 if ( ! data.exclude_inline_options.includes( 'svg' ) ) { #>
143 143 <input id="<?php $this->print_control_uid(); ?>-svg" type="radio" value="svg">
144 - <label class="elementor-choices-label elementor-control-unit-1 tooltip-target elementor-control-icons--inline__svg" for="<?php $this->print_control_uid(); ?>-svg" data-tooltip="{{ get( 'svg', 'label' ) }}">
144 + <label class="elementor-choices-label elementor-control-unit-1 tooltip-target elementor-control-icons--inline__svg" for="<?php $this->print_control_uid(); ?>-svg" data-tooltip="{{ get( 'svg', 'label' ) }}" title="{{ get( 'svg', 'label' ) }}">
145 145 <i class="{{ get( 'svg', 'icon' ) }}" aria-hidden="true"></i>
146 146 <span class="elementor-screen-only">{{ get( 'svg', 'label' ) }}</span>
147 147 </label>
148 148 <# }
@@ -147,9 +147,9 @@
147 147 </label>
148 148 <# }
149 149 if ( ! data.exclude_inline_options.includes( 'icon' ) ) { #>
150 150 <input id="<?php $this->print_control_uid(); ?>-icon" type="radio" value="icon">
151 - <label class="elementor-choices-label elementor-control-unit-1 tooltip-target elementor-control-icons--inline__icon" for="<?php $this->print_control_uid(); ?>-icon" data-tooltip="{{ get( 'icon', 'label' ) }}">
151 + <label class="elementor-choices-label elementor-control-unit-1 tooltip-target elementor-control-icons--inline__icon" for="<?php $this->print_control_uid(); ?>-icon" data-tooltip="{{ get( 'icon', 'label' ) }}" title="{{ get( 'icon', 'label' ) }}">
152 152 <span class="elementor-control-icons--inline__displayed-icon">
153 153 <i class="{{ get( 'icon', 'icon' ) }}" aria-hidden="true"></i>
154 154 </span>
155 155 <span class="elementor-screen-only">{{ get( 'icon', 'label' ) }}</span>
@@ -209,11 +209,12 @@
209 209
210 210 /**
211 211 * Support SVG Import
212 212 *
213 - * @param array $mimes
214 - * @return array
215 213 * @deprecated 3.5.0
214 + *
215 + * @param $mimes
216 + * @return mixed
216 217 */
217 218 public function support_svg_import( $mimes ) {
218 219 Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( __METHOD__, '3.5.0' );
219 220