PluginProbe
Elementor Website Builder – more than just a page builder / 3.13.2
Elementor Website Builder – more than just a page builder v3.13.2
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 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/controls/icons.php +12 -13 4.0.93.13.2 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>
@@ -131,18 +131,16 @@
131 131 <div class="elementor-control-field elementor-control-inline-icon">
132 132 <label class="elementor-control-title">{{{ data.label }}}</label>
133 133 <div class="elementor-control-input-wrapper">
134 134 <div class="elementor-choices">
135 - <# if ( ! data.exclude_inline_options.includes( 'none' ) ) { #>
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' ) }}">
138 - <i class="{{ get( 'none', 'icon' ) }}" aria-hidden="true"></i>
139 - <span class="elementor-screen-only">{{ get( 'none', 'label' ) }}</span>
140 - </label>
141 - <# }
142 - if ( ! data.exclude_inline_options.includes( 'svg' ) ) { #>
135 + <input id="<?php $this->print_control_uid(); ?>-none" type="radio" value="none">
136 + <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' ) }}">
137 + <i class="{{ get( 'none', 'icon' ) }}" aria-hidden="true"></i>
138 + <span class="elementor-screen-only">{{ get( 'none', 'label' ) }}</span>
139 + </label>
140 + <# if ( ! data.exclude_inline_options.includes( 'svg' ) ) { #>
143 141 <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' ) }}">
142 + <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 143 <i class="{{ get( 'svg', 'icon' ) }}" aria-hidden="true"></i>
146 144 <span class="elementor-screen-only">{{ get( 'svg', 'label' ) }}</span>
147 145 </label>
148 146 <# }
@@ -147,9 +145,9 @@
147 145 </label>
148 146 <# }
149 147 if ( ! data.exclude_inline_options.includes( 'icon' ) ) { #>
150 148 <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' ) }}">
149 + <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 150 <span class="elementor-control-icons--inline__displayed-icon">
153 151 <i class="{{ get( 'icon', 'icon' ) }}" aria-hidden="true"></i>
154 152 </span>
155 153 <span class="elementor-screen-only">{{ get( 'icon', 'label' ) }}</span>
@@ -209,11 +207,12 @@
209 207
210 208 /**
211 209 * Support SVG Import
212 210 *
213 - * @param array $mimes
214 - * @return array
215 211 * @deprecated 3.5.0
212 + *
213 + * @param $mimes
214 + * @return mixed
216 215 */
217 216 public function support_svg_import( $mimes ) {
218 217 Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( __METHOD__, '3.5.0' );
219 218