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/editor-templates/repeater.php +10 -7 4.1.0-dev23.13.2 View file →
@@ -8,22 +8,25 @@
8 8 ?>
9 9 <script type="text/template" id="tmpl-elementor-repeater-row">
10 10 <div class="elementor-repeater-row-tools">
11 11 <# if ( itemActions.drag_n_drop ) { #>
12 - <button class="elementor-repeater-row-handle-sortable" aria-label="<?php echo esc_attr__( 'Drag & Drop', 'elementor' ); ?>">
12 + <div class="elementor-repeater-row-handle-sortable">
13 13 <i class="eicon-ellipsis-v" aria-hidden="true"></i>
14 - </button>
14 + <span class="elementor-screen-only"><?php echo esc_html__( 'Drag & Drop', 'elementor' ); ?></span>
15 + </div>
15 16 <# } #>
16 - <button class="elementor-repeater-row-item-title"></button>
17 + <div class="elementor-repeater-row-item-title"></div>
17 18 <# if ( itemActions.duplicate ) { #>
18 - <button class="elementor-repeater-row-tool elementor-repeater-tool-duplicate" aria-label="<?php echo esc_attr__( 'Duplicate', 'elementor' ); ?>">
19 + <div class="elementor-repeater-row-tool elementor-repeater-tool-duplicate">
19 20 <i class="eicon-copy" aria-hidden="true"></i>
20 - </button>
21 + <span class="elementor-screen-only"><?php echo esc_html__( 'Duplicate', 'elementor' ); ?></span>
22 + </div>
21 23 <# }
22 24 if ( itemActions.remove ) { #>
23 - <button class="elementor-repeater-row-tool elementor-repeater-tool-remove" aria-label="<?php echo esc_attr__( 'Remove', 'elementor' ); ?>">
25 + <div class="elementor-repeater-row-tool elementor-repeater-tool-remove">
24 26 <i class="eicon-close" aria-hidden="true"></i>
25 - </button>
27 + <span class="elementor-screen-only"><?php echo esc_html__( 'Remove', 'elementor' ); ?></span>
28 + </div>
26 29 <# } #>
27 30 </div>
28 31 <div class="elementor-repeater-row-controls"></div>
29 32 </script>