/*! elementor - v3.25.0 - 29-10-2024 */ "use strict"; (self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["alert"],{ /***/ "../assets/dev/js/frontend/handlers/alert.js": /*!***************************************************!*\ !*** ../assets/dev/js/frontend/handlers/alert.js ***! \***************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; class Alert extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { dismissButton: '.elementor-alert-dismiss' } }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { $dismissButton: this.$element.find(selectors.dismissButton) }; } bindEvents() { this.elements.$dismissButton.on('click', this.onDismissButtonClick.bind(this)); } onDismissButtonClick() { this.$element.fadeOut(); } } exports["default"] = Alert; /***/ }) }]); //# sourceMappingURL=alert.c3c6a3fdf4745bd26b7f.bundle.js.map
.editor-styles-wrapper .wc-block-components-checkout-policies, .wc-block-components-checkout-policies { @include font-size(smaller); text-align: center; list-style: none outside; line-height: 1; margin: $gap-large 0; } .wc-block-components-checkout-policies__item { list-style: none outside; display: inline-block; padding: 0 0.25em; margin: 0; &:not(:first-child) { border-left: 1px solid $gray-400; } > a { color: inherit; padding: 0 0.25em; } } .editor-styles-wrapper { .wp-block h4.wc-block-components-checkout-step__title { @include font-size(regular); line-height: 24px; margin: 0 $gap-small 0 0; } } .wc-block-checkout__controls-text { color: #999; font-style: italic; } .components-base-control--nested { padding-left: 52px; margin-top: -12px; } .wc-block-checkout__page-notice { margin: 0; } .components-panel__body-title .components-button { opacity: 1; } .wp-block-woocommerce-checkout.is-editor-preview { max-height: 1000px; overflow: hidden; }

Tidak Ada Postingan Lagi.

Tidak ada lagi halaman untuk dimuat.

/** * This file contain the scripts related to responsive menu and elementor based features. * * @since 4.0.2 */ jQuery( document ).ready( function() { /** * Fires the event when change menu the responsive menu widget. * * @fires change */ jQuery(document).on( 'change', 'select[data-setting="rmp_menu"]', (e) => { let menu_id = jQuery( e.target ).val(); const link = jQuery( e.target ).parents('.elementor-control-content').find('.rmp-menu-edit-link'); var href = new URL( link.attr( 'href' ) ); href.searchParams.set( 'post', menu_id ); link.attr( 'href', href.toString() ); } ); } );