{ "name": "ralouphie/getallheaders", "description": "A polyfill for getallheaders.", "license": "MIT", "authors": [ { "name": "Ralph Khattar", "email": "ralph.khattar@gmail.com" } ], "require": { "php": ">=5.6" }, "require-dev": { "phpunit/phpunit": "^5 || ^6.5", "php-coveralls/php-coveralls": "^2.1" }, "autoload": { "files": ["src/getallheaders.php"] }, "autoload-dev": { "psr-4": { "getallheaders\\Tests\\": "tests/" } } } {"translation-revision-date":"2024-08-13 08:44+0200","generator":"WP-CLI\/2.12.0","source":"src\/Launch\/components\/QuestionIcon\/Icons\/pages.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pl","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);"},"Pages Icon":["Ikonka stron"]}}}

{ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 2, "name": "themeisle-blocks/form-nonce", "title": "CSRF Protection", "category": "themeisle-blocks", "description": "Protect the form from CSRF.", "keywords": [ "protection", "csrf", "field" ], "textdomain": "otter-blocks", "ancestor": [ "themeisle-blocks/form" ], "attributes": { "formId": { "type": "string" } }, "supports": { "align": [ "wide", "full" ], "inserter": false } }# Git repository for Advanced Responsive Video Embedder (ARVE) #### Level up your basic video embeds! Advanced features, privacy. Use URLs, Shortcodes or Blocks to customize videos to your needs. [ARVE WordPress Plugin][1] is free on [wp.org][1]. Look there for the feature set. [Permalink download to latest version][2]. It will at times be an alpha or beta version that passed the automatic tests but is not released to wp.org. You can upload it a WordPress site under Dashboard > Plugins -> Add New -> Upload. Feel free to file issues with the *code*, for support please file a ticket on [nextgenthemes.com/support/](https://nextgenthemes.com/support/) Code contributions are welcome. Paid addons that finance this project are available: * [Pro](https://nextgenthemes.com/plugins/arve-pro) for Lightbox, Lazyload, Autofill of SEO data and more. * [Privacy](https://nextgenthemes.com/plugins/arve-privacy) for DSGVO compliance, self hosted thumbnails, load YouTube videos via an invideo.us instance. * [Sticky Videos](https://nextgenthemes.com/plugins/arve-sticky-videos/) * [Random Video](https://nextgenthemes.com/plugins/arve-random-video) If you have an idea for a functionality or addon you like to pay for, please [reach out](https://nextgenthemes.com/contact/). [1]: https://wordpress.org/plugins/advanced-responsive-video-embedder/ [2]: https://github.com/nextgenthemes/advanced-responsive-video-embedder/releases/latest/download/arve.zip /*! elementor - v3.5.6 - 28-02-2022 */ "use strict"; (self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["accordion"],{ /***/ "../assets/dev/js/frontend/handlers/accordion.js": /*!*******************************************************!*\ !*** ../assets/dev/js/frontend/handlers/accordion.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 _baseTabs = _interopRequireDefault(__webpack_require__(/*! ./base-tabs */ "../assets/dev/js/frontend/handlers/base-tabs.js")); class Accordion extends _baseTabs.default { getDefaultSettings() { const defaultSettings = super.getDefaultSettings(); return { ...defaultSettings, showTabFn: 'slideDown', hideTabFn: 'slideUp' }; } } exports["default"] = Accordion; /***/ }), /***/ "../assets/dev/js/frontend/handlers/base-tabs.js": /*!*******************************************************!*\ !*** ../assets/dev/js/frontend/handlers/base-tabs.js ***! \*******************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; class baseTabs extends elementorModules.frontend.handlers.Base { getDefaultSettings() { return { selectors: { tablist: '[role="tablist"]', tabTitle: '.elementor-tab-title', tabContent: '.elementor-tab-content' }, classes: { active: 'elementor-active' }, showTabFn: 'show', hideTabFn: 'hide', toggleSelf: true, hidePrevious: true, autoExpand: true, keyDirection: { ArrowLeft: elementorFrontendConfig.is_rtl ? 1 : -1, ArrowUp: -1, ArrowRight: elementorFrontendConfig.is_rtl ? -1 : 1, ArrowDown: 1 } }; } getDefaultElements() { const selectors = this.getSettings('selectors'); return { $tabTitles: this.findElement(selectors.tabTitle), $tabContents: this.findElement(selectors.tabContent) }; } activateDefaultTab() { const settings = this.getSettings(); if (!settings.autoExpand || 'editor' === settings.autoExpand && !this.isEdit) { return; } const defaultActiveTab = this.getEditSettings('activeItemIndex') || 1, originalToggleMethods = { showTabFn: settings.showTabFn, hideTabFn: settings.hideTabFn }; // Toggle tabs without animation to avoid jumping this.setSettings({ showTabFn: 'show', hideTabFn: 'hide' }); this.changeActiveTab(defaultActiveTab); // Return back original toggle effects this.setSettings(originalToggleMethods); } handleKeyboardNavigation(event) { const tab = event.currentTarget, $tabList = jQuery(tab.closest(this.getSettings('selectors').tablist)), $tabs = $tabList.find(this.getSettings('selectors').tabTitle), isVertical = 'vertical' === $tabList.attr('aria-orientation'); switch (event.key) { case 'ArrowLeft': case 'ArrowRight': if (isVertical) { return; } break; case 'ArrowUp': case 'ArrowDown': if (!isVertical) { return; } event.preventDefault(); break; case 'Home': event.preventDefault(); $tabs.first().trigger('focus'); return; case 'End': event.preventDefault(); $tabs.last().trigger('focus'); return; default: return; } const tabIndex = tab.getAttribute('data-tab') - 1, direction = this.getSettings('keyDirection')[event.key], nextTab = $tabs[tabIndex + direction]; if (nextTab) { nextTab.focus(); } else if (-1 === tabIndex + direction) { $tabs.last().trigger('focus'); } else { $tabs.first().trigger('focus'); } } deactivateActiveTab(tabIndex) { const settings = this.getSettings(), activeClass = settings.classes.active, activeFilter = tabIndex ? '[data-tab="' + tabIndex + '"]' : '.' + activeClass, $activeTitle = this.elements.$tabTitles.filter(activeFilter), $activeContent = this.elements.$tabContents.filter(activeFilter); $activeTitle.add($activeContent).removeClass(activeClass); $activeTitle.attr({ tabindex: '-1', 'aria-selected': 'false', 'aria-expanded': 'false' }); $activeContent[settings.hideTabFn](); $activeContent.attr('hidden', 'hidden'); } activateTab(tabIndex) { const settings = this.getSettings(), activeClass = settings.classes.active, $requestedTitle = this.elements.$tabTitles.filter('[data-tab="' + tabIndex + '"]'), $requestedContent = this.elements.$tabContents.filter('[data-tab="' + tabIndex + '"]'), animationDuration = 'show' === settings.showTabFn ? 0 : 400; $requestedTitle.add($requestedContent).addClass(activeClass); $requestedTitle.attr({ tabindex: '0', 'aria-selected': 'true', 'aria-expanded': 'true' }); $requestedContent[settings.showTabFn](animationDuration, () => elementorFrontend.elements.$window.trigger('resize')); $requestedContent.removeAttr('hidden'); } isActiveTab(tabIndex) { return this.elements.$tabTitles.filter('[data-tab="' + tabIndex + '"]').hasClass(this.getSettings('classes.active')); } bindEvents() { this.elements.$tabTitles.on({ keydown: event => { // Support for old markup that includes an `` tag in the tab if (jQuery(event.target).is('a') && `Enter` === event.key) { event.preventDefault(); } // We listen to keydowon event for these keys in order to prevent undesired page scrolling if (['End', 'Home', 'ArrowUp', 'ArrowDown'].includes(event.key)) { this.handleKeyboardNavigation(event); } }, keyup: event => { switch (event.key) { case 'ArrowLeft': case 'ArrowRight': this.handleKeyboardNavigation(event); break; case 'Enter': case 'Space': event.preventDefault(); this.changeActiveTab(event.currentTarget.getAttribute('data-tab')); break; } }, click: event => { event.preventDefault(); this.changeActiveTab(event.currentTarget.getAttribute('data-tab')); } }); } onInit(...args) { super.onInit(...args); this.activateDefaultTab(); } onEditSettingsChange(propertyName) { if ('activeItemIndex' === propertyName) { this.activateDefaultTab(); } } changeActiveTab(tabIndex) { const isActiveTab = this.isActiveTab(tabIndex), settings = this.getSettings(); if ((settings.toggleSelf || !isActiveTab) && settings.hidePrevious) { this.deactivateActiveTab(); } if (!settings.hidePrevious && isActiveTab) { this.deactivateActiveTab(tabIndex); } if (!isActiveTab) { this.activateTab(tabIndex); } } } exports["default"] = baseTabs; /***/ }) }]); //# sourceMappingURL=accordion.d2a56deea36e79f3c000.bundle.js.map

It seems we can’t find what you’re looking for. Perhaps searching can help.

{ "bsf-analytics-ver": "1.1.0" }
Image of the book

The Stories Book

A fine collection of moments in time featuring photographs from Louis Fleckenstein, Paul Strand and Asahachi Kōno.

Available for pre-order now.

/*! elementor-pro - v4.1.0 - 14-07-2026 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["nested-carousel"],{ /***/ "../modules/nested-carousel/assets/js/frontend/handlers/nested-carousel.js" /*!*********************************************************************************!*\ !*** ../modules/nested-carousel/assets/js/frontend/handlers/nested-carousel.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 _runElementHandlers = _interopRequireDefault(__webpack_require__(/*! elementor-pro/frontend/utils/run-element-handlers */ "../assets/dev/js/frontend/utils/run-element-handlers.js")); class NestedCarousel extends elementorModules.frontend.handlers.CarouselBase { getDefaultSettings() { const defaultSettings = super.getDefaultSettings(); defaultSettings.selectors.carousel = '.e-n-carousel'; defaultSettings.selectors.slidesWrapper = '.e-n-carousel > .swiper-wrapper'; return defaultSettings; } getSwiperSettings() { const swiperOptions = super.getSwiperSettings(), elementSettings = this.getElementSettings(), isRtl = elementorFrontend.config.is_rtl, widgetSelector = `.elementor-element-${this.getID()}`; if (elementorFrontend.isEditMode()) { delete swiperOptions.autoplay; swiperOptions.loop = false; swiperOptions.noSwipingSelector = '.swiper-slide > .e-con .elementor-element'; } if ('yes' === elementSettings.arrows) { swiperOptions.navigation = { prevEl: isRtl ? `${widgetSelector} .elementor-swiper-button-next` : `${widgetSelector} .elementor-swiper-button-prev`, nextEl: isRtl ? `${widgetSelector} .elementor-swiper-button-prev` : `${widgetSelector} .elementor-swiper-button-next` }; } this.applySwipeOptions(swiperOptions); return swiperOptions; } async onInit(...args) { this.wrapSlideContent(); super.onInit(...args); this.ranElementHandlers = false; } async initSwiper() { const Swiper = elementorFrontend.utils.swiper; this.swiper = await new Swiper(this.elements.$swiperContainer, this.getSwiperSettings()); // Expose the swiper instance in the frontend this.elements.$swiperContainer.data('swiper', this.swiper); } handleElementHandlers() { if (this.ranElementHandlers || !this.swiper) { return; } const duplicatedSlides = Array.from(this.swiper.slides).filter(slide => slide.classList.contains(this.swiper.params.slideDuplicateClass)); (0, _runElementHandlers.default)(duplicatedSlides); this.ranElementHandlers = true; } wrapSlideContent() { if (!elementorFrontend.isEditMode()) { return; } const settings = this.getSettings(), slideContentClass = settings.selectors.slideContent.replace('.', ''), $widget = this.$element; let index = 1; this.findElement(`${settings.selectors.slidesWrapper} > .e-con`).each(function () { const $currentContainer = jQuery(this), hasSwiperSlideWrapper = $currentContainer.closest('div').hasClass(slideContentClass), $currentSlide = $widget.find(`${settings.selectors.slidesWrapper} > .${slideContentClass}:nth-child(${index})`); if (!hasSwiperSlideWrapper) { $currentSlide.append($currentContainer); } index++; }); } togglePauseOnHover(toggleOn) { if (elementorFrontend.isEditMode()) { return; } super.togglePauseOnHover(toggleOn); } getChangeableProperties() { return { arrows_position: 'arrows_position' // Not a Swiper setting. }; } applySwipeOptions(swiperOptions) { if (!this.isTouchDevice()) { swiperOptions.shortSwipes = false; } else { swiperOptions.touchRatio = 1; swiperOptions.longSwipesRatio = 0.3; swiperOptions.followFinger = true; swiperOptions.threshold = 10; } } isTouchDevice() { return elementorFrontend.utils.environment.isTouchDevice; } async linkContainer(event) { const { container, index, targetContainer, action: { type } } = event.detail, view = container.view.$el, id = container.model.get('id'), currentId = this.$element.data('id'); if (id === currentId) { const { $slides } = this.getDefaultElements(); let carouselItemWrapper, contentContainer; switch (type) { case 'move': [carouselItemWrapper, contentContainer] = this.move(view, index, targetContainer, $slides); break; case 'duplicate': [carouselItemWrapper, contentContainer] = this.duplicate(view, index, targetContainer, $slides); break; default: break; } if (undefined !== carouselItemWrapper) { carouselItemWrapper.appendChild(contentContainer); } this.shouldHideNavButtons(view, $slides); this.updateIndexValues($slides); const isSwiperActive = this.swiper && !this.swiper.destroyed, hasMultipleSlides = $slides.length > 1; if (!isSwiperActive && hasMultipleSlides) { await this.initSwiper(); } else if (isSwiperActive && !hasMultipleSlides) { this.swiper.destroy(true); } this.updateListeners(); } } updateListeners() { this.swiper.initialized = false; this.swiper.init(); } move(view, index, targetContainer, slides) { return [slides[index], targetContainer.view.$el[0]]; } duplicate(view, index, targetContainer, slides) { return [slides[index + 1], targetContainer.view.$el[0]]; } updateIndexValues($slides) { $slides.each((index, element) => { const newIndex = index + 1; element.setAttribute('data-slide', newIndex); }); } bindEvents() { super.bindEvents(); elementorFrontend.elements.$window.on('elementor/nested-container/atomic-repeater', this.linkContainer.bind(this)); } shouldHideNavButtons(view, $slides) { const widget = view[0], navButtons = widget.querySelectorAll('.elementor-swiper-button'), shouldHide = 1 === $slides.length, isHidden = navButtons[0]?.classList.contains('hide'); if (shouldHide !== isHidden) { navButtons.forEach(button => { button.classList.toggle('hide', shouldHide); }); } } } exports["default"] = NestedCarousel; /***/ } }]); //# sourceMappingURL=nested-carousel.dc5d8f837564cbc5b803.bundle.js.map

Top Categories

Close up of a red anthurium.

Anthuriums

Cactus

Sunflowers

`id` bigint(20) NOT NULL AUTO_INCREMENT, `url` varchar(500) NOT NULL, `cache_tags` varchar(1000) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `url` (`url`(191)), KEY `cache_tags` (`cache_tags`(191))jQuery(document).ready(function () { jQuery('textarea[w3tc-data-validator="regexps"]').change(function () { var v = jQuery(this).val(); var items = v.split("\n"); for (var n = 0; n < items.length; n++) { var regexp = items[n].trim(); if (regexp.length > 0) { try { new RegExp(regexp); } catch (e) { var error = "Contains invalid regexp " + regexp + ", please fix"; console.log(error); jQuery(this)[0].setCustomValidity(error); return; } } } jQuery(this)[0].setCustomValidity(""); }); }); .wpl-error{background:#fff;border-left:4px solid #dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:2em 0 15px;padding:1px 12px;width:97%}.wpl-error .closer{color:#333;cursor:pointer;float:right;font-size:18px;padding-top:5px}.wpl-error textarea{background-color:#eee;font-family:courier,Monaco,monospace;font-size:12px;width:100%}.wpl-error span code{background-color:transparent}.wpl-error h3{font-size:1.2em}.wpl-error ul{list-style-type:disc}.wpl-error ul li{margin-left:20px;padding:0}.wpl-error code{-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:1.8}.wpl-error__mini h2{font-size:16px;font-weight:400}.wpl-error__mini h3{font-size:14px;font-weight:400}.wpl-error__highlight{background-color:#f7d85d;display:inline-block;margin:0;padding:3px 6px}.wpl-error__page{float:right;padding:5px}.wpl-error__page span{cursor:pointer;font-size:14px;padding-left:5px;padding-right:5px} .wpl-spinner__container{display:inline-block;position:relative}.wpl-spinner__item{animation:wpl-scaleout 1s ease-in-out infinite;background-color:#1e1e1e;border-radius:100%;display:block;height:40px;left:10px;position:absolute;top:-25px;width:40px}@keyframes wpl-scaleout{0%{transform:scale(0)}to{opacity:0;transform:scale(1)}}.spinner-small .wpl-spinner__item{height:20px;left:5px;top:-15px;width:20px} .redirection .form-table th a{color:#444}.redirection .form-table td ul{list-style-type:disc;margin:15px 0 0;padding-left:20px}.redirection .form-table td li{line-height:1.6;margin-bottom:0}.redirection .form-table textarea{height:100px;width:300px}.redirection .form-table .inline-notice{margin-bottom:0;margin-top:10px} .api-result-retry{clear:both;float:right}.api-result-log{background-color:#ddd;color:#111;margin:10px 0;padding:5px 10px;position:relative}.api-result-log .api-result-method_fail{background-color:#ff3860;color:#fff;margin-right:5px;padding:3px 5px}.api-result-log .api-result-method_pass{background-color:#4ab866;color:#fff;margin-right:5px;padding:3px 5px;width:150px}.api-result-log .dashicons{font-size:26px;height:26px;padding:0;vertical-align:middle;width:26px}.api-result-log .dashicons-no{color:#ff3860}.api-result-log .dashicons-yes{color:#4ab866}.api-result-log pre{background-color:#ccc;font-family:Courier New,Courier,monospace;padding:10px 15px}.api-result-log code{background-color:transparent}.api-result-log h4{font-size:14px;margin:5px 0 0}.api-result-log_details{display:flex}.api-result-log_details>div{width:95%}.api-result-log_details a{color:#111}.api-result-log_details a:hover{font-weight:700}.api-result-log_details pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.api-result-log_details p{margin:.5em 0}.api-result-hide{bottom:25px;position:absolute;right:5%}.api-result-select{position:absolute;right:10px;top:15px}.api-result-select span{background-color:#777;color:#fff;margin-left:10px;padding:5px 10px}.api-result-header{align-items:center;display:flex}.api-result-header .api-result-progress{margin:0 15px}.api-result-header .wpl-spinner__item{height:18px;top:-14px;width:18px}.api-result-header .api-result-status{background-color:#ddd;font-weight:700;left:0;padding:5px 10px;text-align:center;top:0}.api-result-header .api-result-status_good{background-color:#4ab866;color:#fff}.api-result-header .api-result-status_problem{background-color:#f0b849}.api-result-header .api-result-status_failed{background-color:#ff3860;color:#fff} .redirection-database_error{box-shadow:none;margin-top:1em;text-align:left}.redirection-database_error ul{list-style-type:disc}.redirection-database_error li{margin-left:20px}.redirection-database_error h3{margin-top:0;padding-top:0!important}.redirection-database .redirection-database_spinner{margin:0 auto;width:100px}.redirection-database .redirection-database{clear:both;padding-top:20px}.redirection-database .rc-progress-line{clear:both;display:block;margin-bottom:20px}.redirection-database textarea{width:100%}.redirection-database_wrapper h1,.redirection-database_wrapper>p{text-align:center}.redirection-database_wrapper .redirection-database_progress{background-color:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:3px 3px 3px #ddd;margin:30px auto 0;padding:20px;text-align:center;width:75%} .wizard-wrapper{color:#555;margin:90px auto 0;max-width:700px;width:100%}.wizard-wrapper h1{color:#999;font-weight:300;text-align:center}.wizard{background-color:#fff;border-bottom:2px solid #ca4a1f;border-top:2px solid #ca4a1f;padding:40px 40px 30px}.wizard h2{font-size:2em;font-weight:400;margin-bottom:0;margin-top:5px;padding-bottom:10px}.wizard h3{font-size:1.3em;font-weight:300;padding-top:10px}.wizard ul{list-style-type:disc}.wizard li{margin-left:20px}.wizard .notice{box-shadow:none;margin-bottom:20px;margin-left:0;margin-top:0}.wizard .redirection-database_error h2{margin-top:0;padding-top:0}.wizard-buttons{margin-top:20px}.wizard-option{padding:2px 0}.wizard-option label{font-weight:700}.wizard-option_disabled{opacity:.5}.wizard-support{padding-top:10px;text-align:center}.wizard-support a{color:#555}.button.wizard-retry{float:right;margin-top:5px} .subsubsub-container:after,.subsubsub-container:before{content:"";display:table}.subsubsub-container:after{clear:both} .notice.wpl-notice{border-top:1px solid #eee;bottom:25px;box-shadow:3px 3px 3px rgba(0,0,0,.2);cursor:pointer;font-weight:700;position:fixed;right:0;transition:width 1s ease-in-out}.notice.wpl-notice p{padding-right:20px}.notice.wpl-notice .closer{font-size:16px;opacity:.8;position:absolute;right:5px;top:10px}.wpl-notice.wpl-notice_shrunk{width:20px}.wpl-notice.wpl-notice_shrunk p{font-size:16px}.wpl-notice.wpl-notice_shrunk .closer{display:none} @keyframes wpl-loading-fade{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}.wpl-placeholder__container{height:100px;position:relative;width:100%}.wpl-placeholder__loading{animation:wpl-loading-fade 1.6s ease-in-out infinite;background-color:#949494;bottom:16px;content:"";left:8px;padding-left:8px;padding-top:8px;position:absolute;right:8px;top:16px}.placeholder-inline{height:50px;position:relative;width:100%}.placeholder-inline .wpl-placeholder__loading{bottom:0;left:0;right:0;top:0}.loading-small{height:25px;width:25px}.tablenav-pages input.current-page{margin-left:2px;margin-right:2px;width:60px}.loader-wrapper{position:relative}.loader-textarea{height:100px}.wp-list-table .is-placeholder td{height:50px;position:relative}.wp-list-table .item-loading{opacity:.3} .button.wpl-spinner{align-items:center;display:flex;gap:5px}.button.wpl-spinner svg{animation:wplspin 1.5s linear infinite;width:18px}@keyframes wplspin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}} .wpl-popover__toggle{cursor:pointer;display:inline-block;flex:none!important}.wpl-popover__toggle__disabled{opacity:.4} .wpl-popover__arrows{position:absolute;width:100%;z-index:10003}.wpl-popover__arrows:after,.wpl-popover__arrows:before{box-shadow:0 3px 30px rgba(30,30,30,.1);content:"";height:0;line-height:0;margin-left:10px;position:absolute;width:0}.wpl-popover__arrows:before{border:8px solid transparent;border-bottom:8px solid #ccc;border-top:none;top:-8px}.wpl-popover__arrows:after{border:8px solid transparent;border-bottom:8px solid #fff;border-top:none;top:-6px;z-index:10003}.wpl-popover__arrows.wpl-popover__arrows__right:after,.wpl-popover__arrows.wpl-popover__arrows__right:before{margin-right:10px;right:0}.wpl-popover__arrows.wpl-popover__arrows__centre:after,.wpl-popover__arrows.wpl-popover__arrows__centre:before{left:calc(50% - 16px)}.wpl-popover__content{background:#fff;border:1px solid #ccc;box-shadow:0 3px 30px rgba(30,30,30,.1);height:auto;max-height:400px;min-width:150px;overflow-y:auto;position:absolute;z-index:10002} .wpl-badge{align-items:center;background-color:#ccc;border-radius:3px;color:#000;display:inline-flex;margin-bottom:4px;margin-top:4px;min-height:24px;padding:0 4px}.wpl-badge.wpl-badge__click{border:1px solid transparent;cursor:pointer}.wpl-badge.wpl-badge__click:hover{background-color:#949494;color:#fff}.wpl-badge .wpl-badge__close{background-color:transparent;border:none;cursor:pointer;margin-left:2px;text-align:center;vertical-align:middle;width:15px}.wpl-badge .wpl-badge__close:hover{color:#fff}.wpl-badge.wpl-badge__small .wpl-badge__content{max-width:100px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wpl-badge.wpl-badge__disabled{opacity:.6}.wpl-badge.wpl-badge__disabled .wpl-badge__close{cursor:inherit}.wpl-badge:not(:last-child){margin-right:5px} .wpl-popover__content{padding:5px}.wpl-multioption__button{align-items:center;-webkit-appearance:none;background-color:#fff;border:1px solid #7e8993;border-radius:3px;box-shadow:none;box-sizing:border-box;color:#32373c;cursor:pointer;display:flex;font-size:13px;height:30px;justify-content:space-between;line-height:2.15384615;margin:0;max-width:500px;min-height:30px;overflow:hidden;padding:0 10px;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}.wpl-multioption__button svg{border-left:1px solid #ddd;display:inline-block;fill:#888;margin-left:5px;margin-right:-4px;padding-left:5px}.wpl-multioption__button h5{font-size:13px;font-weight:400;margin:0 10px 0 0;padding:0}.wpl-multioption__button .wpl-badge{height:22px}.wpl-multioption__group{margin-bottom:20px}.wpl-multioption__group:first-child{padding-top:7px}.wpl-multioption__group h5{margin:0}.wpl-multioption__group input[type=checkbox]{margin-right:7px}.wpl-multioption__group p{line-height:2.2;margin:0}.wpl-multioption__group+p{margin-top:-10px}.actions .button.wpl-multioption__button{height:28px}.wpl-multioption__button.wpl-multioption__button_enabled{background-color:#fff}.wpl-multioption__button.wpl-multioption__button_enabled svg{border-left:1px solid transparent;border-right:1px solid #ddd;padding-left:0;padding-right:4px;transform:rotate(180deg)}.wpl-multioption__group:last-child{margin-bottom:10px}.branch-4-9 .button.wpl-multioption__button,.branch-4-9 .wpl-dropdownbutton .button,.branch-5-0 .button.wpl-multioption__button,.branch-5-0 .wpl-dropdownbutton .button,.branch-5-1 .button.wpl-multioption__button,.branch-5-1 .wpl-dropdownbutton .button,.branch-5-2 .button.wpl-multioption__button,.branch-5-2 .wpl-dropdownbutton .button{border-color:#ddd}.branch-4-9 input[type=search],.branch-5-0 input[type=search],.branch-5-1 input[type=search],.branch-5-2 input[type=search]{height:30px}.branch-4-9 .actions .wpl-multioption__button .wpl-badge,.branch-4-9 .wpl-multioption,.branch-4-9 .wpl-multioption__button .wpl-badge,.branch-5-0 .actions .wpl-multioption__button .wpl-badge,.branch-5-0 .wpl-multioption,.branch-5-0 .wpl-multioption__button .wpl-badge,.branch-5-1 .actions .wpl-multioption__button .wpl-badge,.branch-5-1 .wpl-multioption,.branch-5-1 .wpl-multioption__button .wpl-badge,.branch-5-2 .actions .wpl-multioption__button .wpl-badge,.branch-5-2 .wpl-multioption,.branch-5-2 .wpl-multioption__button .wpl-badge{margin-top:1px!important}.actions .wpl-popover__content{margin-top:-1px}.wpl-multioption{padding:0 10px}.wpl-multioption p{white-space:nowrap} .inline-notice{background:#fff;border-left:4px solid #ffb900;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px;padding:5px 12px}.inline-notice.inline-general{border-left-color:#46b450}.inline-error{border-color:#ff3860} .redirect-option__row th{margin:0!important;padding-bottom:0!important}.redirect-option__row h2{margin:0} body.wpl-modal_shown{overflow:hidden}.wpl-modal_wrapper{width:100%}.wpl-modal_backdrop{background-color:#757575;opacity:.5;z-index:10000}.wpl-modal_backdrop,.wpl-modal_main{height:100%;left:0;position:fixed;top:0;width:100%}.wpl-modal_main{align-items:center;display:flex;flex-direction:row;flex-grow:1;justify-content:center;z-index:10001}.wpl-modal_main .wpl-click-outside,.wpl-modal_main .wpl-modal_content{max-height:90%;max-width:90%;min-height:100px;min-width:60%}.wpl-modal_main .wpl-modal_content{background:#fff;border:1px solid #e2e4e7;box-shadow:0 3px 30px rgba(25,30,35,.2);margin:0 auto;opacity:1;position:relative;transition:height .05s ease}.wpl-modal_main .wpl-modal_content h1{color:#1e1e1e!important;margin:0!important}.wpl-modal_main .wpl-modal_close button{background-color:#fff;border:none;border-radius:2px;cursor:pointer;padding-right:10px;padding-top:10px;position:absolute;right:0;top:0;z-index:10001}.wpl-modal_wrapper.wpl-modal_wrapper-padless .wpl-modal_content{padding:20px}.wpl-modal_wrapper-padding .wpl-modal_content{padding:10px}.wpl-modal_error h2{text-align:center}.wpl-modal_loading{display:flex;height:100px}.wpl-modal_loading>*{align-self:center;justify-content:center;margin-left:calc(50% - 30px);margin-top:40px}@media screen and (max-width:782px){.wpl-modal_main .wpl-modal_content{margin-right:10%;width:80%}} .redirection-httpcheck_results{display:flex;padding-bottom:40px}.redirection-httpcheck_results .redirection-httpcheck_info{text-align:left}.redirection-httpcheck{padding:15px}.redirection-httpcheck table{width:100%}.redirection-httpcheck .redirection-httpcheck_status{width:80px}.redirection-httpcheck .redirection-httpcheck_status .dashicons{font-size:70px;height:70px;width:70px}.redirection-httpcheck .redirection-httpcheck_status .dashicons-yes{color:#4ab866}.redirection-httpcheck .redirection-httpcheck_status .dashicons-no{color:#ff3860}.redirection-httpcheck .redirection-httpcheck_status .dashicons-warning{color:orange}.redirection-httpcheck h2{font-size:1.4em;margin-bottom:20px;margin-top:10px;padding-bottom:5px;text-align:left}.redirection-httpcheck h3{margin-top:25px}.redirection-httpcheck .wpl-modal_error{padding-left:10px}.redirection-httpcheck{padding-bottom:10px}.redirection-httpcheck svg{height:20px;margin-bottom:10px;margin-left:10px;margin-top:10px;width:20px}.redirection-httpstep__details p{margin-bottom:5px;margin-top:5px}.redirection-httpstep__details p:first-of-type{margin-top:0}.redirection-httpstep__details p:last-of-type{margin-bottom:0}.redirection-httpstep{display:flex}.redirection-httpstep .redirection-httpstep__match{background-color:#4ab866;color:#fff;font-weight:700;padding:3px 2px 3px 5px}.redirection-httpstep .redirection-httpstep__status{border-radius:.375rem;height:-moz-fit-content;height:fit-content;margin-right:10px;padding:.125rem .625rem}.redirection-httpstep .redirection-httpstep__status a{color:#fff;font-weight:500;text-decoration:none}.redirection-httpstep .redirection-httpstep__200{background-color:#4ab866}.redirection-httpstep .redirection-httpstep__300{background-color:#60a5fa}.redirection-httpstep .redirection-httpstep__400{background-color:#f0b849;color:#000}.redirection-httpstep .redirection-httpstep__500{background-color:#ff3860;color:#fff}.redirection-httpstep button{margin-bottom:-5px;margin-top:10px} .http-tester table{width:95%}.http-tester table td,.http-tester table th{overflow:hidden;padding:5px;vertical-align:top}.http-tester table td{max-width:500px}.http-tester table th{padding-right:10px;text-align:right;width:150px}.http-tester table p{margin-top:0;padding-top:0}.http-tester table code{background-color:transparent;font-size:12px;padding:0}.http-tester ul{list-style-type:disc;margin-left:20px}.http-tester ul li span{margin:-20px}.http-tester ul ul{list-style-type:disc;margin-left:20px}.redirection-httptest{background-color:#fff;border:1px solid #999;margin-bottom:30px;padding-left:5px;padding-right:5px}.redirection-httptest h2{margin-top:10px}.redirection-httptest__input{align-items:center;display:flex;gap:10px;justify-content:space-between;margin-bottom:20px}.redirection-httptest__input input[type=text]{width:100%}.plugin-status th{padding:5px;text-align:left}.plugin-status span,.plugin-status td{padding:5px}.plugin-status .plugin-status-good{background-color:#4ab866;color:#fff}.plugin-status .plugin-status-problem{background-color:orange;color:#fff}.plugin-status .plugin-status-error{background-color:#ff3860;color:#fff}.github{margin-top:8px}.github a{text-decoration:none}.github img{margin-bottom:-10px;padding-right:10px} .wpl-dropdownbutton .wpl-popover__content h4{margin-top:5px}.wpl-dropdownbutton .wpl-popover__content h5{margin-bottom:5px;margin-top:0}.wpl-dropdownbutton .wpl-popover__content p:last-child{margin-bottom:0}.wp-core-ui .wpl-popover{max-height:400px;overflow:scroll;z-index:10000}.wp-core-ui .wpl-popover li .button{color:#333}.wp-core-ui .wpl-popover button{background-color:transparent;border:none;cursor:pointer;min-height:inherit;padding:0}.wpl-dropdownbutton{align-items:center;-webkit-appearance:none;background-color:#fff!important;border:1px solid #7e8993;border-radius:3px;color:#32373c;cursor:pointer;display:inline-flex;flex-wrap:nowrap;font-size:13px;line-height:2.15384615;margin:0;min-height:28px;padding:0 10px;text-decoration:none}.wpl-dropdownbutton button{background-color:transparent;border:none;cursor:pointer;min-height:inherit;padding:0}.wpl-dropdownbutton h5{font-size:13px;font-weight:400;margin:0 5px 0 0;padding:0}.wpl-dropdownbutton svg{border-left:1px solid #ddd;display:inline-block;fill:#888;margin-left:5px;margin-right:-4px;padding-left:5px}.wpl-dropdownbutton__popover{padding:5px}.wpl-dropdownbutton__popover li,.wpl-dropdownbutton__popover ul{background-color:#fff;margin:0;max-width:300px;padding:0;white-space:nowrap}.wpl-dropdownbutton__popover li{align-items:center;display:flex;font-weight:500;gap:5px;justify-content:space-between;padding:5px}.wpl-dropdownbutton__popover li:hover{background-color:#2684ff;color:#fff}.wpl-dropdownbutton__popover li:hover span{color:#fff}.wpl-dropdownbutton__popover li span{text-align:center;width:20px}.wpl-dropdownbutton__popover li .button{background-color:transparent;border:none;border-radius:0;box-shadow:none;color:#666;font-weight:400;line-height:1.6;padding:0;text-align:left;white-space:normal;width:100%}.wpl-dropdownbutton__popover li .button:hover{background-color:transparent;color:#fff}.wpl-dropdownbutton__popover li:last-of-type{border-bottom:none}.wpl-dropdownbutton__popover li button.wpl-dropdownbutton{background-color:inherit;border:none;color:#444;padding:0}.wpl-dropdownbutton__single h5{margin-right:0;text-align:center}.wpl-dropdownbutton[data-headlessui-state=open] svg{border-left:1px solid transparent;border-right:1px solid #ddd;padding-left:0;padding-right:4px;transform:rotate(180deg)} table.widefat.redirect-headers{margin-bottom:20px;table-layout:auto!important}.redirect-headers__name{align-items:center;display:flex}.redirect-headers__name select{margin-right:5px}.redirect-headers__name input[type=text]{margin:0 5px}.redirect-headers__name select+input[type=text]{margin-left:0}.redirect-headers__name__content{align-items:center;display:flex;flex-wrap:wrap;justify-content:left}.redirect-headers__name__content select{max-width:250px}.redirect-headers__name__content input[type=text]{width:auto}.redirect-headers__type{width:100px}.redirect-alias__item input[type=text]{width:100%}.widefat td.redirect-alias__item__asdomain{vertical-align:middle}.redirect-alias__delete{width:20px}.redirect-alias__delete,.redirect-headers__delete{width:35px}.redirect-alias__delete button,.redirect-headers__delete button{background:none;border:none}.redirect-alias__delete button:hover,.redirect-headers__delete button:hover{color:red;cursor:pointer} .wp-core-ui .wp-list-table .button-link{display:flex;padding:8px;width:100%} .redirection .wp-list-table{table-layout:fixed}.redirection .wp-list-table tbody>th:not(.check-column){padding:5px;vertical-align:top}.redirection .wp-list-table .column-last_count{text-align:left;width:80px}.redirection .wp-list-table .column-date{width:150px}.redirection .wp-list-table .column-last_access{text-align:left;width:150px}.redirection .wp-list-table .column-ip,.redirection .wp-list-table .column-module,.redirection .wp-list-table .column-total{width:110px}.redirection .wp-list-table .column-method,.redirection .wp-list-table .column-redirects{text-align:left;width:100px}.redirection .wp-list-table .column-position{text-align:left;width:65px}.redirection .wp-list-table .column-code{text-align:left;width:110px}.redirection .wp-list-table .column-status{width:50px}.redirection .wp-list-table .column-action_type,.redirection .wp-list-table .column-match_type{width:120px}.redirection .wp-list-table .check-column-red{margin:0;padding:4px 0 0 3px!important;vertical-align:middle;width:2.2em}.redirection .wp-list-table strike{opacity:.7}.redirection .wp-list-table .saving{opacity:.8}.redirection .wp-list-table.redirect-log__group__ip .column-count{width:200px}.redirection .wp-list-table.redirect-log__group__ip .column-ip{width:90%}.widefat .edit-groups{width:100%}.widefat .edit-groups th{font-size:13px;font-weight:700;line-height:1.2;padding-top:5px!important;padding:2px 2px 2px 0;vertical-align:top}.widefat .edit-groups td{padding:2px}.widefat .edit-groups input[type=text]{width:100%}.table-buttons{float:left}.table-buttons>button,.table-buttons>div.table-button-item,.table-buttons>form{display:inline;margin-right:5px!important}.table-buttons .wpl-modal_wrapper{display:inline}@media screen and (max-width:782px){input[type=checkbox]{height:20px;width:20px}.wp-list-table td.column-primary{padding-left:10px;padding-right:10px}.redirection .wp-list-table input,.redirection .wp-list-table select,.redirection .wp-list-table td,.redirection .wp-list-table th{font-size:1em!important}.redirection .wp-list-table td.column-code,.redirection .wp-list-table td.column-date,.redirection .wp-list-table td.column-referrer,.redirection .wp-list-table td.column-url .target,.redirection .wp-list-table th.column-code,.redirection .wp-list-table th.column-date{display:none!important}table.redirect-edit{padding-right:0}table.redirect-edit th{display:block;font-weight:700;padding-left:0!important}table.redirect-edit tbody tr td{flex-wrap:wrap}table.redirect-edit tbody tr td>*{flex:1 0 auto}table.redirect-edit input[type=number],table.redirect-edit input[type=text],table.redirect-edit select{width:100%}table.edit-groups input[type=number],table.edit-groups select,table.redirect-edit input[type=number],table.redirect-edit select{height:30px!important}}.redirect-table-display__filter button{min-width:200px}.redirect-table-display__filter .wpl-popover__content{min-width:180px}.redirect-table-display{display:flex;justify-content:flex-end}.redirect-table-display>div{margin-right:5px}.redirect-table-display input[name=s]{margin-right:5px;margin-top:0}.redirect-table-filter__select{display:inline-block;margin-right:5px;min-width:200px}.redirect-table-filter__select .redirect-table-filter__select__control{border-color:#ddd;border-radius:0;height:27px;margin-top:1px;max-height:27px;min-height:27px}.tablenav .actions{overflow:visible}.tablenav.bottom,.tablenav.top{align-items:center;display:flex;justify-content:space-between}.tablenav .tablenav-pages{align-items:center;display:flex;margin:0}.tablenav .tablenav-pages .pagination-links{display:flex}.tablenav .tablenav-pages .pagination-links .button{align-items:center;display:inline-flex;justify-content:center}.tablenav .tablenav-pages .pagination-links .button span,.tablenav .tablenav-pages .pagination-links span.button{padding-bottom:2px}.tablenav .tablenav-pages .pagination-links .button,.tablenav .tablenav-pages .tablenav-paging-text{margin-right:4px}.tablenav .tablenav-pages .pagination-links .button:last-of-type{margin-right:0}.tablenav.bottom .redirect-table__actions{display:flex}.tablenav.bottom .redirect-table__actions .table-button-item{margin-right:10px}.redirect-table__actions .actions .button{height:28px}.redirect-table__actions .bulkactions{margin-bottom:9px}.displaying-num-all{background-color:#f0b849;padding:3px} .tablenav-pages .displaying-num button{background:none;border:none;color:#2271b1;cursor:pointer;font-size:13px;margin:0;padding:0;text-decoration:underline;transition:color .3s ease}.tablenav-pages .displaying-num button:hover{color:#333} .redirect-searchbox{align-items:center;display:flex} .redirection-poweredby{bottom:10px;position:absolute;right:15px} .redirection-useragent{box-sizing:border-box}.redirection-useragent th{line-height:1;text-align:left;vertical-align:top;width:120px}.redirection-useragent td{line-height:1.2}.redirection-useragent h2,.redirection-useragent td{text-align:left}.redirection-useragent h2{margin-bottom:0;padding-bottom:5px}.redirection-useragent .redirection-useragent_unknown,.redirection-useragent .redirection-useragent_unknown h2{padding:5px;text-align:center}.redirection-useragent table{padding-bottom:15px;padding-top:10px} .redirect-requestdata th{min-width:120px;padding-right:10px;text-align:left;vertical-align:top}.redirect-requestdata td{overflow-wrap:break-word;word-wrap:break-word;hyphens:auto;word-break:break-all}.redirect-requestdata ul{list-style-type:square;padding-left:20px} .wpl-dropdowntext{display:flex;position:relative}.wpl-dropdowntext input{width:100%}.wpl-dropdowntext .wpl-dropdowntext__loading{position:absolute;right:7px;top:2px}.wpl-dropdowntext .wpl-dropdowntext__loading svg{height:28px;opacity:.7;width:28px}.wpl-dropdowntext__max{display:none}.wpl-dropdowntext__suggestion input{width:100%}.wpl-dropdowntext__suggestion .wpl-badge{background-color:#4ab866;color:#fff;margin-left:5px;margin-right:5px}.wpl-dropdowntext__suggestion .wpl-badge .wpl-badge__content{font-weight:700}.wpl-dropdowntext__suggestion__hide input{display:none}.wpl-dropdowntext__suggestions .wpl-popover__content{line-height:1.8;padding:5px}.wpl-dropdowntext__suggestions .wpl-popover__content ul{list-style-type:none;margin:0;padding:0}.wpl-dropdowntext__suggestions .wpl-popover__content ul li{margin:0}.wpl-dropdowntext__suggestions .wpl-popover__content button{background-color:transparent;border:none;color:#666;cursor:pointer;font-size:13px;font-weight:400;line-height:1.6;padding:0;text-align:left;width:100%}.wpl-dropdowntext__suggestions .wpl-popover__content button:hover{background-color:#deebff}.wpl-dropdowntext__suggestions .wpl-popover__content a{color:#333;display:block;padding:2px 3px;text-decoration:none}.wpl-dropdowntext__suggestions .wpl-popover__content a:hover{background-color:#deebff} .redirect-edit{width:100%}.redirect-edit p{margin:5px}.redirect-edit th{font-weight:700;text-align:left;width:130px}.redirect-edit tbody tr td{align-items:center;display:flex;padding:0}.redirect-edit tbody tr td .redirection-url-autocomplete input,.redirect-edit tbody tr td>:not(input[type=checkbox]){flex:1 1 auto;justify-content:flex-start;margin-right:5px;text-align:left}.redirect-edit tbody tr td>select{flex:0 0 auto}.redirect-edit tbody tr td .redirect-edit-position input{width:60px}.redirect-edit tbody tr td .small-flex{flex-grow:0;padding-top:5px}.redirect-edit tbody tr.redirect-edit__action td{display:block}.redirect-edit tbody tr.redirect-edit__options td p{padding-top:4px}.redirect-edit tbody td.edit-left>*{flex:none}.redirect-edit textarea{height:100px;width:100%}.redirect-edit .redirect-edit_warning{margin-bottom:0;margin-top:10px;overflow-wrap:break-word;padding-bottom:5px;padding-top:5px;text-align:left;width:100%}.redirect-edit .redirect-edit_warning span{margin-right:4px}.redirect-edit .redirect-edit_warning p{align-items:center;color:#444;display:flex;line-height:2;margin:0}.redirect-edit .redirect-edit_warning code{margin-left:4px;margin-right:4px;padding:0 4px}.redirect-edit .redirect-edit_warning a{color:#2271b1;text-decoration:none}.redirect-edit .redirect-edit_warning a:hover{text-decoration:underline}.redirect-edit .wpl-multioption__button .wpl-badge{background-color:#ffb900}.wpl-modal_content .redirect-edit_warning{box-shadow:none;margin-left:0}.widefat td.column-url p{margin:0}.redirect-column-wrap{display:flex;flex-wrap:wrap;justify-content:space-between}.redirect-status{border-radius:10px;display:inline;font-size:16px;font-weight:700;min-width:15px;padding:2px 5px}.redirect-status__enabled{color:#4ab866}.redirect-status__disabled{color:#d94f4f;font-size:18px;padding:0 6px 3px}.wpl-badge.redirect-source__flag_regex{background-color:#ffb900;color:#000}.redirect-source__flags .wpl-badge{margin-bottom:2px}.redirect-edit-regex{align-items:center;display:flex}.redirect-edit-regex input[type=checkbox]{margin:0} .dropzone{border:3px dashed #bbb;border-radius:4px;margin-bottom:10px;padding:10px 10px 15px;text-align:center}.dropzone,.dropzone h3{color:#666}.dropzone p{font-size:14px}.dropzone .groups{margin-bottom:15px;margin-top:15px}.dropzone .is-placeholder{height:90px;margin:0 auto;position:relative;width:50%}.dropzone-hover{border-color:#86bfd4}.dropzone-importing{border-color:transparent}.redirect-export_buttons{align-items:center;display:flex;gap:5px}.redirect-export_buttons .button-primary,.redirect-export_buttons select{margin-right:5px} .form-table.redirect-groups td{align-items:center;display:flex}.form-table.redirect-groups th{width:30px}.form-table.redirect-groups select{min-height:30px}.widefat .edit-groups th{width:70px} .widefat td .redirect-source__details p{margin:0;overflow-wrap:break-word;word-break:break-all} .wp-core-ui .button-secondary.button-delete{color:#fff}.wp-core-ui .button-secondary.button-delete,.wp-core-ui .button-secondary.button-delete:hover{background-color:#ff3860;border-color:transparent;box-shadow:none;text-shadow:none}.inline-notice{background:#fff;border-left:4px solid #ffb900;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 0 15px;padding:5px 12px}.inline-notice.inline-general{border-left-color:#46b450}.inline-error{border-color:red}.addTop{margin-top:20px}@media screen and (max-width:782px){.import select{margin:5px 0;width:100%}.plugin-importer button{width:100%}p.search-box input[name=s]{margin-top:20px}}.module-export{background-color:#fff!important;border:1px solid #ddd;font-family:courier,Monaco,monospace;margin-top:15px;padding:5px;width:100%}.redirect-edit .table-actions{align-items:center;display:flex;justify-content:flex-start;margin-left:1px;margin-top:2px}.redirect-edit .table-actions button.redirection-edit_advanced{background:none;border:none;cursor:pointer;font-size:16px;margin:0;padding:0;text-decoration:none}.redirect-edit .table-actions button.redirection-edit_advanced svg{padding-top:2px}.error{padding-bottom:10px!important}.notice:not(.hidden){display:block!important}.database-switch{float:right;margin-right:10px;margin-top:-5px}.database-switch a{color:#444;text-decoration:none}.database-switch a:hover{text-decoration:underline}.red-upgrade{margin-bottom:50px} var ai_lists=!0,ai_block_class_def="AI_FUNCT_GET_BLOCK_CLASS_NAME"; (function() { "use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;ni.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run(); }()); var b=Object.create;var i=Object.defineProperty;var w=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var l=(t,a)=>()=>{try{return a||t((a={exports:{}}).exports,a),a.exports;}catch(e){throw a=0,e;}};var k=(t,a,e,u)=>{if(a&&typeof a=="object"||typeof a=="function")for(let f of C(a))!v.call(t,f)&&f!==e&&i(t,f,{get:()=>a[f],enumerable:!(u=w(a,f))||u.enumerable});return t;};var s=(t,a,e)=>(e=t!=null?b(L(t)):{},k(a||!t||!t.__esModule?i(e,"default",{value:t,enumerable:!0}):e,t));var n=l((B,p)=>{p.exports=window.wp.i18n;});var g=l((D,c)=>{c.exports=window.wp.primitives;});var y=l((S,h)=>{h.exports=window.ReactJSXRuntime;});var o=s(n(),1);var r=s(g(),1),m=s(y(),1),d=(0,m.jsx)(r.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",children:(0,m.jsx)(r.Path,{d:"M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z"})});import{SelectField as R}from"@jetpack-premium-analytics/fields";var P={icon:d,attributes:[{id:"granularity",label:(0,o.__)("Group by","jetpack-premium-analytics-pkg"),type:"text",Edit:R,elements:[{label:(0,o.__)("By days","jetpack-premium-analytics-pkg"),value:"day"},{label:(0,o.__)("By weeks","jetpack-premium-analytics-pkg"),value:"week"},{label:(0,o.__)("By months","jetpack-premium-analytics-pkg"),value:"month"}],relevance:"high"}],example:{attributes:{granularity:"day"}}};export{P as default};(function () { window.wflsi18n = { __: function(text) { if (window.WordfenceLSI18nStrings && text in window.WordfenceLSI18nStrings) { return window.WordfenceLSI18nStrings[text]; } return text; }, _n: function(singular, plural, count) { if (count === 1) { return window.wflsi18n.__(singular); } return window.wflsi18n.__(plural); } }; if (typeof wp === 'object' && wp.i18n) { window.wflsi18n.sprintf = wp.i18n.sprintf; return; } /** * Code has been adapted from WordPress' i18n.js functions and is being used as a polyfill for WordPress * versions before 5.0. */ var re = { not_string: /[^s]/, not_bool: /[^t]/, not_type: /[^T]/, not_primitive: /[^v]/, number: /[diefg]/, numeric_arg: /[bcdiefguxX]/, json: /[j]/, not_json: /[^j]/, text: /^[^\x25]+/, modulo: /^\x25{2}/, placeholder: /^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/, key: /^([a-z_][a-z_\d]*)/i, key_access: /^\.([a-z_][a-z_\d]*)/i, index_access: /^\[(\d+)\]/, sign: /^[+-]/ }; function sprintf(key) { // `arguments` is not an array, but should be fine for this call return sprintf_format(sprintf_parse(key), arguments) } function vsprintf(fmt, argv) { return sprintf.apply(null, [fmt].concat(argv || [])) } function sprintf_format(parse_tree, argv) { var cursor = 1, tree_length = parse_tree.length, arg, output = '', i, k, ph, pad, pad_character, pad_length, is_positive, sign for (i = 0; i < tree_length; i++) { if (typeof parse_tree[i] === 'string') { output += parse_tree[i] } else if (typeof parse_tree[i] === 'object') { ph = parse_tree[i] // convenience purposes only if (ph.keys) { // keyword argument arg = argv[cursor] for (k = 0; k < ph.keys.length; k++) { if (arg == undefined) { throw new Error(sprintf('[sprintf] Cannot access property "%s" of undefined value "%s"', ph.keys[k], ph.keys[k-1])) } arg = arg[ph.keys[k]] } } else if (ph.param_no) { // positional argument (explicit) arg = argv[ph.param_no] } else { // positional argument (implicit) arg = argv[cursor++] } if (re.not_type.test(ph.type) && re.not_primitive.test(ph.type) && arg instanceof Function) { arg = arg() } if (re.numeric_arg.test(ph.type) && (typeof arg !== 'number' && isNaN(arg))) { throw new TypeError(sprintf('[sprintf] expecting number but found %T', arg)) } if (re.number.test(ph.type)) { is_positive = arg >= 0 } switch (ph.type) { case 'b': arg = parseInt(arg, 10).toString(2) break case 'c': arg = String.fromCharCode(parseInt(arg, 10)) break case 'd': case 'i': arg = parseInt(arg, 10) break case 'j': arg = JSON.stringify(arg, null, ph.width ? parseInt(ph.width) : 0) break case 'e': arg = ph.precision ? parseFloat(arg).toExponential(ph.precision) : parseFloat(arg).toExponential() break case 'f': arg = ph.precision ? parseFloat(arg).toFixed(ph.precision) : parseFloat(arg) break case 'g': arg = ph.precision ? String(Number(arg.toPrecision(ph.precision))) : parseFloat(arg) break case 'o': arg = (parseInt(arg, 10) >>> 0).toString(8) break case 's': arg = String(arg) arg = (ph.precision ? arg.substring(0, ph.precision) : arg) break case 't': arg = String(!!arg) arg = (ph.precision ? arg.substring(0, ph.precision) : arg) break case 'T': arg = Object.prototype.toString.call(arg).slice(8, -1).toLowerCase() arg = (ph.precision ? arg.substring(0, ph.precision) : arg) break case 'u': arg = parseInt(arg, 10) >>> 0 break case 'v': arg = arg.valueOf() arg = (ph.precision ? arg.substring(0, ph.precision) : arg) break case 'x': arg = (parseInt(arg, 10) >>> 0).toString(16) break case 'X': arg = (parseInt(arg, 10) >>> 0).toString(16).toUpperCase() break } if (re.json.test(ph.type)) { output += arg } else { if (re.number.test(ph.type) && (!is_positive || ph.sign)) { sign = is_positive ? '+' : '-' arg = arg.toString().replace(re.sign, '') } else { sign = '' } pad_character = ph.pad_char ? ph.pad_char === '0' ? '0' : ph.pad_char.charAt(1) : ' ' pad_length = ph.width - (sign + arg).length pad = ph.width ? (pad_length > 0 ? pad_character.repeat(pad_length) : '') : '' output += ph.align ? sign + arg + pad : (pad_character === '0' ? sign + pad + arg : pad + sign + arg) } } } return output } var sprintf_cache = Object.create(null) function sprintf_parse(fmt) { if (sprintf_cache[fmt]) { return sprintf_cache[fmt] } var _fmt = fmt, match, parse_tree = [], arg_names = 0 while (_fmt) { if ((match = re.text.exec(_fmt)) !== null) { parse_tree.push(match[0]) } else if ((match = re.modulo.exec(_fmt)) !== null) { parse_tree.push('%') } else if ((match = re.placeholder.exec(_fmt)) !== null) { if (match[2]) { arg_names |= 1 var field_list = [], replacement_field = match[2], field_match = [] if ((field_match = re.key.exec(replacement_field)) !== null) { field_list.push(field_match[1]) while ((replacement_field = replacement_field.substring(field_match[0].length)) !== '') { if ((field_match = re.key_access.exec(replacement_field)) !== null) { field_list.push(field_match[1]) } else if ((field_match = re.index_access.exec(replacement_field)) !== null) { field_list.push(field_match[1]) } else { throw new SyntaxError('[sprintf] failed to parse named argument key') } } } else { throw new SyntaxError('[sprintf] failed to parse named argument key') } match[2] = field_list } else { arg_names |= 2 } if (arg_names === 3) { throw new Error('[sprintf] mixing positional and named placeholders is not (yet) supported') } parse_tree.push( { placeholder: match[0], param_no: match[1], keys: match[2], sign: match[3], pad_char: match[4], align: match[5], width: match[6], precision: match[7], type: match[8] } ) } else { throw new SyntaxError('[sprintf] unexpected placeholder') } _fmt = _fmt.substring(match[0].length) } return sprintf_cache[fmt] = parse_tree } window.wflsi18n.sprintf = sprintf; })();.cm-s-pastel-on-dark.CodeMirror{background:#2c2827;color:#8f938f;line-height:1.5}.cm-s-pastel-on-dark div.CodeMirror-selected{background:rgba(221,240,255,.2)}.cm-s-pastel-on-dark .CodeMirror-line::selection,.cm-s-pastel-on-dark .CodeMirror-line>span::selection,.cm-s-pastel-on-dark .CodeMirror-line>span>span::selection{background:rgba(221,240,255,.2)}.cm-s-pastel-on-dark .CodeMirror-line::-moz-selection,.cm-s-pastel-on-dark .CodeMirror-line>span::-moz-selection,.cm-s-pastel-on-dark .CodeMirror-line>span>span::-moz-selection{background:rgba(221,240,255,.2)}.cm-s-pastel-on-dark .CodeMirror-gutters{background:#34302f;border-right:0;padding:0 3px}.cm-s-pastel-on-dark .CodeMirror-guttermarker{color:#fff}.cm-s-pastel-on-dark .CodeMirror-guttermarker-subtle,.cm-s-pastel-on-dark .CodeMirror-linenumber{color:#8f938f}.cm-s-pastel-on-dark .CodeMirror-cursor{border-left:1px solid #a7a7a7}.cm-s-pastel-on-dark span.cm-comment{color:#a6c6ff}.cm-s-pastel-on-dark span.cm-atom{color:#de8e30}.cm-s-pastel-on-dark span.cm-number{color:#ccc}.cm-s-pastel-on-dark span.cm-property{color:#8f938f}.cm-s-pastel-on-dark span.cm-attribute{color:#a6e22e}.cm-s-pastel-on-dark span.cm-keyword{color:#aeb2f8}.cm-s-pastel-on-dark span.cm-string{color:#66a968}.cm-s-pastel-on-dark span.cm-variable{color:#aeb2f8}.cm-s-pastel-on-dark span.cm-variable-2{color:#bebf55}.cm-s-pastel-on-dark span.cm-type,.cm-s-pastel-on-dark span.cm-variable-3{color:#de8e30}.cm-s-pastel-on-dark span.cm-def{color:#757ad8}.cm-s-pastel-on-dark span.cm-bracket{color:#f8f8f2}.cm-s-pastel-on-dark span.cm-tag{color:#c1c144}.cm-s-pastel-on-dark span.cm-link{color:#ae81ff}.cm-s-pastel-on-dark span.cm-builtin,.cm-s-pastel-on-dark span.cm-qualifier{color:#c1c144}.cm-s-pastel-on-dark span.cm-error{background:#757ad8;color:#f8f8f0}.cm-s-pastel-on-dark .CodeMirror-activeline-background{background:hsla(0,0%,100%,.031)}.cm-s-pastel-on-dark .CodeMirror-matchingbracket{border:1px solid hsla(0,0%,100%,.25);color:#8f938f!important;margin:-1px -1px 0} /* Revolution Slider ---------------------------------------------------------- */ .icon-wpb-revslider { background-position: 0 -928px; background-image: url('../vc/vc-element-icons/element-icon-revolution-slider.svg'); background-position: unset; }@each $breakpoint in map-keys($grid-breakpoints) { @include media-breakpoint-up($breakpoint) { $infix: breakpoint-infix($breakpoint, $grid-breakpoints); .efbl-float#{$infix}-left { @include float-left; } .efbl-float#{$infix}-right { @include float-right; } .efbl-float#{$infix}-none { @include float-none; } } } Page not found – Furthermore