first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<div class="jet-editor-frame">
<div class="jet-close-frame">
<span class="back-arrow-top"></span>
<span class="back-arrow-bottom"></span>
</div>
<iframe src="{{{ data.url }}}" width="100%" class="jet-edit-frame"></iframe>
<div id="elementor-loading" style="">
<div class="elementor-loader-wrapper">
<div class="elementor-loader">
<div class="elementor-loader-box"></div>
<div class="elementor-loader-box"></div>
<div class="elementor-loader-box"></div>
<div class="elementor-loader-box"></div>
</div>
<div class="elementor-loading-title">Loading</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,4 @@
<span class="jet-menu-trigger" data-item-id="{{{ data.id }}}" data-item-depth="{{{ data.depth }}}">
<span class="dashicons dashicons-admin-generic"></span>
{{{ data.label }}}
</span>

View File

@@ -0,0 +1,20 @@
<div class="jet-settings-tabs">
<div class="jet-settings-tabs__nav">
<# _.each( data.tabs, function( tab, key ) { #>
<# if ( ! ( tab.depthFrom <= data.depth && data.depth < tab.depthTo ) ) {
return;
} #>
<div class="jet-settings-tabs__nav-item" data-tab="{{{ key }}}" data-action="{{{ tab.action }}}" data-template="{{{ tab.template }}}">
{{{ tab.label }}}
</div>
<# } ); #>
</div>
<div class="jet-settings-tabs__content">
<# _.each( data.tabs, function( tab, key ) { #>
<# if ( ! ( tab.depthFrom <= data.depth && data.depth < tab.depthTo ) ) {
return;
} #>
<div class="jet-settings-tabs__content-item jet-hidden-tab" data-tab="{{{ key }}}" data-action="{{{ tab.action }}}" data-template="{{{ tab.template }}}" data-loaded="0"><div class="tab-loader"></div></div>
<# } ); #>
</div>
</div>

View File

@@ -0,0 +1,17 @@
<div class="jet-menu-popup jet-hidden" id="jet-popup-{{{ data.id }}}" data-id="{{{ data.id }}}">
<div class="jet-menu-popup__overlay"></div>
<div class="jet-menu-popup__content">
<div class="jet-menu-popup__inner">{{{ data.content }}}</div>
<div class="jet-menu-popup__actions">
<span class="jet-menu-popup__close"><span class="dashicons dashicons-no"></span></span>
<div class="jet-menu-popup__actions-save">
<span class='spinner'></span>
<span class="dashicons dashicons-yes hidden"></span>
<button class="cherry5-ui-button cherry5-ui-button-success-style jet-save-menu">
{{{ data.saveLabel }}}
</button>
</div>
</div>
<div class="jet-menu-editor-wrap"></div>
</div>
</div>