| @@ -267,10 +267,10 @@ | ||
| 267 | 267 | [ |
| 268 | 268 | 'label' => esc_html__( 'Alignment', 'elementor' ), |
| 269 | 269 | 'type' => Controls_Manager::CHOOSE, |
| 270 | 270 | 'options' => [ |
| 271 | - 'start' => [ | |
| 272 | - 'title' => esc_html__( 'Start', 'elementor' ), | |
| 271 | + 'left' => [ | |
| 272 | + 'title' => esc_html__( 'Left', 'elementor' ), | |
| 273 | 273 | 'icon' => 'eicon-text-align-left', |
| 274 | 274 | ], |
| 275 | 275 | 'center' => [ |
| 276 | 276 | 'title' => esc_html__( 'Center', 'elementor' ), |
| @@ -275,10 +275,10 @@ | ||
| 275 | 275 | 'center' => [ |
| 276 | 276 | 'title' => esc_html__( 'Center', 'elementor' ), |
| 277 | 277 | 'icon' => 'eicon-text-align-center', |
| 278 | 278 | ], |
| 279 | - 'end' => [ | |
| 280 | - 'title' => esc_html__( 'End', 'elementor' ), | |
| 279 | + 'right' => [ | |
| 280 | + 'title' => esc_html__( 'Right', 'elementor' ), | |
| 281 | 281 | 'icon' => 'eicon-text-align-right', |
| 282 | 282 | ], |
| 283 | 283 | 'justify' => [ |
| 284 | 284 | 'title' => esc_html__( 'Justified', 'elementor' ), |
| @@ -284,13 +284,8 @@ | ||
| 284 | 284 | 'title' => esc_html__( 'Justified', 'elementor' ), |
| 285 | 285 | 'icon' => 'eicon-text-align-justify', |
| 286 | 286 | ], |
| 287 | 287 | ], |
| 288 | - 'classes' => 'elementor-control-start-end', | |
| 289 | - 'selectors_dictionary' => [ | |
| 290 | - 'left' => is_rtl() ? 'end' : 'start', | |
| 291 | - 'right' => is_rtl() ? 'start' : 'end', | |
| 292 | - ], | |
| 293 | 288 | 'selectors' => [ |
| 294 | 289 | '{{WRAPPER}} .elementor-image-box-wrapper' => 'text-align: {{VALUE}};', |
| 295 | 290 | ], |
| 296 | 291 | 'separator' => 'after', |
| @@ -868,9 +863,9 @@ | ||
| 868 | 863 | if ( titleText ) { |
| 869 | 864 | var titleSizeTag = elementor.helpers.validateHTMLTag( settings.title_size ); |
| 870 | 865 | |
| 871 | 866 | if ( settings.link?.url ) { |
| 872 | - title_html = '<a href="' + elementor.helpers.sanitizeUrl( settings.link?.url ) + '">' + titleText + '</a>'; | |
| 867 | + title_html = '<a href="' + elementor.helpers.sanitizeUrl( settings.link?.url ) + '">' + title_html + '</a>'; | |
| 873 | 868 | } |
| 874 | 869 | |
| 875 | 870 | view.addRenderAttribute( 'title_text', 'class', 'elementor-image-box-title' ); |
| 876 | 871 | |