Sorry, but nothing was found. Please try a search with different keywords.

#fs_affiliation_content_wrapper #messages{margin-top:25px}#fs_affiliation_content_wrapper h3{font-size:24px;margin-left:0;padding:0}#fs_affiliation_content_wrapper ul li{box-sizing:border-box;list-style-type:none}#fs_affiliation_content_wrapper ul li:before{content:"✓";font-weight:700;margin-right:10px}#fs_affiliation_content_wrapper label,#fs_affiliation_content_wrapper li,#fs_affiliation_content_wrapper p:not(.description){font-size:16px!important;line-height:26px!important}#fs_affiliation_content_wrapper .button{font-size:16px;height:40px;line-height:35px;margin-bottom:7px;margin-top:20px}#fs_affiliation_content_wrapper .button#cancel_button{margin-right:5px}#fs_affiliation_content_wrapper form .input-container{margin-bottom:15px}#fs_affiliation_content_wrapper form .input-container .input-label{display:block;font-weight:700;width:100%}#fs_affiliation_content_wrapper form .input-container.input-container-text input,#fs_affiliation_content_wrapper form .input-container.input-container-text label,#fs_affiliation_content_wrapper form .input-container.input-container-text textarea{display:block}#fs_affiliation_content_wrapper form .input-container #add_domain,#fs_affiliation_content_wrapper form .input-container .remove-domain{display:inline-block;margin-top:3px;text-decoration:none}#fs_affiliation_content_wrapper form .input-container #add_domain:focus,#fs_affiliation_content_wrapper form .input-container .remove-domain:focus{box-shadow:none}#fs_affiliation_content_wrapper form .input-container #add_domain.disabled,#fs_affiliation_content_wrapper form .input-container .remove-domain.disabled{color:#aaa;cursor:default}#fs_affiliation_content_wrapper form #extra_domains_container .description{margin-top:0;position:relative;top:-4px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container{margin-bottom:15px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container .domain{display:inline-block;margin-right:5px}#fs_affiliation_content_wrapper form #extra_domains_container .extra-domain-input-container .domain:last-of-type{margin-bottom:0};( function( $, document ) { var VariationSwatches = function( $form ) { var self = this; self.$form = $form; // Initial states. $form.off( '.teconce-variation-swatches' ); // Add a new CSS to the form. if ( $form.find( '.teconce-variation-swatches__wrapper' ).length ) { $form.addClass( 'swatches-support' ); } // Events. $form.on( 'click.teconce-variation-swatches', '.teconce-variation-swatches__item', { variationSwatches: self }, self.onSelect ); $form.on( 'keydown.teconce-variation-swatches', '.teconce-variation-swatches__item', { variationSwatches: self }, self.onKeyPress ); $form.on( 'click.teconce-variation-swatches', '.reset_variations', { variationSwatches: self }, self.onReset ); $form.on( 'woocommerce_update_variation_values', { variationSwatches: self }, self.onUpdateAttributes ); if ( teconce_variation_swatches_params.show_selected_label ) { $form.on( 'change', '.value select', { variationSwatches: self }, self.updateLabel ); $form.on( 'wc_variation_form', { variationSwatches: self }, self.updateAllLabels ); } $( document.body ).trigger( 'teconce_variation_swatches', self ); }; /** * Toggle swatches and update the selected value */ VariationSwatches.prototype.onSelect = function( event ) { event.preventDefault(); var $el = $( this ), $select = $el.closest( '.teconce-variation-swatches' ).find( 'select' ), value = $el.data( 'value' ); if ( $el.hasClass( 'disabled' ) || $el.data( 'disabled' ) ) { return; } // Compatible with old version of WooCommerce. $select.trigger( 'focusin' ); if ( $el.hasClass( 'selected' ) ) { $el.removeClass( 'selected' ); $select.val( '' ); } else { $el.addClass( 'selected' ).siblings( '.selected' ).removeClass( 'selected' ); $select.val( value ); } $select.trigger( 'change' ); }; /** * Keyboard toggle select value */ VariationSwatches.prototype.onKeyPress = function( event ) { if ( event.keyCode && 32 === event.keyCode || event.key && ' ' === event.key || event.keyCode && 13 === event.keyCode || event.key && 'enter' === event.key.toLowerCase() ) { event.preventDefault(); $( this ).trigger( 'click.teconce-variation-swatches' ); } } /** * Reset swatches states */ VariationSwatches.prototype.onReset = function( event ) { event.preventDefault(); event.data.variationSwatches.$form.find( '.teconce-variation-swatches__item.selected' ).removeClass( 'selected' ); event.data.variationSwatches.$form.find( '.teconce-variation-swatches__item.disabled' ).removeClass( 'disabled' ).data( 'disabled', false ); }; /** * Check the state swatches then disable invalid ones */ VariationSwatches.prototype.onUpdateAttributes = function( event ) { setTimeout( function() { event.data.variationSwatches.$form.find( '.teconce-variation-swatches' ).each( function( index, row ) { var $swatches = $( row ), $options = $swatches.find( 'select' ).find( 'option' ), $selected = $options.filter( ':selected' ), values = []; $options.each( function( index, option ) { if ( option.value !== '' ) { values.push( option.value ); } } ); $swatches.find( '.teconce-variation-swatches__item' ).each( function( index, item ) { var $item = $( item ), value = $item.attr( 'data-value' ); if ( values.indexOf( value ) > -1 ) { $item.removeClass( 'disabled' ).data( 'disabled', false ); } else { $item.addClass( 'disabled' ).data( 'disabled', true ); if ( $selected.length && value === $selected.val() ) { $item.removeClass( 'selected' ); } } } ); } ); }, 100 ); }; /** * Update the label of selected attribute */ VariationSwatches.prototype.updateLabel = function( event ) { event.data.variationSwatches.appendSelectedLabel( this ); } /** * Update labels of all attributes on form init */ VariationSwatches.prototype.updateAllLabels = function( event ) { event.data.variationSwatches.$form.find( '.value select' ).each( function() { event.data.variationSwatches.appendSelectedLabel( this ); } ); } /** * Append the selected attribute's label to the variation's label * * @param {object} select The select tag */ VariationSwatches.prototype.appendSelectedLabel = function( select ) { var $label = $( select ).closest( '.value' ).siblings( '.label' ).find( 'label' ), $holder = $label.find( '.teconce-variation-swatches__selected-label' ); if ( ! $holder.length ) { $holder = $( '' ); $label.append( $holder ) } if ( select.value ) { $holder.text( select.options[ select.selectedIndex ].text ).show(); } else { $holder.text( '' ).hide(); } } /** * Function to call teconce_variation_swatches on jquery selector. */ $.fn.teconce_variation_swatches = function() { new VariationSwatches( this ); return this; }; /** * Function to init variation swatches on all variation forms */ function init_variation_swatches() { $( '.variations_form:not(.swatches-support)' ).each( function() { $( this ).teconce_variation_swatches(); } ); } $( function() { init_variation_swatches(); // Support third-party plugins. $( document.body ).on( 'init_variation_swatches', function() { init_variation_swatches(); } ); $( document.body ).trigger( 'teconce_variation_swatches_initialized' ); } ); } )( jQuery, document ) /*! elementor-pro - v3.21.0 - 30-04-2024 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["mega-menu-editor"],{ /***/ "../modules/mega-menu/assets/js/editor/mega-menu.js": /*!**********************************************************!*\ !*** ../modules/mega-menu/assets/js/editor/mega-menu.js ***! \**********************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = exports.MegaMenu = void 0; var _view = _interopRequireDefault(__webpack_require__(/*! ./views/view */ "../modules/mega-menu/assets/js/editor/views/view.js")); class MegaMenu extends elementor.modules.elements.types.NestedElementBase { getType() { return 'mega-menu'; } getView() { return _view.default; } } exports.MegaMenu = MegaMenu; var _default = exports["default"] = MegaMenu; /***/ }), /***/ "../modules/mega-menu/assets/js/editor/module.js": /*!*******************************************************!*\ !*** ../modules/mega-menu/assets/js/editor/module.js ***! \*******************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _megaMenu = _interopRequireDefault(__webpack_require__(/*! ./mega-menu */ "../modules/mega-menu/assets/js/editor/mega-menu.js")); var _urlHelper = _interopRequireDefault(__webpack_require__(/*! ./utils/url-helper */ "../modules/mega-menu/assets/js/editor/utils/url-helper.js")); class Module extends elementorModules.editor.utils.Module { constructor() { super(); elementor.elementsManager.registerElementType(new _megaMenu.default()); this.urlHelper = new _urlHelper.default(); } getCurrentMenuItemClass(menuLinkUrl, permalinkUrl) { menuLinkUrl = menuLinkUrl?.trim(menuLinkUrl); if (!menuLinkUrl || !permalinkUrl) { return ''; } const permalinkArray = this.urlHelper.parse_url(permalinkUrl), menuItemUrlArray = this.urlHelper.parse_url(menuLinkUrl), hasEqualUrls = _.isEqual(permalinkArray, menuItemUrlArray); return hasEqualUrls ? 'e-current' : ''; } onElementorFrontendInit() { elementor.on('document:loaded', this.closeAllMegaMenus.bind(this)); } closeAllMegaMenus() { const megaMenus = elementor.$previewContents[0].querySelectorAll('.elementor-widget-n-menu'); if (megaMenus.length) { Array.from(megaMenus).forEach(node => { const id = node.getAttribute('data-id'); window.jQuery(window).trigger('elementor/mega-menu/dropdown-toggle-by-keyboard', { widgetId: id, show: false }); }); } } } exports["default"] = Module; /***/ }), /***/ "../modules/mega-menu/assets/js/editor/utils/url-helper.js": /*!*****************************************************************!*\ !*** ../modules/mega-menu/assets/js/editor/utils/url-helper.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = exports.UrlHelper = void 0; class UrlHelper { parse_url(url) { try { const { hostname, pathname, search } = new URL(url), host = hostname.replace('www.', ''), trailingSlashesRegex = /^\/+|\/+$/g, path = pathname.replace(trailingSlashesRegex, ''); return [host, path, search]; } catch (err) { return false; } } } exports.UrlHelper = UrlHelper; var _default = exports["default"] = UrlHelper; /***/ }), /***/ "../modules/mega-menu/assets/js/editor/views/view.js": /*!***********************************************************!*\ !*** ../modules/mega-menu/assets/js/editor/views/view.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; class View extends $e.components.get('nested-elements').exports.NestedView { filter(child, index) { child.attributes.dataIndex = index + 1; child.attributes.widgetId = child.id; return true; } onAddChild(childView) { const widgetNumber = childView._parent.$el.find('.e-n-menu')[0]?.dataset.widgetNumber || childView.model.attributes.widgetId, index = childView.model.attributes.dataIndex, tabId = childView._parent.$el.find(`.e-n-menu-item-title[data-tab-index="${index}"]`)?.attr('id') || childView.model.attributes.widgetId + ' ' + index; childView.$el.attr({ id: 'e-n-menu-content-' + widgetNumber + '' + index, role: 'menu', 'aria-labelledby': tabId, 'data-tab-index': index, style: '--n-menu-title-order: ' + index + ';' }); } } exports["default"] = View; /***/ }) }]); //# sourceMappingURL=mega-menu-editor.bbef3f7412481cbce555.bundle.js.map .objectcache\:navbar { background: #fff; border-bottom: 1px solid #ccd0d4; padding-top: 10px; } .objectcache\:navbar h2 { font-size: 18px; line-height: 2.5714285714; display: inline-block; padding: 0; margin: 0 10px 0 2px; } .objectcache\:navbar h2 i { vertical-align: middle; color: #babbbc; } .objectcache\:navbar .navbar-tab { display: inline-block; line-height: 2.5714285714; padding: 0.5rem 1rem .5rem; margin: 0 .25rem; text-decoration: none; color: inherit; } .objectcache\:navbar .navbar-tab.is-active { border-bottom-style: solid; border-bottom-width: 3px; border-bottom-color: var(--wp-admin-theme-color, #0071a4); font-weight: bold; } .objectcache\:navbar .navbar-tab:hover { color: var(--wp-admin-theme-color, #00a0d2); } .objectcache\:navbar .navbar-tab:focus { box-shadow: none; } #wpcontent .objectcache\:navbar { margin-left: -20px; padding-left: 20px; } #wpcontent .objectcache\:navbar + #wpbody { margin-top: 0; padding-top: 0; } @media screen and (max-width: 600px) { .objectcache\:navbar { display: none; } } .objectcache\:help-tip { cursor: help; display: block; float: right; margin-right: -12px; width: 20px; height: 20px; } .objectcache\:help-tip:before { content: "\f223"; font-family: Dashicons; font-weight: 400; font-variant: normal; text-transform: none; font-size: 16px; line-height: 20px; color: #646970; -webkit-font-smoothing: antialiased; } .postbox[id*="objectcache_metric_"] { overflow: hidden; } .postbox[id*="objectcache_metric_"] .inside { margin: 0; padding: 0; } .postbox[id*="objectcache_metric_"] .hndle span span { color: #787c82; } .objectcache\:chart .apexcharts-tooltip { visibility: hidden; } .objectcache\:chart:hover .apexcharts-tooltip { visibility: visible; } .objectcache\:chart [class*="apexcharts-series-markers"] { opacity: 1 !important; } .objectcache\:chart .apexcharts-xaxis-label, .objectcache\:chart .apexcharts-yaxis-label { font-size: 10px; fill: #646970; } .apexcharts-gridlines-horizontal line:last-child, .apexcharts-xaxis-texts-g > .apexcharts-xaxis-label:nth-of-type(1) { display: none; } .objectcache\:chart .apexcharts-yaxis-texts-g { transform: translateX(-100%); } .apexcharts-yaxis-texts-g > .apexcharts-yaxis-label:last-child { transform: translateY(-2px); } body.js .objectcache\:config.is-expanded .hide-if-advanced-form, body.js .objectcache\:config:not(.is-expanded) .hide-if-basic-form, body.js .objectcache\:config:not(.is-expanded) .hide-if-basic-form + .form-table { display: none; } body.js .hide-if-insecure, body.js .is-unix-socket .hide-if-unix-socket { display: none; } .objectcache\:config h2 { margin-top: 3em; } .objectcache\:config .hidden { display: none !important; } .objectcache\:config .form-table .complementary-label { margin-top: .5em !important; margin-bottom: 0 !important; } .objectcache\:config .form-table label .description { color: #646970; } .objectcache\:config #analytics_retention { width: 85px; } .objectcache\:latency-widget table, .objectcache\:groups-widget table { width: 100%; } .objectcache\:groups-widget td:first-child, .objectcache\:latency-widget td:first-child { word-wrap: break-word; word-wrap: anywhere; word-break: break-word; padding-right: 10px; } .objectcache\:groups-widget td + td, .objectcache\:latency-widget td + td:last-child { white-space: nowrap; text-align: right; vertical-align: top; padding-left: 10px; } .objectcache\:latency-widget td + td:last-child .error { white-space: normal; } .objectcache\:latency-widget tr { margin-bottom: 10px; } .objectcache\:groups-widget .table-container, .objectcache\:adaptive-widget .table-container { display: block; max-height: 30em; overflow-y: auto; } .objectcache\:groups-widget .actions:first-child, .objectcache\:adaptive-widget .actions:first-child, .objectcache\:groups-widget .table-container + .actions, .objectcache\:adaptive-widget .table-container + .actions { margin-top: 1em !important; align-items: center; flex-wrap: nowrap; } .objectcache\:groups-widget .actions > :first-child { display: flex; align-items: center; margin-right: auto; } .objectcache\:groups-widget .actions > :first-child label { margin-left: .75em; } #objectcache_groups .inside, #objectcache_adaptive .inside { margin-top: 0; padding-right: 2px; } #objectcache_groups .table-container { padding-top: 6px; } #objectcache_groups .actions, #objectcache_groups .table-container, #objectcache_groups p { padding-right: 10px; } @media screen and (min-width: 783px) { #objectcache_groups .objectcache\:flush-group { visibility: hidden; } } #objectcache_groups .objectcache\:flush-group { margin-left: .25em; } #objectcache_groups .busy .objectcache\:flush-group { visibility: hidden !important; } #objectcache_groups tr:hover .objectcache\:flush-group { visibility: visible; } #objectcache_slowlog .inside, #objectcache_commandstats .inside, #objectcache_adaptive .inside, #objectcache_flushlog .inside, #objectcache_groupflushlog .inside { margin: 0; padding: 0; } #objectcache_slowlog .inset, #objectcache_flushlog .inset, #objectcache_commandstats .inset, #objectcache_groupflushlog .inset { margin: 12px; } #objectcache_slowlog .handle-reset .reset-indicator::before, #objectcache_commandstats .handle-reset .reset-indicator::before { content: "\f321"; } .objectcache\:flushlog-widget details:first-of-type { margin-top: 6px; } .objectcache\:flushlog-widget details:last-of-type:not([open]) { margin-bottom: 6px; } .objectcache\:flushlog-widget summary { display: flex; align-items: center; flex-wrap: nowrap; padding: 6px 12px; cursor: pointer; } .objectcache\:flushlog-widget summary::-webkit-details-marker { display: none; } .objectcache\:flushlog-widget summary .dashicons { display: block; width: 14px; height: 14px; font-size: 14px; margin-top: -1px; } .objectcache\:flushlog-widget summary code { margin: 0 12px 0 3px; padding: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 12px; background: #fff; } .objectcache\:flushlog-widget summary time { margin-left: auto; white-space: nowrap; line-height: 1; } .objectcache\:flushlog-widget details[open] summary .dashicons { transform: rotate(90deg); margin-top: 0; } .objectcache\:flushlog-widget details ul { margin: 0; padding: 12px 12px 6px 12px; border-top: 1px solid #f0f0f1; border-bottom: 1px solid #f0f0f1; background: #f6f7f7; } .objectcache\:flushlog-widget details li { display: flex; align-items: flex-start; } .objectcache\:flushlog-widget details li .dashicons { margin-right: 6px; } .objectcache\:flushlog-widget details ul code { padding: 0; margin: 0; display: inline-block; background: transparent; font-size: 12px; line-height: 1.6; word-wrap: break-word; word-wrap: anywhere; word-break: break-word; } .objectcache\:flushlog-widget details ul code span { color: var(--wp-admin-theme-color, #2271b1); } .objectcache\:flushlog-widget label { display: block; margin-top: .5em; } .objectcache\:health-widget li a { color: #3c434a; } .objectcache\:groups-widget #objectcache-groups, .objectcache\:health-widget #objectcache-diagnostics { width: 0px; height: 0px; opacity: 0; } .objectcache\:commands-widget { overflow-y: auto; max-height: 30.5em; } .objectcache\:commands-widget ul, .objectcache\:adaptive-widget ul { display: flex; } .objectcache\:commands-widget details li, .objectcache\:adaptive-widget details li { margin-right: 1.25em; cursor: pointer; align-items: center; } .objectcache\:adaptive-widget p { padding: 0 12px; } .objectcache\:adaptive-widget .actions { padding: 0 12px 12px 12px; } .form-table .tagify { font-size: 12px; background-color: #ffffff; border: 1px solid #8c8f94; border-radius: 4px; max-width: 100em; --tag-bg: #dddddd; --tag-hover: #dddddd; --readonly-striped: 0; --tag-text-color: #1e1e1e; --tags-focus-border-color: #2271b1; --tags-hover-border-color: #8c8f94; --tag-remove-btn-bg--hover: transparent; } .form-table .tagify--focus { box-shadow: 0 0 0 1px #2271b1; } .form-table .tagify__tag { margin-bottom: 0; } .tagify__tag:focus div::before, .tagify__tag:hover div::before { top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; } .tagify__tag[readonly] > div::before, .tagify__tag[readonly]:focus > div::before { box-shadow: 0 0 0 1.1em #efefef inset; box-shadow: 0 0 0 var(--tag-inset-shadow-size) #efefef inset; } .form-table .tagify__tag__removeBtn { font-size: 15px; font-family: inherit; line-height: 1; height: 17px; align-items: flex-start; } .form-table .tagify__tag__removeBtn:hover { color: inherit; } Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/wp-content/plugins/wpgetapi/includes/class-wpgetapi-api-enqueues.php:16) in /var/www/html/wp-includes/pluggable.php on line 1435 Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/wp-content/plugins/wpgetapi/includes/class-wpgetapi-api-enqueues.php:16) in /var/www/html/wp-includes/pluggable.php on line 1438