| @@ -1,19 +1,15 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | namespace Elementor; |
| 3 | 3 | |
| 4 | -use Elementor\Core\Utils\Promotions\Filtered_Promotions_Manager; | |
| 5 | - | |
| 6 | 4 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | 5 | exit; // Exit if accessed directly. |
| 8 | 6 | } |
| 9 | 7 | |
| 10 | 8 | $document = Plugin::$instance->documents->get( Plugin::$instance->editor->get_post_id() ); |
| 11 | - | |
| 12 | -$show_editing_panel_sticky_promotion = ! Utils::has_pro() && Plugin::$instance->experiments->is_feature_active( 'e_panel_promotions' ); | |
| 13 | -$editing_panel_sticky_promotion = $show_editing_panel_sticky_promotion ? Filtered_Promotions_Manager::get_editor_panel_sticky_promotion() : []; | |
| 14 | 9 | ?> |
| 15 | 10 | <script type="text/template" id="tmpl-elementor-panel"> |
| 11 | + <div id="elementor-mode-switcher"></div> | |
| 16 | 12 | <div id="elementor-panel-state-loading"> |
| 17 | 13 | <i class="eicon-loading eicon-animation-spin"></i> |
| 18 | 14 | </div> |
| 19 | 15 | <header id="elementor-panel-header-wrapper"></header> |
| @@ -20,9 +16,8 @@ | ||
| 20 | 16 | <main id="elementor-panel-content-wrapper"></main> |
| 21 | 17 | <footer id="elementor-panel-footer"> |
| 22 | 18 | <div class="elementor-panel-container"></div> |
| 23 | 19 | </footer> |
| 24 | - <div id="elementor-mode-switcher"></div> | |
| 25 | 20 | </script> |
| 26 | 21 | |
| 27 | 22 | <script type="text/template" id="tmpl-elementor-panel-menu"> |
| 28 | 23 | <div id="elementor-panel-page-menu-content"></div> |
| @@ -29,9 +24,9 @@ | ||
| 29 | 24 | <# if ( elementor.config.document.panel.needHelpUrl ) { #> |
| 30 | 25 | <div id="elementor-panel__editor__help"> |
| 31 | 26 | <a id="elementor-panel__editor__help__link" href="{{{ elementor.config.document.panel.needHelpUrl }}}" target="_blank"> |
| 32 | 27 | <?php echo esc_html__( 'Need Help', 'elementor' ); ?> |
| 33 | - <i class="eicon-help-o" aria-hidden="true"></i> | |
| 28 | + <i class="eicon-help-o"></i> | |
| 34 | 29 | </a> |
| 35 | 30 | </div> |
| 36 | 31 | <# } #> |
| 37 | 32 | </script> |
| @@ -56,10 +51,10 @@ | ||
| 56 | 51 | |
| 57 | 52 | <script type="text/template" id="tmpl-elementor-exit-dialog"> |
| 58 | 53 | <div><?php echo esc_html__( 'Now you can choose where you want to go on the site from the following options', 'elementor' ); ?></div> |
| 59 | 54 | <div> |
| 60 | - <?php printf( | |
| 61 | - /* translators: 1: Opening HTML <a> tag, 2: closing HTML <a> tag. */ | |
| 55 | + <!-- translators: 1: Opening HTML <a> tag, 2: closing HTML <a> tag. --> | |
| 56 | + <?php echo sprintf( | |
| 62 | 57 | esc_html__( 'Any time you can change the settings in %1$sUser Preferences%2$s', 'elementor' ), |
| 63 | 58 | '<a id="user-preferences">', |
| 64 | 59 | '</a>' |
| 65 | 60 | ); ?> |
| @@ -67,46 +62,46 @@ | ||
| 67 | 62 | <select id="exit-to-preferences"></select> <!-- Adding options by JS --> |
| 68 | 63 | </script> |
| 69 | 64 | |
| 70 | 65 | <script type="text/template" id="tmpl-elementor-panel-header"> |
| 71 | - <button id="elementor-panel-header-menu-button" class="elementor-header-button" aria-label="<?php echo esc_attr__( 'Menu', 'elementor' ); ?>"> | |
| 72 | - <i class="elementor-icon eicon-menu-bar tooltip-target" aria-hidden="true" data-tooltip="<?php echo esc_attr__( 'Menu', 'elementor' ); ?>"></i> | |
| 73 | - </button> | |
| 74 | - <h2 id="elementor-panel-header-title"></h2> | |
| 75 | - <# const extraClass = $e.components.get( 'document/elements' ).utils.allowAddingWidgets() ? '' : 'elementor-visibility-hidden'; #> | |
| 76 | - <button id="elementor-panel-header-add-button" class="elementor-header-button {{{ extraClass }}}" aria-label="<?php echo esc_attr__( 'Widgets Panel', 'elementor' ); ?>"> | |
| 77 | - <i class="elementor-icon eicon-apps tooltip-target" aria-hidden="true" data-tooltip="<?php echo esc_attr__( 'Widgets Panel', 'elementor' ); ?>"></i> | |
| 78 | - </button> | |
| 66 | + <div id="elementor-panel-header-menu-button" class="elementor-header-button"> | |
| 67 | + <i class="elementor-icon eicon-menu-bar tooltip-target" aria-hidden="true" data-tooltip="<?php esc_attr_e( 'Menu', 'elementor' ); ?>"></i> | |
| 68 | + <span class="elementor-screen-only"><?php echo esc_html__( 'Menu', 'elementor' ); ?></span> | |
| 69 | + </div> | |
| 70 | + <div id="elementor-panel-header-title"></div> | |
| 71 | + <div id="elementor-panel-header-add-button" class="elementor-header-button"> | |
| 72 | + <i class="elementor-icon eicon-apps tooltip-target" aria-hidden="true" data-tooltip="<?php esc_attr_e( 'Widgets Panel', 'elementor' ); ?>"></i> | |
| 73 | + <span class="elementor-screen-only"><?php echo esc_html__( 'Widgets Panel', 'elementor' ); ?></span> | |
| 74 | + </div> | |
| 79 | 75 | </script> |
| 80 | 76 | |
| 81 | 77 | <script type="text/template" id="tmpl-elementor-panel-footer-content"> |
| 82 | - <button id="elementor-panel-footer-settings" class="elementor-panel-footer-tool elementor-leave-open tooltip-target" data-tooltip="<?php echo esc_attr__( 'Settings', 'elementor' ); ?>" aria-label="<?php | |
| 83 | - printf( | |
| 84 | - /* translators: %s: Document title. */ | |
| 85 | - esc_attr__( '%s Settings', 'elementor' ), | |
| 86 | - esc_attr( $document::get_title() ) | |
| 87 | - ); ?>"> | |
| 78 | + <div id="elementor-panel-footer-settings" class="elementor-panel-footer-tool elementor-leave-open tooltip-target" data-tooltip="<?php esc_attr_e( 'Settings', 'elementor' ); ?>"> | |
| 88 | 79 | <i class="eicon-cog" aria-hidden="true"></i> |
| 89 | - </button> | |
| 90 | - <# if ( $e.components.get( 'document/elements' ).utils.showNavigator() ) { #> | |
| 91 | - <button id="elementor-panel-footer-navigator" class="elementor-panel-footer-tool tooltip-target" data-tooltip="<?php echo esc_attr__( 'Structure', 'elementor' ); ?>" aria-label="<?php echo esc_attr__( 'Structure', 'elementor' ); ?>"> | |
| 80 | + <span class="elementor-screen-only"><?php printf( esc_html__( '%s Settings', 'elementor' ), esc_html( $document::get_title() ) ); ?></span> | |
| 81 | + </div> | |
| 82 | + <div id="elementor-panel-footer-navigator" class="elementor-panel-footer-tool tooltip-target" data-tooltip="<?php esc_attr_e( 'Navigator', 'elementor' ); ?>"> | |
| 92 | 83 | <i class="eicon-navigator" aria-hidden="true"></i> |
| 93 | - </button> | |
| 94 | - <# } #> | |
| 95 | - <button id="elementor-panel-footer-history" class="elementor-panel-footer-tool elementor-leave-open tooltip-target" data-tooltip="<?php echo esc_attr__( 'History', 'elementor' ); ?>" aria-label="<?php echo esc_attr__( 'History', 'elementor' ); ?>"> | |
| 84 | + <span class="elementor-screen-only"><?php echo esc_html__( 'Navigator', 'elementor' ); ?></span> | |
| 85 | + </div> | |
| 86 | + <div id="elementor-panel-footer-history" class="elementor-panel-footer-tool elementor-leave-open tooltip-target" data-tooltip="<?php esc_attr_e( 'History', 'elementor' ); ?>"> | |
| 96 | 87 | <i class="eicon-history" aria-hidden="true"></i> |
| 97 | - </button> | |
| 98 | - <button id="elementor-panel-footer-responsive" class="elementor-panel-footer-tool elementor-toggle-state tooltip-target" data-tooltip="<?php echo esc_attr__( 'Responsive Mode', 'elementor' ); ?>" aria-label="<?php echo esc_attr__( 'Responsive Mode', 'elementor' ); ?>"> | |
| 99 | - <i class="eicon-device-responsive" aria-hidden="true"></i> | |
| 100 | - </button> | |
| 101 | - <button id="elementor-panel-footer-saver-preview" class="elementor-panel-footer-tool tooltip-target" data-tooltip="<?php echo esc_attr__( 'Preview Changes', 'elementor' ); ?>" aria-label="<?php echo esc_attr__( 'Preview Changes', 'elementor' ); ?>"> | |
| 88 | + <span class="elementor-screen-only"><?php echo esc_html__( 'History', 'elementor' ); ?></span> | |
| 89 | + </div> | |
| 90 | + <div id="elementor-panel-footer-responsive" class="elementor-panel-footer-tool elementor-toggle-state"> | |
| 91 | + <i class="eicon-device-responsive tooltip-target" aria-hidden="true" data-tooltip="<?php esc_attr_e( 'Responsive Mode', 'elementor' ); ?>"></i> | |
| 92 | + <span class="elementor-screen-only"> | |
| 93 | + <?php echo esc_html__( 'Responsive Mode', 'elementor' ); ?> | |
| 94 | + </span> | |
| 95 | + </div> | |
| 96 | + <div id="elementor-panel-footer-saver-preview" class="elementor-panel-footer-tool tooltip-target" data-tooltip="<?php esc_attr_e( 'Preview Changes', 'elementor' ); ?>"> | |
| 102 | 97 | <span id="elementor-panel-footer-saver-preview-label"> |
| 103 | 98 | <i class="eicon-preview-medium" aria-hidden="true"></i> |
| 99 | + <span class="elementor-screen-only"><?php echo esc_html__( 'Preview Changes', 'elementor' ); ?></span> | |
| 104 | 100 | </span> |
| 105 | - </button> | |
| 101 | + </div> | |
| 106 | 102 | <div id="elementor-panel-footer-saver-publish" class="elementor-panel-footer-tool"> |
| 107 | - <# const publishTitle = $e.components.get( 'document/elements' ).utils.getTitleForPublishButton(); #> | |
| 108 | - <button id="elementor-panel-saver-button-publish" class="elementor-button e-primary elementor-disabled" title="{{{ publishTitle }}}"> | |
| 103 | + <button id="elementor-panel-saver-button-publish" class="elementor-button elementor-button-success elementor-disabled"> | |
| 109 | 104 | <span class="elementor-state-icon"> |
| 110 | 105 | <i class="eicon-loading eicon-animation-spin" aria-hidden="true"></i> |
| 111 | 106 | </span> |
| 112 | 107 | <span id="elementor-panel-saver-button-publish-label"> |
| @@ -114,10 +109,11 @@ | ||
| 114 | 109 | </span> |
| 115 | 110 | </button> |
| 116 | 111 | </div> |
| 117 | 112 | <div id="elementor-panel-footer-saver-options" class="elementor-panel-footer-tool elementor-toggle-state"> |
| 118 | - <button id="elementor-panel-saver-button-save-options" class="elementor-button e-primary tooltip-target elementor-disabled" data-tooltip="<?php echo esc_attr__( 'Save Options', 'elementor' ); ?>" data-tooltip-offset="7" aria-label="<?php echo esc_attr__( 'Save Options', 'elementor' ); ?>"> | |
| 119 | - <i class="eicon-chevron-right" aria-hidden="true"></i> | |
| 113 | + <button id="elementor-panel-saver-button-save-options" class="elementor-button elementor-button-success tooltip-target elementor-disabled" data-tooltip="<?php esc_attr_e( 'Save Options', 'elementor' ); ?>" data-tooltip-offset="7"> | |
| 114 | + <i class="eicon-caret-up" aria-hidden="true"></i> | |
| 115 | + <span class="elementor-screen-only"><?php echo esc_html__( 'Save Options', 'elementor' ); ?></span> | |
| 120 | 116 | </button> |
| 121 | 117 | <div class="elementor-panel-footer-sub-menu-wrapper"> |
| 122 | 118 | <p class="elementor-last-edited-wrapper"> |
| 123 | 119 | <span class="elementor-state-icon"> |
| @@ -134,14 +130,8 @@ | ||
| 134 | 130 | <div id="elementor-panel-footer-sub-menu-item-save-template" class="elementor-panel-footer-sub-menu-item"> |
| 135 | 131 | <i class="elementor-icon eicon-folder" aria-hidden="true"></i> |
| 136 | 132 | <span class="elementor-title"><?php echo esc_html__( 'Save as Template', 'elementor' ); ?></span> |
| 137 | 133 | </div> |
| 138 | - <# if ( $e.components.get( 'document/elements' ).utils.showCopyAndShareButton() ) { #> | |
| 139 | - <div id="elementor-panel-footer-sub-menu-item-copy-share-link" class="elementor-panel-footer-sub-menu-item"> | |
| 140 | - <i class="elementor-icon eicon-link" aria-hidden="true"></i> | |
| 141 | - <span class="elementor-title"><?php echo esc_html__( 'Copy and Share Link', 'elementor' ); ?></span> | |
| 142 | - </div> | |
| 143 | - <# } #> | |
| 144 | 134 | </div> |
| 145 | 135 | </div> |
| 146 | 136 | </div> |
| 147 | 137 | </script> |
| @@ -146,13 +136,13 @@ | ||
| 146 | 136 | </div> |
| 147 | 137 | </script> |
| 148 | 138 | |
| 149 | 139 | <script type="text/template" id="tmpl-elementor-mode-switcher-content"> |
| 150 | - <label for="elementor-mode-switcher-preview-input" id="elementor-mode-switcher-preview" title="<?php echo esc_attr__( 'Hide Panel', 'elementor' ); ?>"> | |
| 151 | - <i class="eicon eicon-angle-left" aria-hidden="true" tabindex="0"></i> | |
| 140 | + <input id="elementor-mode-switcher-preview-input" type="checkbox"> | |
| 141 | + <label for="elementor-mode-switcher-preview-input" id="elementor-mode-switcher-preview"> | |
| 142 | + <i class="eicon" aria-hidden="true" title="<?php esc_attr_e( 'Hide Panel', 'elementor' ); ?>"></i> | |
| 152 | 143 | <span class="elementor-screen-only"><?php echo esc_html__( 'Hide Panel', 'elementor' ); ?></span> |
| 153 | 144 | </label> |
| 154 | - <input id="elementor-mode-switcher-preview-input" type="checkbox"> | |
| 155 | 145 | </script> |
| 156 | 146 | |
| 157 | 147 | <script type="text/template" id="tmpl-editor-content"> |
| 158 | 148 | <div class="elementor-panel-navigation"> |
| @@ -161,11 +151,11 @@ | ||
| 161 | 151 | return; |
| 162 | 152 | } |
| 163 | 153 | $e.bc.ensureTab( 'panel/editor', tabSlug ); |
| 164 | 154 | #> |
| 165 | - <button class="elementor-component-tab elementor-panel-navigation-tab elementor-tab-control-{{ tabSlug }}" data-tab="{{ tabSlug }}"> | |
| 166 | - <span>{{{ tabTitle }}}</span> | |
| 167 | - </button> | |
| 155 | + <div class="elementor-component-tab elementor-panel-navigation-tab elementor-tab-control-{{ tabSlug }}" data-tab="{{ tabSlug }}"> | |
| 156 | + <a href="#">{{{ tabTitle }}}</a> | |
| 157 | + </div> | |
| 168 | 158 | <# } ); #> |
| 169 | 159 | </div> |
| 170 | 160 | <# if ( elementData.reload_preview ) { #> |
| 171 | 161 | <div class="elementor-update-preview"> |
| @@ -170,9 +160,9 @@ | ||
| 170 | 160 | <# if ( elementData.reload_preview ) { #> |
| 171 | 161 | <div class="elementor-update-preview"> |
| 172 | 162 | <div class="elementor-update-preview-title"><?php echo esc_html__( 'Update changes to page', 'elementor' ); ?></div> |
| 173 | 163 | <div class="elementor-update-preview-button-wrapper"> |
| 174 | - <button class="elementor-update-preview-button elementor-button"><?php echo esc_html__( 'Apply', 'elementor' ); ?></button> | |
| 164 | + <button class="elementor-update-preview-button elementor-button elementor-button-success"><?php echo esc_html__( 'Apply', 'elementor' ); ?></button> | |
| 175 | 165 | </div> |
| 176 | 166 | </div> |
| 177 | 167 | <# } #> |
| 178 | 168 | <div id="elementor-controls"></div> |
| @@ -179,41 +169,16 @@ | ||
| 179 | 169 | <# if ( elementData.help_url ) { #> |
| 180 | 170 | <div id="elementor-panel__editor__help"> |
| 181 | 171 | <a id="elementor-panel__editor__help__link" href="{{ elementData.help_url }}" target="_blank"> |
| 182 | 172 | <?php echo esc_html__( 'Need Help', 'elementor' ); ?> |
| 183 | - <i class="eicon-help-o" aria-hidden="true"></i> | |
| 173 | + <i class="eicon-help-o"></i> | |
| 184 | 174 | </a> |
| 185 | 175 | </div> |
| 186 | 176 | <# } #> |
| 187 | - | |
| 188 | - <# if ( elementData.upsale_data && elementData.upsale_data.condition ) { #> | |
| 189 | - <div class="elementor-nerd-box elementor-nerd-box--upsale"> | |
| 190 | - <# if ( elementData.upsale_data.image ) { #> | |
| 191 | - <img class="elementor-nerd-box-icon" src="{{ elementData.upsale_data.image }}" loading="lazy" alt="{{ elementData.upsale_data.image_alt }}" /> | |
| 192 | - <# } #> | |
| 193 | - <# if ( elementData.upsale_data.title ) { #> | |
| 194 | - <div class="elementor-nerd-box-title">{{{ elementData.upsale_data.title }}}</div> | |
| 195 | - <# } #> | |
| 196 | - <# if ( elementData.upsale_data.description ) { #> | |
| 197 | - <div class="elementor-nerd-box-message">{{{ elementData.upsale_data.description }}}</div> | |
| 198 | - <# } #> | |
| 199 | - <# if ( elementData.upsale_data.upgrade_url && elementData.upsale_data.upgrade_text ) { #> | |
| 200 | - <a class="elementor-button go-pro" href="{{ elementData.upsale_data.upgrade_url }}" target="_blank">{{{ elementData.upsale_data.upgrade_text }}}</a> | |
| 201 | - <# } #> | |
| 202 | - </div> | |
| 203 | - <# } #> | |
| 204 | - <?php if ( $show_editing_panel_sticky_promotion ) : ?> | |
| 205 | - <div class="elementor-panel-editor-sticky-promotion"> | |
| 206 | - <div class="elementor-get-pro-sticky-message"> | |
| 207 | - <?php echo esc_html( $editing_panel_sticky_promotion['message'] ); ?> | |
| 208 | - <a target="_blank" href="<?php echo esc_url( $editing_panel_sticky_promotion['url'] ); ?>"><?php echo esc_html( $editing_panel_sticky_promotion['button_text'] ); ?></a> | |
| 209 | - </div> | |
| 210 | - </div> | |
| 211 | - <?php endif; ?> | |
| 212 | 177 | </script> |
| 213 | 178 | |
| 214 | 179 | <script type="text/template" id="tmpl-elementor-panel-schemes-disabled"> |
| 215 | - <img class="elementor-nerd-box-icon" src="<?php Utils::print_unescaped_internal_string( ELEMENTOR_ASSETS_URL . 'images/information.svg' ); ?>" loading="lazy" alt="<?php echo esc_attr__( 'Elementor', 'elementor' ); ?>" /> | |
| 180 | + <img class="elementor-nerd-box-icon" src="<?php Utils::print_unescaped_internal_string( ELEMENTOR_ASSETS_URL . 'images/information.svg' ); ?>" /> | |
| 216 | 181 | <div class="elementor-nerd-box-title">{{{ '<?php echo esc_html__( '%s are disabled', 'elementor' ); // phpcs:ignore WordPress.WP.I18n.MissingTranslatorsComment ?>'.replace( '%s', disabledTitle ) }}}</div> |
| 217 | 182 | <div class="elementor-nerd-box-message"><?php |
| 218 | 183 | printf( |
| 219 | 184 | /* translators: %1$s Link open tag, %2$s: Link close tag. */ |
| @@ -231,9 +196,9 @@ | ||
| 231 | 196 | |
| 232 | 197 | <script type="text/template" id="tmpl-elementor-panel-scheme-typography-item"> |
| 233 | 198 | <div class="elementor-panel-heading"> |
| 234 | 199 | <div class="elementor-panel-heading-toggle"> |
| 235 | - <i class="eicon-caret-right" aria-hidden="true"></i> | |
| 200 | + <i class="eicon" aria-hidden="true"></i> | |
| 236 | 201 | </div> |
| 237 | 202 | <div class="elementor-panel-heading-title">{{{ title }}}</div> |
| 238 | 203 | </div> |
| 239 | 204 | <div class="elementor-panel-scheme-typography-items elementor-panel-box-content"> |
| @@ -289,11 +254,11 @@ | ||
| 289 | 254 | // The 'Desktop' label is made accessible via the global config because it needs to be translated. |
| 290 | 255 | var deviceLabel = 'desktop' === device ? '<?php esc_html_e( 'Desktop', 'elementor' ); ?>' : activeBreakpoints[ device ].label, |
| 291 | 256 | tooltipDir = "<?php echo is_rtl() ? 'e' : 'w'; ?>"; |
| 292 | 257 | #> |
| 293 | - <button class="elementor-responsive-switcher tooltip-target elementor-responsive-switcher-{{ device }}" data-device="{{ device }}" data-tooltip="{{ deviceLabel }}" data-tooltip-pos="{{ tooltipDir }}" aria-label="{{ deviceLabel }}"> | |
| 294 | - <i class="{{ elementor.config.responsive.icons_map[ device ] }}" aria-hidden="true"></i> | |
| 295 | - </button> | |
| 258 | + <a class="elementor-responsive-switcher tooltip-target elementor-responsive-switcher-{{ device }}" data-device="{{ device }}" data-tooltip="{{ deviceLabel }}" data-tooltip-pos="{{ tooltipDir }}"> | |
| 259 | + <i class="{{ elementor.config.responsive.icons_map[ device ] }}"></i> | |
| 260 | + </a> | |
| 296 | 261 | <# } ); |
| 297 | 262 | #> |
| 298 | 263 | </div> |
| 299 | 264 | </div> |
| @@ -299,17 +264,16 @@ | ||
| 299 | 264 | </div> |
| 300 | 265 | </script> |
| 301 | 266 | |
| 302 | 267 | <script type="text/template" id="tmpl-elementor-control-dynamic-switcher"> |
| 303 | - <button class="elementor-control-dynamic-switcher elementor-control-unit-1" data-tooltip="<?php echo esc_attr__( 'Dynamic Tags', 'elementor' ); ?>" aria-label="<?php echo esc_attr__( 'Dynamic Tags', 'elementor' ); ?>"> | |
| 304 | - <i class="eicon-database" aria-hidden="true"></i> | |
| 305 | - </button> | |
| 268 | + <div class="elementor-control-dynamic-switcher elementor-control-unit-1" data-tooltip="<?php echo esc_html__( 'Dynamic Tags', 'elementor' ); ?>"> | |
| 269 | + <i class="eicon-database"></i> | |
| 270 | + </div> | |
| 306 | 271 | </script> |
| 307 | - | |
| 308 | 272 | <script type="text/template" id="tmpl-elementor-control-element-color-picker"> |
| 309 | - <button class="elementor-control-element-color-picker e-control-tool" data-tooltip="<?php echo esc_attr__( 'Color Sampler', 'elementor' ); ?>" aria-label="<?php echo esc_attr__( 'Color Sampler', 'elementor' ); ?>"> | |
| 310 | - <i class="eicon-eyedropper" aria-hidden="true"></i> | |
| 311 | - </button> | |
| 273 | + <div class="elementor-control-element-color-picker e-control-tool" data-tooltip="<?php echo esc_attr__( 'Color Sampler', 'elementor' ); ?>"> | |
| 274 | + <i class="eicon-eyedropper"></i> | |
| 275 | + </div> | |
| 312 | 276 | </script> |
| 313 | 277 | |
| 314 | 278 | <script type="text/template" id="tmpl-elementor-control-dynamic-cover"> |
| 315 | 279 | <div class="elementor-dynamic-cover__settings"> |