Version Description
- Improvement: Added compatibility with WordPress v5.7.
- Fix: Post Layouts - Fixed the JS undefined error with
post_type
in block editor while using Post Masonry. - Fix: Post Layouts - Fixed the Post Layout keeps loading when clicking on categories All.
Download this release
Release Info
Developer | brainstormworg |
Plugin | Gutenberg Blocks – Ultimate Addons for Gutenberg |
Version | 1.21.1 |
Comparing to | |
See all releases |
Code changes from version 1.21.0 to 1.21.1
- admin/assets/admin-menu-settings.js +7 -7
- assets/js/inline-notice.js +1 -1
- assets/js/table-of-contents.js +3 -3
- classes/class-uagb-config.php +4 -0
- classes/class-uagb-loader.php +1 -1
- dist/blocks.build.js +142 -146
- dist/blocks.editor.build.css +1 -1
- dist/blocks.style.css +15 -14
- dist/blocks/post/class-uagb-post.php +12 -0
- languages/ultimate-addons-for-gutenberg.pot +2475 -2475
- readme.txt +7 -2
- ultimate-addons-for-gutenberg.php +1 -1
admin/assets/admin-menu-settings.js
CHANGED
@@ -85,16 +85,16 @@
|
|
85 |
*/
|
86 |
UAGBAjaxQueue.run()
|
87 |
|
88 |
-
$( document ).
|
89 |
-
$( document ).
|
90 |
|
91 |
-
$( document ).
|
92 |
-
$( document ).
|
93 |
|
94 |
-
$( document ).
|
95 |
-
$( document ).
|
96 |
|
97 |
-
$( document ).
|
98 |
|
99 |
},
|
100 |
|
85 |
*/
|
86 |
UAGBAjaxQueue.run()
|
87 |
|
88 |
+
$( document ).on( "click",".uagb-activate-widget", UAGBAdmin._activate_widget )
|
89 |
+
$( document ).on( "click",".uagb-deactivate-widget", UAGBAdmin._deactivate_widget )
|
90 |
|
91 |
+
$( document ).on( "click",".uagb-activate-all", UAGBAdmin._bulk_activate_widgets )
|
92 |
+
$( document ).on( "click",".uagb-deactivate-all", UAGBAdmin._bulk_deactivate_widgets )
|
93 |
|
94 |
+
$( document ).on( "click",".uag-install-theme", UAGBAdmin._installNow )
|
95 |
+
$( document ).on( "click",".uag-activate-theme", UAGBAdmin._activateTheme)
|
96 |
|
97 |
+
$( document ).on( "click",".uag-file-generation", UAGBAdmin._fileGeneration )
|
98 |
|
99 |
},
|
100 |
|
assets/js/inline-notice.js
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
}
|
19 |
|
20 |
if ( attr['noticeDismiss'] !== '' ) {
|
21 |
-
$( id + " .uagb-notice-dismiss" ).
|
22 |
if ( true === is_cookie && 'undefined' !== typeof current_cookie) {
|
23 |
current_cookies = Cookies.set( 'uagb-notice-' + unique_id, true, { expires: cookies_days } );
|
24 |
$( id ).addClass("uagb-notice__active").css('display' ,'none')
|
18 |
}
|
19 |
|
20 |
if ( attr['noticeDismiss'] !== '' ) {
|
21 |
+
$( id + " .uagb-notice-dismiss" ).on( 'click',function() {
|
22 |
if ( true === is_cookie && 'undefined' !== typeof current_cookie) {
|
23 |
current_cookies = Cookies.set( 'uagb-notice-' + unique_id, true, { expires: cookies_days } );
|
24 |
$( id ).addClass("uagb-notice__active").css('display' ,'none')
|
assets/js/table-of-contents.js
CHANGED
@@ -33,9 +33,9 @@
|
|
33 |
|
34 |
init: function() {
|
35 |
|
36 |
-
$( document ).
|
37 |
-
$( document ).
|
38 |
-
$( document ).
|
39 |
$( document ).on( "scroll", UAGBTableOfContents._showHideScroll )
|
40 |
|
41 |
},
|
33 |
|
34 |
init: function() {
|
35 |
|
36 |
+
$( document ).on( "click",".uagb-toc__list a", UAGBTableOfContents._scroll )
|
37 |
+
$( document ).on( "click",".uagb-toc__scroll-top", UAGBTableOfContents._scrollTop )
|
38 |
+
$( document ).on( "click",'.uagb-toc__title-wrap', UAGBTableOfContents._toggleCollapse )
|
39 |
$( document ).on( "scroll", UAGBTableOfContents._showHideScroll )
|
40 |
|
41 |
},
|
classes/class-uagb-config.php
CHANGED
@@ -1377,6 +1377,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1377 |
'js_assets' => array( 'uagb-slick-js', 'uagb-post-js', 'uagb-imagesloaded' ),
|
1378 |
'css_assets' => array( 'uagb-slick-css' ),
|
1379 |
'attributes' => array(
|
|
|
1380 |
'inheritFromTheme' => false,
|
1381 |
'align' => 'left',
|
1382 |
'rowGap' => '20',
|
@@ -1477,6 +1478,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1477 |
'default' => true,
|
1478 |
'extension' => false,
|
1479 |
'attributes' => array(
|
|
|
1480 |
'inheritFromTheme' => false,
|
1481 |
'align' => 'left',
|
1482 |
'rowGap' => '20',
|
@@ -1589,6 +1591,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1589 |
'extension' => false,
|
1590 |
'js_assets' => array( 'uagb-masonry', 'uagb-imagesloaded', 'uagb-post-js' ),
|
1591 |
'attributes' => array(
|
|
|
1592 |
'postType' => 'post',
|
1593 |
'inheritFromTheme' => false,
|
1594 |
'align' => 'left',
|
@@ -1698,6 +1701,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1698 |
array( 'uagb/post-excerpt' ),
|
1699 |
array( 'uagb/post-button' ),
|
1700 |
),
|
|
|
1701 |
),
|
1702 |
),
|
1703 |
'uagb/post-title' => array(
|
1377 |
'js_assets' => array( 'uagb-slick-js', 'uagb-post-js', 'uagb-imagesloaded' ),
|
1378 |
'css_assets' => array( 'uagb-slick-css' ),
|
1379 |
'attributes' => array(
|
1380 |
+
'post_type' => 'carousel',
|
1381 |
'inheritFromTheme' => false,
|
1382 |
'align' => 'left',
|
1383 |
'rowGap' => '20',
|
1478 |
'default' => true,
|
1479 |
'extension' => false,
|
1480 |
'attributes' => array(
|
1481 |
+
'post_type' => 'grid',
|
1482 |
'inheritFromTheme' => false,
|
1483 |
'align' => 'left',
|
1484 |
'rowGap' => '20',
|
1591 |
'extension' => false,
|
1592 |
'js_assets' => array( 'uagb-masonry', 'uagb-imagesloaded', 'uagb-post-js' ),
|
1593 |
'attributes' => array(
|
1594 |
+
'post_type' => 'masonry',
|
1595 |
'postType' => 'post',
|
1596 |
'inheritFromTheme' => false,
|
1597 |
'align' => 'left',
|
1701 |
array( 'uagb/post-excerpt' ),
|
1702 |
array( 'uagb/post-button' ),
|
1703 |
),
|
1704 |
+
|
1705 |
),
|
1706 |
),
|
1707 |
'uagb/post-title' => array(
|
classes/class-uagb-loader.php
CHANGED
@@ -85,7 +85,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
85 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
86 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
87 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
88 |
-
define( 'UAGB_VER', '1.21.
|
89 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
90 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
91 |
define( 'UAGB_SLUG', 'uag' );
|
85 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
86 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
87 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
88 |
+
define( 'UAGB_VER', '1.21.1' );
|
89 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
90 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
91 |
define( 'UAGB_SLUG', 'uag' );
|
dist/blocks.build.js
CHANGED
@@ -6255,7 +6255,7 @@ function styling(props) {
|
|
6255 |
};
|
6256 |
}
|
6257 |
|
6258 |
-
if (true === postPagination
|
6259 |
if ('filled' == paginationLayout) {
|
6260 |
selectors[" .uagb-post-pagination-wrap a"] = {
|
6261 |
|
@@ -7103,7 +7103,7 @@ var Prefix = function (_React$Component) {
|
|
7103 |
setAttributes({ prefixTitle: value });
|
7104 |
},
|
7105 |
onMerge: props.mergeBlocks,
|
7106 |
-
|
7107 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7108 |
blocks[_key - 2] = arguments[_key];
|
7109 |
}
|
@@ -7183,7 +7183,7 @@ var Title = function (_React$Component) {
|
|
7183 |
},
|
7184 |
multiline: false,
|
7185 |
onMerge: props.mergeBlocks,
|
7186 |
-
|
7187 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7188 |
blocks[_key - 2] = arguments[_key];
|
7189 |
}
|
@@ -7322,7 +7322,7 @@ var InfoBoxDesc = function (_React$Component) {
|
|
7322 |
return setAttributes({ headingDesc: value });
|
7323 |
},
|
7324 |
onMerge: props.mergeBlocks,
|
7325 |
-
|
7326 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7327 |
blocks[_key - 2] = arguments[_key];
|
7328 |
}
|
@@ -7659,7 +7659,7 @@ var AuthorName = function (_React$Component) {
|
|
7659 |
setAttributes({ "test_block": data_copy });
|
7660 |
},
|
7661 |
onMerge: props.mergeBlocks,
|
7662 |
-
|
7663 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7664 |
blocks[_key - 2] = arguments[_key];
|
7665 |
}
|
@@ -7750,7 +7750,7 @@ var Company = function (_React$Component) {
|
|
7750 |
multiline: false,
|
7751 |
placeholder: __("Company Name", 'ultimate-addons-for-gutenberg'),
|
7752 |
onMerge: props.mergeBlocks,
|
7753 |
-
|
7754 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7755 |
blocks[_key - 2] = arguments[_key];
|
7756 |
}
|
@@ -7841,7 +7841,7 @@ var Description = function (_React$Component) {
|
|
7841 |
setAttributes({ "test_block": data_copy });
|
7842 |
},
|
7843 |
onMerge: props.mergeBlocks,
|
7844 |
-
|
7845 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7846 |
blocks[_key - 2] = arguments[_key];
|
7847 |
}
|
@@ -8319,7 +8319,7 @@ var Title = function (_React$Component) {
|
|
8319 |
},
|
8320 |
multiline: false,
|
8321 |
onMerge: props.mergeBlocks,
|
8322 |
-
|
8323 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8324 |
blocks[_key - 2] = arguments[_key];
|
8325 |
}
|
@@ -8396,7 +8396,7 @@ var Description = function (_React$Component) {
|
|
8396 |
return setAttributes({ description: value });
|
8397 |
},
|
8398 |
onMerge: props.mergeBlocks,
|
8399 |
-
|
8400 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8401 |
blocks[_key - 2] = arguments[_key];
|
8402 |
}
|
@@ -8725,7 +8725,7 @@ var Description = function (_React$Component) {
|
|
8725 |
return setAttributes({ descriptionText: value });
|
8726 |
},
|
8727 |
onMerge: props.mergeBlocks,
|
8728 |
-
|
8729 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8730 |
blocks[_key - 2] = arguments[_key];
|
8731 |
}
|
@@ -8802,7 +8802,7 @@ var AuthorText = function (_React$Component) {
|
|
8802 |
return setAttributes({ author: value });
|
8803 |
},
|
8804 |
onMerge: props.mergeBlocks,
|
8805 |
-
|
8806 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8807 |
blocks[_key - 2] = arguments[_key];
|
8808 |
}
|
@@ -25963,7 +25963,7 @@ var UAGBAdvancedHeading = function (_Component) {
|
|
25963 |
setAttributes({ headingTitle: value });
|
25964 |
},
|
25965 |
onMerge: mergeBlocks,
|
25966 |
-
|
25967 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
25968 |
blocks[_key2 - 2] = arguments[_key2];
|
25969 |
}
|
@@ -25989,7 +25989,7 @@ var UAGBAdvancedHeading = function (_Component) {
|
|
25989 |
return setAttributes({ headingDesc: value });
|
25990 |
},
|
25991 |
onMerge: mergeBlocks,
|
25992 |
-
|
25993 |
onRemove: function onRemove() {
|
25994 |
return onReplace([]);
|
25995 |
}
|
@@ -61431,7 +61431,7 @@ var _wp$components = wp.components,
|
|
61431 |
ToggleControl = _wp$components.ToggleControl,
|
61432 |
TabPanel = _wp$components.TabPanel,
|
61433 |
Dashicon = _wp$components.Dashicon,
|
61434 |
-
|
61435 |
TextControl = _wp$components.TextControl,
|
61436 |
RadioControl = _wp$components.RadioControl,
|
61437 |
Button = _wp$components.Button,
|
@@ -61445,7 +61445,8 @@ var _wp$blockEditor = wp.blockEditor,
|
|
61445 |
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
61446 |
var _wp$data = wp.data,
|
61447 |
useDispatch = _wp$data.useDispatch,
|
61448 |
-
withSelect = _wp$data.withSelect
|
|
|
61449 |
|
61450 |
var UAGBPostGrid = function (_Component) {
|
61451 |
_inherits(UAGBPostGrid, _Component);
|
@@ -61549,8 +61550,8 @@ var UAGBPostGrid = function (_Component) {
|
|
61549 |
}, {
|
61550 |
key: "componentDidUpdate",
|
61551 |
value: function componentDidUpdate() {
|
61552 |
-
var element = document.getElementById("uagb-post-grid-style-" + this.props.clientId.substr(0, 8));
|
61553 |
|
|
|
61554 |
if (null !== element && undefined !== element) {
|
61555 |
element.innerHTML = Object(__WEBPACK_IMPORTED_MODULE_5__styling__["a" /* default */])(this.props);
|
61556 |
}
|
@@ -61572,7 +61573,7 @@ var UAGBPostGrid = function (_Component) {
|
|
61572 |
var isEditing = this.state.isEditing;
|
61573 |
|
61574 |
|
61575 |
-
return wp.element.createElement(
|
61576 |
controls: [{
|
61577 |
icon: 'edit',
|
61578 |
title: __('Edit'),
|
@@ -61673,7 +61674,6 @@ var UAGBPostGrid = function (_Component) {
|
|
61673 |
{
|
61674 |
className: "uagb-block-all-post__done-button",
|
61675 |
isPrimary: true,
|
61676 |
-
isLarge: true,
|
61677 |
onClick: onDone
|
61678 |
},
|
61679 |
__('Done')
|
@@ -62982,7 +62982,7 @@ var UAGBPostGrid = function (_Component) {
|
|
62982 |
return UAGBPostGrid;
|
62983 |
}(Component);
|
62984 |
|
62985 |
-
/* harmony default export */ __webpack_exports__["a"] = (withSelect(function (select, props) {
|
62986 |
var _props$attributes = props.attributes,
|
62987 |
categories = _props$attributes.categories,
|
62988 |
postsToShow = _props$attributes.postsToShow,
|
@@ -63020,11 +63020,9 @@ var UAGBPostGrid = function (_Component) {
|
|
63020 |
});
|
63021 |
}
|
63022 |
if ("undefined" != typeof currentTax) {
|
63023 |
-
|
63024 |
if ("undefined" != typeof currentTax["taxonomy"][taxonomyType]) {
|
63025 |
rest_base = currentTax["taxonomy"][taxonomyType]["rest_base"] == false || currentTax["taxonomy"][taxonomyType]["rest_base"] == null ? currentTax["taxonomy"][taxonomyType]["name"] : currentTax["taxonomy"][taxonomyType]["rest_base"];
|
63026 |
}
|
63027 |
-
|
63028 |
if ("" != taxonomyType) {
|
63029 |
if ("undefined" != typeof currentTax["terms"] && "undefined" != typeof currentTax["terms"][taxonomyType]) {
|
63030 |
categoriesList = currentTax["terms"][taxonomyType];
|
@@ -63052,22 +63050,27 @@ var UAGBPostGrid = function (_Component) {
|
|
63052 |
}
|
63053 |
}
|
63054 |
}
|
63055 |
-
|
|
|
|
|
63056 |
|
63057 |
var _select2 = select('core/block-editor'),
|
63058 |
getBlocks = _select2.getBlocks;
|
63059 |
|
63060 |
-
var _useDispatch = useDispatch('core/block-editor'),
|
63061 |
-
replaceInnerBlocks = _useDispatch.replaceInnerBlocks;
|
63062 |
-
|
63063 |
return {
|
63064 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
63065 |
categoriesList: categoriesList,
|
63066 |
taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
|
63067 |
-
block: getBlocks(props.clientId)
|
|
|
|
|
|
|
|
|
|
|
|
|
63068 |
replaceInnerBlocks: replaceInnerBlocks
|
63069 |
};
|
63070 |
-
})(UAGBPostGrid));
|
63071 |
|
63072 |
/***/ }),
|
63073 |
/* 378 */
|
@@ -63743,6 +63746,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
63743 |
|
63744 |
|
63745 |
|
|
|
63746 |
var _wp$element = wp.element,
|
63747 |
Component = _wp$element.Component,
|
63748 |
Fragment = _wp$element.Fragment;
|
@@ -63763,11 +63767,10 @@ var _wp$components = wp.components,
|
|
63763 |
Button = _wp$components.Button,
|
63764 |
Dashicon = _wp$components.Dashicon,
|
63765 |
TextControl = _wp$components.TextControl,
|
63766 |
-
IconButton = _wp$components.IconButton,
|
63767 |
RadioControl = _wp$components.RadioControl,
|
63768 |
Disabled = _wp$components.Disabled,
|
63769 |
Tip = _wp$components.Tip,
|
63770 |
-
|
63771 |
var _wp$blockEditor = wp.blockEditor,
|
63772 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
63773 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
@@ -63776,7 +63779,8 @@ var _wp$blockEditor = wp.blockEditor,
|
|
63776 |
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
63777 |
var _wp$data = wp.data,
|
63778 |
withSelect = _wp$data.withSelect,
|
63779 |
-
useDispatch = _wp$data.useDispatch
|
|
|
63780 |
|
63781 |
var UAGBPostMasonry = function (_Component) {
|
63782 |
_inherits(UAGBPostMasonry, _Component);
|
@@ -63815,7 +63819,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
63815 |
var isEditing = this.state.isEditing;
|
63816 |
|
63817 |
|
63818 |
-
return wp.element.createElement(
|
63819 |
controls: [{
|
63820 |
icon: 'edit',
|
63821 |
title: __('Edit'),
|
@@ -63953,7 +63957,6 @@ var UAGBPostMasonry = function (_Component) {
|
|
63953 |
{
|
63954 |
className: "uagb-block-all-post__done-button",
|
63955 |
isPrimary: true,
|
63956 |
-
isLarge: true,
|
63957 |
onClick: onDone
|
63958 |
},
|
63959 |
__('Done')
|
@@ -64316,7 +64319,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
64316 |
" ",
|
64317 |
__("Alignment", 'ultimate-addons-for-gutenberg')
|
64318 |
),
|
64319 |
-
wp.element.createElement(
|
64320 |
key: "left",
|
64321 |
icon: "editor-alignleft",
|
64322 |
label: "Left",
|
@@ -64326,7 +64329,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
64326 |
"aria-pressed": "left" === paginationAlign,
|
64327 |
isPrimary: "left" === paginationAlign
|
64328 |
}),
|
64329 |
-
wp.element.createElement(
|
64330 |
key: "center",
|
64331 |
icon: "editor-aligncenter",
|
64332 |
label: "Right",
|
@@ -64336,7 +64339,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
64336 |
"aria-pressed": "center" === paginationAlign,
|
64337 |
isPrimary: "center" === paginationAlign
|
64338 |
}),
|
64339 |
-
wp.element.createElement(
|
64340 |
key: "right",
|
64341 |
icon: "editor-alignright",
|
64342 |
label: "Right",
|
@@ -65496,7 +65499,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
65496 |
return UAGBPostMasonry;
|
65497 |
}(Component);
|
65498 |
|
65499 |
-
/* harmony default export */ __webpack_exports__["a"] = (withSelect(function (select, props) {
|
65500 |
var _props$attributes = props.attributes,
|
65501 |
categories = _props$attributes.categories,
|
65502 |
postsToShow = _props$attributes.postsToShow,
|
@@ -65554,18 +65557,23 @@ var UAGBPostMasonry = function (_Component) {
|
|
65554 |
var _select2 = select('core/block-editor'),
|
65555 |
getBlocks = _select2.getBlocks;
|
65556 |
|
65557 |
-
|
65558 |
-
|
65559 |
-
|
65560 |
-
latestPostsQuery[rest_base] = undefined === categories || '' === categories ? categories : category;
|
65561 |
return {
|
65562 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
65563 |
categoriesList: categoriesList,
|
65564 |
taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
|
65565 |
-
block: getBlocks(props.clientId)
|
|
|
|
|
|
|
|
|
|
|
|
|
65566 |
replaceInnerBlocks: replaceInnerBlocks
|
65567 |
};
|
65568 |
-
})(UAGBPostMasonry));
|
65569 |
|
65570 |
/***/ }),
|
65571 |
/* 392 */
|
@@ -73297,6 +73305,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
73297 |
|
73298 |
|
73299 |
|
|
|
73300 |
var _wp$element = wp.element,
|
73301 |
Component = _wp$element.Component,
|
73302 |
Fragment = _wp$element.Fragment;
|
@@ -73315,7 +73324,7 @@ var _wp$components = wp.components,
|
|
73315 |
SelectControl = _wp$components.SelectControl,
|
73316 |
Spinner = _wp$components.Spinner,
|
73317 |
ToggleControl = _wp$components.ToggleControl,
|
73318 |
-
|
73319 |
ButtonGroup = _wp$components.ButtonGroup,
|
73320 |
Button = _wp$components.Button,
|
73321 |
TabPanel = _wp$components.TabPanel,
|
@@ -73333,7 +73342,8 @@ var _wp$blockEditor = wp.blockEditor,
|
|
73333 |
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
73334 |
var _wp$data = wp.data,
|
73335 |
withSelect = _wp$data.withSelect,
|
73336 |
-
useDispatch = _wp$data.useDispatch
|
|
|
73337 |
|
73338 |
var UAGBPostCarousel = function (_Component) {
|
73339 |
_inherits(UAGBPostCarousel, _Component);
|
@@ -73421,7 +73431,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
73421 |
var isEditing = this.state.isEditing;
|
73422 |
|
73423 |
|
73424 |
-
return wp.element.createElement(
|
73425 |
controls: [{
|
73426 |
icon: 'edit',
|
73427 |
title: __('Edit'),
|
@@ -73522,7 +73532,6 @@ var UAGBPostCarousel = function (_Component) {
|
|
73522 |
{
|
73523 |
className: "uagb-block-all-post__done-button",
|
73524 |
isPrimary: true,
|
73525 |
-
isLarge: true,
|
73526 |
onClick: onDone
|
73527 |
},
|
73528 |
__('Done')
|
@@ -74712,7 +74721,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
74712 |
return UAGBPostCarousel;
|
74713 |
}(Component);
|
74714 |
|
74715 |
-
/* harmony default export */ __webpack_exports__["a"] = (withSelect(function (select, props) {
|
74716 |
var _props$attributes = props.attributes,
|
74717 |
categories = _props$attributes.categories,
|
74718 |
postsToShow = _props$attributes.postsToShow,
|
@@ -74770,18 +74779,23 @@ var UAGBPostCarousel = function (_Component) {
|
|
74770 |
var _select2 = select('core/block-editor'),
|
74771 |
getBlocks = _select2.getBlocks;
|
74772 |
|
74773 |
-
|
74774 |
-
|
74775 |
-
|
74776 |
-
latestPostsQuery[rest_base] = undefined === categories || '' === categories ? categories : category;
|
74777 |
return {
|
74778 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
74779 |
categoriesList: categoriesList,
|
74780 |
taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
|
74781 |
-
block: getBlocks(props.clientId)
|
|
|
|
|
|
|
|
|
|
|
|
|
74782 |
replaceInnerBlocks: replaceInnerBlocks
|
74783 |
};
|
74784 |
-
})(UAGBPostCarousel));
|
74785 |
|
74786 |
/***/ }),
|
74787 |
/* 457 */
|
@@ -80037,7 +80051,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
80037 |
var open = _ref.open;
|
80038 |
return wp.element.createElement(
|
80039 |
Button,
|
80040 |
-
{
|
80041 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
80042 |
);
|
80043 |
}
|
@@ -80218,7 +80232,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
80218 |
var open = _ref2.open;
|
80219 |
return wp.element.createElement(
|
80220 |
Button,
|
80221 |
-
{
|
80222 |
!backgroundVideo ? __("Select Background Video", 'ultimate-addons-for-gutenberg') : __("Replace Video", 'ultimate-addons-for-gutenberg')
|
80223 |
);
|
80224 |
}
|
@@ -84772,7 +84786,7 @@ var UAGBinfoBox = function (_Component) {
|
|
84772 |
var open = _ref.open;
|
84773 |
return wp.element.createElement(
|
84774 |
Button,
|
84775 |
-
{
|
84776 |
image_name
|
84777 |
);
|
84778 |
}
|
@@ -87197,7 +87211,7 @@ var UAGBtestimonial = function (_Component) {
|
|
87197 |
var open = _ref.open;
|
87198 |
return wp.element.createElement(
|
87199 |
Button,
|
87200 |
-
{
|
87201 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
87202 |
);
|
87203 |
}
|
@@ -87411,7 +87425,7 @@ var UAGBtestimonial = function (_Component) {
|
|
87411 |
var open = _ref2.open;
|
87412 |
return wp.element.createElement(
|
87413 |
Button,
|
87414 |
-
{
|
87415 |
_this2.getImageName(test_block[index]["image"])
|
87416 |
);
|
87417 |
}
|
@@ -88938,7 +88952,7 @@ var UAGBTeam = function (_Component) {
|
|
88938 |
return setAttributes({ description_text: value });
|
88939 |
},
|
88940 |
onMerge: mergeBlocks
|
88941 |
-
}, _defineProperty(_wp$element$createEle, "placeholder", __("Write a Description", 'ultimate-addons-for-gutenberg')), _defineProperty(_wp$element$createEle, "
|
88942 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
88943 |
blocks[_key - 2] = arguments[_key];
|
88944 |
}
|
@@ -88977,7 +88991,7 @@ var UAGBTeam = function (_Component) {
|
|
88977 |
multiline: false,
|
88978 |
placeholder: __("Write a Title", 'ultimate-addons-for-gutenberg'),
|
88979 |
onMerge: mergeBlocks,
|
88980 |
-
|
88981 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
88982 |
blocks[_key2 - 2] = arguments[_key2];
|
88983 |
}
|
@@ -88998,7 +89012,7 @@ var UAGBTeam = function (_Component) {
|
|
88998 |
return setAttributes({ prefix: value });
|
88999 |
},
|
89000 |
onMerge: mergeBlocks
|
89001 |
-
}, _defineProperty(_wp$element$createEle2, "placeholder", __("Write a Designation", 'ultimate-addons-for-gutenberg')), _defineProperty(_wp$element$createEle2, "
|
89002 |
for (var _len3 = arguments.length, blocks = Array(_len3 > 2 ? _len3 - 2 : 0), _key3 = 2; _key3 < _len3; _key3++) {
|
89003 |
blocks[_key3 - 2] = arguments[_key3];
|
89004 |
}
|
@@ -89045,7 +89059,7 @@ var UAGBTeam = function (_Component) {
|
|
89045 |
var open = _ref.open;
|
89046 |
return wp.element.createElement(
|
89047 |
Button,
|
89048 |
-
{
|
89049 |
!image ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
89050 |
);
|
89051 |
}
|
@@ -91713,7 +91727,7 @@ var UAGBSocialShareChild = function (_Component) {
|
|
91713 |
},
|
91714 |
wp.element.createElement(
|
91715 |
"a",
|
91716 |
-
{ className: "uagb-ss__link", href: "
|
91717 |
wp.element.createElement(
|
91718 |
"span",
|
91719 |
{ className: "uagb-ss__source-wrap" },
|
@@ -91780,7 +91794,7 @@ var UAGBSocialShareChild = function (_Component) {
|
|
91780 |
var open = _ref.open;
|
91781 |
return wp.element.createElement(
|
91782 |
Button,
|
91783 |
-
{
|
91784 |
!image ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
91785 |
);
|
91786 |
}
|
@@ -94234,7 +94248,7 @@ var UAGBIconListChild = function (_Component) {
|
|
94234 |
var open = _ref.open;
|
94235 |
return wp.element.createElement(
|
94236 |
Button,
|
94237 |
-
{
|
94238 |
!image ? __("Select Image") : __("Replace image")
|
94239 |
);
|
94240 |
}
|
@@ -94714,7 +94728,7 @@ var _wp$components = wp.components,
|
|
94714 |
SelectControl = _wp$components.SelectControl,
|
94715 |
TabPanel = _wp$components.TabPanel,
|
94716 |
Dashicon = _wp$components.Dashicon,
|
94717 |
-
|
94718 |
ButtonGroup = _wp$components.ButtonGroup,
|
94719 |
Path = _wp$components.Path,
|
94720 |
SVG = _wp$components.SVG;
|
@@ -95094,7 +95108,7 @@ var UAGBRestaurantMenu = function (_Component) {
|
|
95094 |
wp.element.createElement(
|
95095 |
ButtonGroup,
|
95096 |
{ className: "uagb-editor_imgpos_group" },
|
95097 |
-
wp.element.createElement(
|
95098 |
key: "left",
|
95099 |
icon: "editor-alignleft",
|
95100 |
label: "Left",
|
@@ -95104,7 +95118,7 @@ var UAGBRestaurantMenu = function (_Component) {
|
|
95104 |
"aria-pressed": "left" === imagePosition,
|
95105 |
isPrimary: "left" === imagePosition
|
95106 |
}),
|
95107 |
-
wp.element.createElement(
|
95108 |
key: "top",
|
95109 |
icon: alignTop,
|
95110 |
label: "Top",
|
@@ -95114,7 +95128,7 @@ var UAGBRestaurantMenu = function (_Component) {
|
|
95114 |
"aria-pressed": "top" === imagePosition,
|
95115 |
isPrimary: "top" === imagePosition
|
95116 |
}),
|
95117 |
-
wp.element.createElement(
|
95118 |
key: "right",
|
95119 |
icon: "editor-alignright",
|
95120 |
label: "Right",
|
@@ -96165,7 +96179,7 @@ var UAGBRestaurantMenuChild = function (_Component) {
|
|
96165 |
var open = _ref.open;
|
96166 |
return wp.element.createElement(
|
96167 |
Button,
|
96168 |
-
{
|
96169 |
_this2.getImageName(image)
|
96170 |
);
|
96171 |
}
|
@@ -97304,13 +97318,13 @@ var _wp$element = wp.element,
|
|
97304 |
Component = _wp$element.Component,
|
97305 |
Fragment = _wp$element.Fragment;
|
97306 |
var __ = wp.i18n.__;
|
97307 |
-
var _wp$
|
97308 |
-
BlockControls = _wp$
|
97309 |
-
ColorPalette = _wp$
|
97310 |
-
InspectorControls = _wp$
|
97311 |
-
BlockAlignmentToolbar = _wp$
|
97312 |
-
PanelColorSettings = _wp$
|
97313 |
-
InnerBlocks = _wp$
|
97314 |
var _wp$components = wp.components,
|
97315 |
PanelBody = _wp$components.PanelBody,
|
97316 |
SelectControl = _wp$components.SelectControl,
|
@@ -98027,7 +98041,7 @@ var UAGBcontentTimeline = function (_Component) {
|
|
98027 |
window.addEventListener("load", this.timelineContent_back(id));
|
98028 |
window.addEventListener("resize", this.timelineContent_back(id));
|
98029 |
var time = this;
|
98030 |
-
$(".edit-post-layout__content").scroll
|
98031 |
time.timelineContent_back(id);
|
98032 |
});
|
98033 |
|
@@ -98080,7 +98094,7 @@ var UAGBcontentTimeline = function (_Component) {
|
|
98080 |
window.addEventListener("load", this.timelineContent_back(id));
|
98081 |
window.addEventListener("resize", this.timelineContent_back(id));
|
98082 |
var time = this;
|
98083 |
-
$(".edit-post-layout__content").scroll
|
98084 |
time.timelineContent_back(id);
|
98085 |
});
|
98086 |
}
|
@@ -98448,9 +98462,6 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98448 |
//Store client id.
|
98449 |
this.props.setAttributes({ block_id: this.props.clientId });
|
98450 |
}
|
98451 |
-
}, {
|
98452 |
-
key: "componentDidUpdate",
|
98453 |
-
value: function componentDidUpdate() {}
|
98454 |
}, {
|
98455 |
key: "render",
|
98456 |
value: function render() {
|
@@ -98493,14 +98504,6 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98493 |
var icon_class = "uagb-timeline__icon-new uagb-timeline__out-view-icon ";
|
98494 |
var post_date = t_date;
|
98495 |
|
98496 |
-
if ('custom' != dateFormat) {
|
98497 |
-
|
98498 |
-
post_date = dateI18n(dateFormat, t_date);
|
98499 |
-
if (post_date === "Invalid date", 'ultimate-addons-for-gutenberg') {
|
98500 |
-
post_date = t_date;
|
98501 |
-
}
|
98502 |
-
}
|
98503 |
-
|
98504 |
if (timelinAlignment == "center") {
|
98505 |
display_inner_date = true;
|
98506 |
}
|
@@ -98539,7 +98542,7 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98539 |
displayPostDate != true && t_date && wp.element.createElement(
|
98540 |
"div",
|
98541 |
{ className: "uagb-timeline__inner-date-new" },
|
98542 |
-
post_date
|
98543 |
)
|
98544 |
),
|
98545 |
wp.element.createElement(
|
@@ -98557,7 +98560,7 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98557 |
placeholder: __("Write a Heading", 'ultimate-addons-for-gutenberg'),
|
98558 |
className: "uagb-timeline__heading",
|
98559 |
onMerge: mergeBlocks,
|
98560 |
-
|
98561 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
98562 |
blocks[_key2 - 2] = arguments[_key2];
|
98563 |
}
|
@@ -98579,7 +98582,7 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98579 |
placeholder: __("Write a Description", 'ultimate-addons-for-gutenberg'),
|
98580 |
className: "uagb-timeline-desc-content",
|
98581 |
onMerge: mergeBlocks,
|
98582 |
-
|
98583 |
onRemove: function onRemove() {
|
98584 |
return onReplace([]);
|
98585 |
}
|
@@ -98595,7 +98598,7 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98595 |
displayPostDate != true && t_date && wp.element.createElement(
|
98596 |
"div",
|
98597 |
{ className: "uagb-timeline__date-new" },
|
98598 |
-
post_date
|
98599 |
)
|
98600 |
)
|
98601 |
)
|
@@ -100239,9 +100242,9 @@ var UAGBTimeline = function (_Component) {
|
|
100239 |
}
|
100240 |
}
|
100241 |
}
|
100242 |
-
|
100243 |
-
|
100244 |
-
|
100245 |
return {
|
100246 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
100247 |
categoriesList: categoriesList,
|
@@ -103573,7 +103576,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
103573 |
var open = _ref.open;
|
103574 |
return wp.element.createElement(
|
103575 |
Button,
|
103576 |
-
{
|
103577 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
103578 |
);
|
103579 |
}
|
@@ -105493,7 +105496,7 @@ var UAGBColumns = function (_Component) {
|
|
105493 |
var open = _ref3.open;
|
105494 |
return wp.element.createElement(
|
105495 |
Button,
|
105496 |
-
{
|
105497 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
105498 |
);
|
105499 |
}
|
@@ -105582,7 +105585,7 @@ var UAGBColumns = function (_Component) {
|
|
105582 |
var open = _ref4.open;
|
105583 |
return wp.element.createElement(
|
105584 |
Button,
|
105585 |
-
{
|
105586 |
!backgroundVideo ? __("Select Background Video", 'ultimate-addons-for-gutenberg') : __("Replace Video", 'ultimate-addons-for-gutenberg')
|
105587 |
);
|
105588 |
}
|
@@ -112459,7 +112462,7 @@ var UAGBBlockQuote = function (_Component) {
|
|
112459 |
var open = _ref3.open;
|
112460 |
return wp.element.createElement(
|
112461 |
Button,
|
112462 |
-
{
|
112463 |
image_name
|
112464 |
);
|
112465 |
}
|
@@ -113150,7 +113153,7 @@ var UAGBBlockQuote = function (_Component) {
|
|
113150 |
null,
|
113151 |
wp.element.createElement(
|
113152 |
Toolbar,
|
113153 |
-
|
113154 |
wp.element.createElement(
|
113155 |
Tooltip,
|
113156 |
{ text: __("Normal Quote", 'ultimate-addons-for-gutenberg') },
|
@@ -113168,7 +113171,7 @@ var UAGBBlockQuote = function (_Component) {
|
|
113168 |
),
|
113169 |
wp.element.createElement(
|
113170 |
Toolbar,
|
113171 |
-
|
113172 |
wp.element.createElement(
|
113173 |
Tooltip,
|
113174 |
{ text: __("Inline Quote", 'ultimate-addons-for-gutenberg') },
|
@@ -113190,7 +113193,7 @@ var UAGBBlockQuote = function (_Component) {
|
|
113190 |
null,
|
113191 |
wp.element.createElement(
|
113192 |
Toolbar,
|
113193 |
-
|
113194 |
wp.element.createElement(
|
113195 |
"label",
|
113196 |
{
|
@@ -114986,7 +114989,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
|
|
114986 |
},
|
114987 |
multiline: false,
|
114988 |
onMerge: this.props.mergeBlocks,
|
114989 |
-
|
114990 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
114991 |
blocks[_key - 2] = arguments[_key];
|
114992 |
}
|
@@ -115013,7 +115016,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
|
|
115013 |
},
|
115014 |
multiline: false,
|
115015 |
onMerge: this.props.mergeBlocks,
|
115016 |
-
|
115017 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
115018 |
blocks[_key2 - 2] = arguments[_key2];
|
115019 |
}
|
@@ -118437,7 +118440,7 @@ var UAGBHowTo = function (_Component) {
|
|
118437 |
var open = _ref.open;
|
118438 |
return wp.element.createElement(
|
118439 |
Button,
|
118440 |
-
{
|
118441 |
!mainimage.url ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
118442 |
);
|
118443 |
}
|
@@ -118873,7 +118876,7 @@ var UAGBHowTo = function (_Component) {
|
|
118873 |
setAttributes({ headingTitle: value });
|
118874 |
},
|
118875 |
onMerge: mergeBlocks,
|
118876 |
-
|
118877 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
118878 |
blocks[_key - 2] = arguments[_key];
|
118879 |
}
|
@@ -118894,7 +118897,7 @@ var UAGBHowTo = function (_Component) {
|
|
118894 |
return setAttributes({ headingDesc: value });
|
118895 |
},
|
118896 |
onMerge: mergeBlocks,
|
118897 |
-
|
118898 |
onRemove: function onRemove() {
|
118899 |
return onReplace([]);
|
118900 |
}
|
@@ -118916,7 +118919,7 @@ var UAGBHowTo = function (_Component) {
|
|
118916 |
return setAttributes({ timeNeeded: value });
|
118917 |
},
|
118918 |
onMerge: mergeBlocks,
|
118919 |
-
|
118920 |
onRemove: function onRemove() {
|
118921 |
return onReplace([]);
|
118922 |
}
|
@@ -119010,7 +119013,7 @@ var UAGBHowTo = function (_Component) {
|
|
119010 |
return setAttributes({ estCost: value });
|
119011 |
},
|
119012 |
onMerge: mergeBlocks,
|
119013 |
-
|
119014 |
onRemove: function onRemove() {
|
119015 |
return onReplace([]);
|
119016 |
}
|
@@ -119024,7 +119027,7 @@ var UAGBHowTo = function (_Component) {
|
|
119024 |
return setAttributes({ cost: value });
|
119025 |
},
|
119026 |
onMerge: mergeBlocks,
|
119027 |
-
|
119028 |
onRemove: function onRemove() {
|
119029 |
return onReplace([]);
|
119030 |
}
|
@@ -119038,7 +119041,7 @@ var UAGBHowTo = function (_Component) {
|
|
119038 |
return setAttributes({ currencyType: value });
|
119039 |
},
|
119040 |
onMerge: mergeBlocks,
|
119041 |
-
|
119042 |
onRemove: function onRemove() {
|
119043 |
return onReplace([]);
|
119044 |
}
|
@@ -119056,8 +119059,8 @@ var UAGBHowTo = function (_Component) {
|
|
119056 |
return setAttributes({ toolsTitle: value });
|
119057 |
},
|
119058 |
onMerge: mergeBlocks,
|
119059 |
-
|
119060 |
-
|
119061 |
return onReplace([]);
|
119062 |
}
|
119063 |
}),
|
@@ -119101,7 +119104,7 @@ var UAGBHowTo = function (_Component) {
|
|
119101 |
return setAttributes({ materialTitle: value });
|
119102 |
},
|
119103 |
onMerge: mergeBlocks,
|
119104 |
-
|
119105 |
onRemove: function onRemove() {
|
119106 |
return onReplace([]);
|
119107 |
}
|
@@ -119148,7 +119151,7 @@ var UAGBHowTo = function (_Component) {
|
|
119148 |
return setAttributes({ stepsTitle: value });
|
119149 |
},
|
119150 |
onMerge: mergeBlocks,
|
119151 |
-
|
119152 |
onRemove: function onRemove() {
|
119153 |
return onReplace([]);
|
119154 |
}
|
@@ -120483,8 +120486,7 @@ var _wp$components = wp.components,
|
|
120483 |
ButtonGroup = _wp$components.ButtonGroup,
|
120484 |
Button = _wp$components.Button,
|
120485 |
Dashicon = _wp$components.Dashicon,
|
120486 |
-
ToggleControl = _wp$components.ToggleControl
|
120487 |
-
IconButton = _wp$components.IconButton;
|
120488 |
|
120489 |
|
120490 |
var ALLOWED_BLOCKS = ["uagb/faq-child"];
|
@@ -120880,7 +120882,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
120880 |
" ",
|
120881 |
__("Alignment", 'ultimate-addons-for-gutenberg')
|
120882 |
),
|
120883 |
-
wp.element.createElement(
|
120884 |
key: "left",
|
120885 |
icon: "editor-alignleft",
|
120886 |
label: "Left",
|
@@ -120890,7 +120892,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
120890 |
"aria-pressed": "left" === align,
|
120891 |
isPrimary: "left" === align
|
120892 |
}),
|
120893 |
-
wp.element.createElement(
|
120894 |
key: "center",
|
120895 |
icon: "editor-aligncenter",
|
120896 |
label: "Right",
|
@@ -120900,7 +120902,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
120900 |
"aria-pressed": "center" === align,
|
120901 |
isPrimary: "center" === align
|
120902 |
}),
|
120903 |
-
wp.element.createElement(
|
120904 |
key: "right",
|
120905 |
icon: "editor-alignright",
|
120906 |
label: "Right",
|
@@ -121270,7 +121272,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
121270 |
" ",
|
121271 |
__("Icon Alignment", 'ultimate-addons-for-gutenberg')
|
121272 |
),
|
121273 |
-
wp.element.createElement(
|
121274 |
key: "row",
|
121275 |
icon: "editor-alignleft",
|
121276 |
label: "Left",
|
@@ -121280,7 +121282,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
121280 |
"aria-pressed": "row" === iconAlign,
|
121281 |
isPrimary: "row" === iconAlign
|
121282 |
}),
|
121283 |
-
wp.element.createElement(
|
121284 |
key: "row-reverse",
|
121285 |
icon: "editor-alignright",
|
121286 |
label: "Right",
|
@@ -126017,7 +126019,7 @@ var UAGBRatingEdit = function (_Component) {
|
|
126017 |
element.innerHTML = Object(__WEBPACK_IMPORTED_MODULE_1__styling__["a" /* default */])(this.props);
|
126018 |
}
|
126019 |
|
126020 |
-
$(".uagb-rating-link-wrapper").click
|
126021 |
event.preventDefault();
|
126022 |
});
|
126023 |
}
|
@@ -126829,7 +126831,7 @@ var UAGBRatingEdit = function (_Component) {
|
|
126829 |
var open = _ref2.open;
|
126830 |
return wp.element.createElement(
|
126831 |
Button,
|
126832 |
-
{
|
126833 |
!mainimage.url ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
126834 |
);
|
126835 |
}
|
@@ -130425,7 +130427,7 @@ var UAGBTabsEdit = function (_Component) {
|
|
130425 |
onChange: function onChange(value) {
|
130426 |
return _this2.updateTabsTitle(value, index);
|
130427 |
},
|
130428 |
-
|
130429 |
return null;
|
130430 |
},
|
130431 |
placeholder: __('Title…', 'ultimate-addons-for-gutenberg')
|
@@ -130928,11 +130930,14 @@ var UAGBTabsChildEdit = function (_Component) {
|
|
130928 |
}
|
130929 |
|
130930 |
_createClass(UAGBTabsChildEdit, [{
|
130931 |
-
key: '
|
130932 |
-
value: function
|
130933 |
var _props = this.props,
|
130934 |
attributes = _props.attributes,
|
|
|
130935 |
clientId = _props.clientId;
|
|
|
|
|
130936 |
|
130937 |
var _ref = !wp.blockEditor ? select('core/editor') : select('core/block-editor'),
|
130938 |
getBlockRootClientId = _ref.getBlockRootClientId,
|
@@ -130941,6 +130946,11 @@ var UAGBTabsChildEdit = function (_Component) {
|
|
130941 |
var rootBlockId = getBlockRootClientId(clientId);
|
130942 |
var rootBlockAttrs = getBlockAttributes(rootBlockId);
|
130943 |
|
|
|
|
|
|
|
|
|
|
|
130944 |
// Apply parent style if newly inserted
|
130945 |
if (rootBlockAttrs !== null && rootBlockAttrs.needUpdate !== false) {
|
130946 |
Object.keys(rootBlockAttrs).map(function (attribute) {
|
@@ -130948,26 +130958,12 @@ var UAGBTabsChildEdit = function (_Component) {
|
|
130948 |
});
|
130949 |
}
|
130950 |
}
|
130951 |
-
}, {
|
130952 |
-
key: 'componentDidMount',
|
130953 |
-
value: function componentDidMount() {
|
130954 |
-
var _props2 = this.props,
|
130955 |
-
attributes = _props2.attributes,
|
130956 |
-
setAttributes = _props2.setAttributes;
|
130957 |
-
var id = attributes.id,
|
130958 |
-
tabHeaders = attributes.tabHeaders;
|
130959 |
-
|
130960 |
-
setAttributes({ block_id: this.props.clientId.substr(0, 8) });
|
130961 |
-
setAttributes({
|
130962 |
-
header: tabHeaders[id]
|
130963 |
-
});
|
130964 |
-
}
|
130965 |
}, {
|
130966 |
key: 'render',
|
130967 |
value: function render() {
|
130968 |
-
var
|
130969 |
-
attributes =
|
130970 |
-
className =
|
130971 |
var tabActive = attributes.tabActive,
|
130972 |
id = attributes.id,
|
130973 |
block_id = attributes.block_id;
|
6255 |
};
|
6256 |
}
|
6257 |
|
6258 |
+
if (true === postPagination) {
|
6259 |
if ('filled' == paginationLayout) {
|
6260 |
selectors[" .uagb-post-pagination-wrap a"] = {
|
6261 |
|
7103 |
setAttributes({ prefixTitle: value });
|
7104 |
},
|
7105 |
onMerge: props.mergeBlocks,
|
7106 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
7107 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7108 |
blocks[_key - 2] = arguments[_key];
|
7109 |
}
|
7183 |
},
|
7184 |
multiline: false,
|
7185 |
onMerge: props.mergeBlocks,
|
7186 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
7187 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7188 |
blocks[_key - 2] = arguments[_key];
|
7189 |
}
|
7322 |
return setAttributes({ headingDesc: value });
|
7323 |
},
|
7324 |
onMerge: props.mergeBlocks,
|
7325 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
7326 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7327 |
blocks[_key - 2] = arguments[_key];
|
7328 |
}
|
7659 |
setAttributes({ "test_block": data_copy });
|
7660 |
},
|
7661 |
onMerge: props.mergeBlocks,
|
7662 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
7663 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7664 |
blocks[_key - 2] = arguments[_key];
|
7665 |
}
|
7750 |
multiline: false,
|
7751 |
placeholder: __("Company Name", 'ultimate-addons-for-gutenberg'),
|
7752 |
onMerge: props.mergeBlocks,
|
7753 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
7754 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7755 |
blocks[_key - 2] = arguments[_key];
|
7756 |
}
|
7841 |
setAttributes({ "test_block": data_copy });
|
7842 |
},
|
7843 |
onMerge: props.mergeBlocks,
|
7844 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
7845 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
7846 |
blocks[_key - 2] = arguments[_key];
|
7847 |
}
|
8319 |
},
|
8320 |
multiline: false,
|
8321 |
onMerge: props.mergeBlocks,
|
8322 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
8323 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8324 |
blocks[_key - 2] = arguments[_key];
|
8325 |
}
|
8396 |
return setAttributes({ description: value });
|
8397 |
},
|
8398 |
onMerge: props.mergeBlocks,
|
8399 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
8400 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8401 |
blocks[_key - 2] = arguments[_key];
|
8402 |
}
|
8725 |
return setAttributes({ descriptionText: value });
|
8726 |
},
|
8727 |
onMerge: props.mergeBlocks,
|
8728 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
8729 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8730 |
blocks[_key - 2] = arguments[_key];
|
8731 |
}
|
8802 |
return setAttributes({ author: value });
|
8803 |
},
|
8804 |
onMerge: props.mergeBlocks,
|
8805 |
+
onSplit: props.insertBlocksAfter ? function (before, after) {
|
8806 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
8807 |
blocks[_key - 2] = arguments[_key];
|
8808 |
}
|
25963 |
setAttributes({ headingTitle: value });
|
25964 |
},
|
25965 |
onMerge: mergeBlocks,
|
25966 |
+
onSplit: insertBlocksAfter ? function (before, after) {
|
25967 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
25968 |
blocks[_key2 - 2] = arguments[_key2];
|
25969 |
}
|
25989 |
return setAttributes({ headingDesc: value });
|
25990 |
},
|
25991 |
onMerge: mergeBlocks,
|
25992 |
+
onSplit: this.splitBlock,
|
25993 |
onRemove: function onRemove() {
|
25994 |
return onReplace([]);
|
25995 |
}
|
61431 |
ToggleControl = _wp$components.ToggleControl,
|
61432 |
TabPanel = _wp$components.TabPanel,
|
61433 |
Dashicon = _wp$components.Dashicon,
|
61434 |
+
ToolbarGroup = _wp$components.ToolbarGroup,
|
61435 |
TextControl = _wp$components.TextControl,
|
61436 |
RadioControl = _wp$components.RadioControl,
|
61437 |
Button = _wp$components.Button,
|
61445 |
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
61446 |
var _wp$data = wp.data,
|
61447 |
useDispatch = _wp$data.useDispatch,
|
61448 |
+
withSelect = _wp$data.withSelect,
|
61449 |
+
withDispatch = _wp$data.withDispatch;
|
61450 |
|
61451 |
var UAGBPostGrid = function (_Component) {
|
61452 |
_inherits(UAGBPostGrid, _Component);
|
61550 |
}, {
|
61551 |
key: "componentDidUpdate",
|
61552 |
value: function componentDidUpdate() {
|
|
|
61553 |
|
61554 |
+
var element = document.getElementById("uagb-post-grid-style-" + this.props.clientId.substr(0, 8));
|
61555 |
if (null !== element && undefined !== element) {
|
61556 |
element.innerHTML = Object(__WEBPACK_IMPORTED_MODULE_5__styling__["a" /* default */])(this.props);
|
61557 |
}
|
61573 |
var isEditing = this.state.isEditing;
|
61574 |
|
61575 |
|
61576 |
+
return wp.element.createElement(ToolbarGroup, {
|
61577 |
controls: [{
|
61578 |
icon: 'edit',
|
61579 |
title: __('Edit'),
|
61674 |
{
|
61675 |
className: "uagb-block-all-post__done-button",
|
61676 |
isPrimary: true,
|
|
|
61677 |
onClick: onDone
|
61678 |
},
|
61679 |
__('Done')
|
62982 |
return UAGBPostGrid;
|
62983 |
}(Component);
|
62984 |
|
62985 |
+
/* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, props) {
|
62986 |
var _props$attributes = props.attributes,
|
62987 |
categories = _props$attributes.categories,
|
62988 |
postsToShow = _props$attributes.postsToShow,
|
63020 |
});
|
63021 |
}
|
63022 |
if ("undefined" != typeof currentTax) {
|
|
|
63023 |
if ("undefined" != typeof currentTax["taxonomy"][taxonomyType]) {
|
63024 |
rest_base = currentTax["taxonomy"][taxonomyType]["rest_base"] == false || currentTax["taxonomy"][taxonomyType]["rest_base"] == null ? currentTax["taxonomy"][taxonomyType]["name"] : currentTax["taxonomy"][taxonomyType]["rest_base"];
|
63025 |
}
|
|
|
63026 |
if ("" != taxonomyType) {
|
63027 |
if ("undefined" != typeof currentTax["terms"] && "undefined" != typeof currentTax["terms"][taxonomyType]) {
|
63028 |
categoriesList = currentTax["terms"][taxonomyType];
|
63050 |
}
|
63051 |
}
|
63052 |
}
|
63053 |
+
if (undefined !== categories && '' !== categories) {
|
63054 |
+
latestPostsQuery[rest_base] = undefined === categories || '' === categories ? categories : category;
|
63055 |
+
}
|
63056 |
|
63057 |
var _select2 = select('core/block-editor'),
|
63058 |
getBlocks = _select2.getBlocks;
|
63059 |
|
|
|
|
|
|
|
63060 |
return {
|
63061 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
63062 |
categoriesList: categoriesList,
|
63063 |
taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
|
63064 |
+
block: getBlocks(props.clientId)
|
63065 |
+
};
|
63066 |
+
}), withDispatch(function (dispatch) {
|
63067 |
+
var _dispatch = dispatch('core/block-editor'),
|
63068 |
+
replaceInnerBlocks = _dispatch.replaceInnerBlocks;
|
63069 |
+
|
63070 |
+
return {
|
63071 |
replaceInnerBlocks: replaceInnerBlocks
|
63072 |
};
|
63073 |
+
}))(UAGBPostGrid));
|
63074 |
|
63075 |
/***/ }),
|
63076 |
/* 378 */
|
63746 |
|
63747 |
|
63748 |
|
63749 |
+
var compose = wp.compose.compose;
|
63750 |
var _wp$element = wp.element,
|
63751 |
Component = _wp$element.Component,
|
63752 |
Fragment = _wp$element.Fragment;
|
63767 |
Button = _wp$components.Button,
|
63768 |
Dashicon = _wp$components.Dashicon,
|
63769 |
TextControl = _wp$components.TextControl,
|
|
|
63770 |
RadioControl = _wp$components.RadioControl,
|
63771 |
Disabled = _wp$components.Disabled,
|
63772 |
Tip = _wp$components.Tip,
|
63773 |
+
ToolbarGroup = _wp$components.ToolbarGroup;
|
63774 |
var _wp$blockEditor = wp.blockEditor,
|
63775 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
63776 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
63779 |
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
63780 |
var _wp$data = wp.data,
|
63781 |
withSelect = _wp$data.withSelect,
|
63782 |
+
useDispatch = _wp$data.useDispatch,
|
63783 |
+
withDispatch = _wp$data.withDispatch;
|
63784 |
|
63785 |
var UAGBPostMasonry = function (_Component) {
|
63786 |
_inherits(UAGBPostMasonry, _Component);
|
63819 |
var isEditing = this.state.isEditing;
|
63820 |
|
63821 |
|
63822 |
+
return wp.element.createElement(ToolbarGroup, {
|
63823 |
controls: [{
|
63824 |
icon: 'edit',
|
63825 |
title: __('Edit'),
|
63957 |
{
|
63958 |
className: "uagb-block-all-post__done-button",
|
63959 |
isPrimary: true,
|
|
|
63960 |
onClick: onDone
|
63961 |
},
|
63962 |
__('Done')
|
64319 |
" ",
|
64320 |
__("Alignment", 'ultimate-addons-for-gutenberg')
|
64321 |
),
|
64322 |
+
wp.element.createElement(Button, {
|
64323 |
key: "left",
|
64324 |
icon: "editor-alignleft",
|
64325 |
label: "Left",
|
64329 |
"aria-pressed": "left" === paginationAlign,
|
64330 |
isPrimary: "left" === paginationAlign
|
64331 |
}),
|
64332 |
+
wp.element.createElement(Button, {
|
64333 |
key: "center",
|
64334 |
icon: "editor-aligncenter",
|
64335 |
label: "Right",
|
64339 |
"aria-pressed": "center" === paginationAlign,
|
64340 |
isPrimary: "center" === paginationAlign
|
64341 |
}),
|
64342 |
+
wp.element.createElement(Button, {
|
64343 |
key: "right",
|
64344 |
icon: "editor-alignright",
|
64345 |
label: "Right",
|
65499 |
return UAGBPostMasonry;
|
65500 |
}(Component);
|
65501 |
|
65502 |
+
/* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, props) {
|
65503 |
var _props$attributes = props.attributes,
|
65504 |
categories = _props$attributes.categories,
|
65505 |
postsToShow = _props$attributes.postsToShow,
|
65557 |
var _select2 = select('core/block-editor'),
|
65558 |
getBlocks = _select2.getBlocks;
|
65559 |
|
65560 |
+
if (undefined !== categories && '' !== categories) {
|
65561 |
+
latestPostsQuery[rest_base] = undefined === categories || '' === categories ? categories : category;
|
65562 |
+
}
|
|
|
65563 |
return {
|
65564 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
65565 |
categoriesList: categoriesList,
|
65566 |
taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
|
65567 |
+
block: getBlocks(props.clientId)
|
65568 |
+
};
|
65569 |
+
}), withDispatch(function (dispatch) {
|
65570 |
+
var _dispatch = dispatch('core/block-editor'),
|
65571 |
+
replaceInnerBlocks = _dispatch.replaceInnerBlocks;
|
65572 |
+
|
65573 |
+
return {
|
65574 |
replaceInnerBlocks: replaceInnerBlocks
|
65575 |
};
|
65576 |
+
}))(UAGBPostMasonry));
|
65577 |
|
65578 |
/***/ }),
|
65579 |
/* 392 */
|
73305 |
|
73306 |
|
73307 |
|
73308 |
+
var compose = wp.compose.compose;
|
73309 |
var _wp$element = wp.element,
|
73310 |
Component = _wp$element.Component,
|
73311 |
Fragment = _wp$element.Fragment;
|
73324 |
SelectControl = _wp$components.SelectControl,
|
73325 |
Spinner = _wp$components.Spinner,
|
73326 |
ToggleControl = _wp$components.ToggleControl,
|
73327 |
+
ToolbarGroup = _wp$components.ToolbarGroup,
|
73328 |
ButtonGroup = _wp$components.ButtonGroup,
|
73329 |
Button = _wp$components.Button,
|
73330 |
TabPanel = _wp$components.TabPanel,
|
73342 |
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
73343 |
var _wp$data = wp.data,
|
73344 |
withSelect = _wp$data.withSelect,
|
73345 |
+
useDispatch = _wp$data.useDispatch,
|
73346 |
+
withDispatch = _wp$data.withDispatch;
|
73347 |
|
73348 |
var UAGBPostCarousel = function (_Component) {
|
73349 |
_inherits(UAGBPostCarousel, _Component);
|
73431 |
var isEditing = this.state.isEditing;
|
73432 |
|
73433 |
|
73434 |
+
return wp.element.createElement(ToolbarGroup, {
|
73435 |
controls: [{
|
73436 |
icon: 'edit',
|
73437 |
title: __('Edit'),
|
73532 |
{
|
73533 |
className: "uagb-block-all-post__done-button",
|
73534 |
isPrimary: true,
|
|
|
73535 |
onClick: onDone
|
73536 |
},
|
73537 |
__('Done')
|
74721 |
return UAGBPostCarousel;
|
74722 |
}(Component);
|
74723 |
|
74724 |
+
/* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, props) {
|
74725 |
var _props$attributes = props.attributes,
|
74726 |
categories = _props$attributes.categories,
|
74727 |
postsToShow = _props$attributes.postsToShow,
|
74779 |
var _select2 = select('core/block-editor'),
|
74780 |
getBlocks = _select2.getBlocks;
|
74781 |
|
74782 |
+
if (undefined !== categories && '' !== categories) {
|
74783 |
+
latestPostsQuery[rest_base] = undefined === categories || '' === categories ? categories : category;
|
74784 |
+
}
|
|
|
74785 |
return {
|
74786 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
74787 |
categoriesList: categoriesList,
|
74788 |
taxonomyList: "undefined" != typeof currentTax ? currentTax["taxonomy"] : [],
|
74789 |
+
block: getBlocks(props.clientId)
|
74790 |
+
};
|
74791 |
+
}), withDispatch(function (dispatch) {
|
74792 |
+
var _dispatch = dispatch('core/block-editor'),
|
74793 |
+
replaceInnerBlocks = _dispatch.replaceInnerBlocks;
|
74794 |
+
|
74795 |
+
return {
|
74796 |
replaceInnerBlocks: replaceInnerBlocks
|
74797 |
};
|
74798 |
+
}))(UAGBPostCarousel));
|
74799 |
|
74800 |
/***/ }),
|
74801 |
/* 457 */
|
80051 |
var open = _ref.open;
|
80052 |
return wp.element.createElement(
|
80053 |
Button,
|
80054 |
+
{ isSecondary: true, onClick: open },
|
80055 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
80056 |
);
|
80057 |
}
|
80232 |
var open = _ref2.open;
|
80233 |
return wp.element.createElement(
|
80234 |
Button,
|
80235 |
+
{ isSecondary: true, onClick: open },
|
80236 |
!backgroundVideo ? __("Select Background Video", 'ultimate-addons-for-gutenberg') : __("Replace Video", 'ultimate-addons-for-gutenberg')
|
80237 |
);
|
80238 |
}
|
84786 |
var open = _ref.open;
|
84787 |
return wp.element.createElement(
|
84788 |
Button,
|
84789 |
+
{ isSecondary: true, onClick: open },
|
84790 |
image_name
|
84791 |
);
|
84792 |
}
|
87211 |
var open = _ref.open;
|
87212 |
return wp.element.createElement(
|
87213 |
Button,
|
87214 |
+
{ isSecondary: true, onClick: open },
|
87215 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
87216 |
);
|
87217 |
}
|
87425 |
var open = _ref2.open;
|
87426 |
return wp.element.createElement(
|
87427 |
Button,
|
87428 |
+
{ isSecondary: true, onClick: open },
|
87429 |
_this2.getImageName(test_block[index]["image"])
|
87430 |
);
|
87431 |
}
|
88952 |
return setAttributes({ description_text: value });
|
88953 |
},
|
88954 |
onMerge: mergeBlocks
|
88955 |
+
}, _defineProperty(_wp$element$createEle, "placeholder", __("Write a Description", 'ultimate-addons-for-gutenberg')), _defineProperty(_wp$element$createEle, "onSplit", insertBlocksAfter ? function (before, after) {
|
88956 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
88957 |
blocks[_key - 2] = arguments[_key];
|
88958 |
}
|
88991 |
multiline: false,
|
88992 |
placeholder: __("Write a Title", 'ultimate-addons-for-gutenberg'),
|
88993 |
onMerge: mergeBlocks,
|
88994 |
+
onSplit: insertBlocksAfter ? function (before, after) {
|
88995 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
88996 |
blocks[_key2 - 2] = arguments[_key2];
|
88997 |
}
|
89012 |
return setAttributes({ prefix: value });
|
89013 |
},
|
89014 |
onMerge: mergeBlocks
|
89015 |
+
}, _defineProperty(_wp$element$createEle2, "placeholder", __("Write a Designation", 'ultimate-addons-for-gutenberg')), _defineProperty(_wp$element$createEle2, "onSplit", insertBlocksAfter ? function (before, after) {
|
89016 |
for (var _len3 = arguments.length, blocks = Array(_len3 > 2 ? _len3 - 2 : 0), _key3 = 2; _key3 < _len3; _key3++) {
|
89017 |
blocks[_key3 - 2] = arguments[_key3];
|
89018 |
}
|
89059 |
var open = _ref.open;
|
89060 |
return wp.element.createElement(
|
89061 |
Button,
|
89062 |
+
{ isSecondary: true, onClick: open },
|
89063 |
!image ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
89064 |
);
|
89065 |
}
|
91727 |
},
|
91728 |
wp.element.createElement(
|
91729 |
"a",
|
91730 |
+
{ className: "uagb-ss__link", href: "#", rel: "noopener noreferrer" },
|
91731 |
wp.element.createElement(
|
91732 |
"span",
|
91733 |
{ className: "uagb-ss__source-wrap" },
|
91794 |
var open = _ref.open;
|
91795 |
return wp.element.createElement(
|
91796 |
Button,
|
91797 |
+
{ isSecondary: true, onClick: open },
|
91798 |
!image ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
91799 |
);
|
91800 |
}
|
94248 |
var open = _ref.open;
|
94249 |
return wp.element.createElement(
|
94250 |
Button,
|
94251 |
+
{ isSecondary: true, onClick: open },
|
94252 |
!image ? __("Select Image") : __("Replace image")
|
94253 |
);
|
94254 |
}
|
94728 |
SelectControl = _wp$components.SelectControl,
|
94729 |
TabPanel = _wp$components.TabPanel,
|
94730 |
Dashicon = _wp$components.Dashicon,
|
94731 |
+
Button = _wp$components.Button,
|
94732 |
ButtonGroup = _wp$components.ButtonGroup,
|
94733 |
Path = _wp$components.Path,
|
94734 |
SVG = _wp$components.SVG;
|
95108 |
wp.element.createElement(
|
95109 |
ButtonGroup,
|
95110 |
{ className: "uagb-editor_imgpos_group" },
|
95111 |
+
wp.element.createElement(Button, {
|
95112 |
key: "left",
|
95113 |
icon: "editor-alignleft",
|
95114 |
label: "Left",
|
95118 |
"aria-pressed": "left" === imagePosition,
|
95119 |
isPrimary: "left" === imagePosition
|
95120 |
}),
|
95121 |
+
wp.element.createElement(Button, {
|
95122 |
key: "top",
|
95123 |
icon: alignTop,
|
95124 |
label: "Top",
|
95128 |
"aria-pressed": "top" === imagePosition,
|
95129 |
isPrimary: "top" === imagePosition
|
95130 |
}),
|
95131 |
+
wp.element.createElement(Button, {
|
95132 |
key: "right",
|
95133 |
icon: "editor-alignright",
|
95134 |
label: "Right",
|
96179 |
var open = _ref.open;
|
96180 |
return wp.element.createElement(
|
96181 |
Button,
|
96182 |
+
{ isSecondary: true, onClick: open },
|
96183 |
_this2.getImageName(image)
|
96184 |
);
|
96185 |
}
|
97318 |
Component = _wp$element.Component,
|
97319 |
Fragment = _wp$element.Fragment;
|
97320 |
var __ = wp.i18n.__;
|
97321 |
+
var _wp$blockEditor = wp.blockEditor,
|
97322 |
+
BlockControls = _wp$blockEditor.BlockControls,
|
97323 |
+
ColorPalette = _wp$blockEditor.ColorPalette,
|
97324 |
+
InspectorControls = _wp$blockEditor.InspectorControls,
|
97325 |
+
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
97326 |
+
PanelColorSettings = _wp$blockEditor.PanelColorSettings,
|
97327 |
+
InnerBlocks = _wp$blockEditor.InnerBlocks;
|
97328 |
var _wp$components = wp.components,
|
97329 |
PanelBody = _wp$components.PanelBody,
|
97330 |
SelectControl = _wp$components.SelectControl,
|
98041 |
window.addEventListener("load", this.timelineContent_back(id));
|
98042 |
window.addEventListener("resize", this.timelineContent_back(id));
|
98043 |
var time = this;
|
98044 |
+
$(".edit-post-layout__content").on('scroll', function (event) {
|
98045 |
time.timelineContent_back(id);
|
98046 |
});
|
98047 |
|
98094 |
window.addEventListener("load", this.timelineContent_back(id));
|
98095 |
window.addEventListener("resize", this.timelineContent_back(id));
|
98096 |
var time = this;
|
98097 |
+
$(".edit-post-layout__content").on('scroll', function (event) {
|
98098 |
time.timelineContent_back(id);
|
98099 |
});
|
98100 |
}
|
98462 |
//Store client id.
|
98463 |
this.props.setAttributes({ block_id: this.props.clientId });
|
98464 |
}
|
|
|
|
|
|
|
98465 |
}, {
|
98466 |
key: "render",
|
98467 |
value: function render() {
|
98504 |
var icon_class = "uagb-timeline__icon-new uagb-timeline__out-view-icon ";
|
98505 |
var post_date = t_date;
|
98506 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98507 |
if (timelinAlignment == "center") {
|
98508 |
display_inner_date = true;
|
98509 |
}
|
98542 |
displayPostDate != true && t_date && wp.element.createElement(
|
98543 |
"div",
|
98544 |
{ className: "uagb-timeline__inner-date-new" },
|
98545 |
+
'custom' != dateFormat && dateI18n(dateFormat, post_date) || post_date
|
98546 |
)
|
98547 |
),
|
98548 |
wp.element.createElement(
|
98560 |
placeholder: __("Write a Heading", 'ultimate-addons-for-gutenberg'),
|
98561 |
className: "uagb-timeline__heading",
|
98562 |
onMerge: mergeBlocks,
|
98563 |
+
onSplit: insertBlocksAfter ? function (before, after) {
|
98564 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
98565 |
blocks[_key2 - 2] = arguments[_key2];
|
98566 |
}
|
98582 |
placeholder: __("Write a Description", 'ultimate-addons-for-gutenberg'),
|
98583 |
className: "uagb-timeline-desc-content",
|
98584 |
onMerge: mergeBlocks,
|
98585 |
+
onSplit: this.splitBlock,
|
98586 |
onRemove: function onRemove() {
|
98587 |
return onReplace([]);
|
98588 |
}
|
98598 |
displayPostDate != true && t_date && wp.element.createElement(
|
98599 |
"div",
|
98600 |
{ className: "uagb-timeline__date-new" },
|
98601 |
+
'custom' != dateFormat && dateI18n(dateFormat, post_date) || post_date
|
98602 |
)
|
98603 |
)
|
98604 |
)
|
100242 |
}
|
100243 |
}
|
100244 |
}
|
100245 |
+
if (undefined !== categories && '' !== categories) {
|
100246 |
+
latestPostsQuery[rest_base] = undefined === categories || '' === categories ? categories : category;
|
100247 |
+
}
|
100248 |
return {
|
100249 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
100250 |
categoriesList: categoriesList,
|
103576 |
var open = _ref.open;
|
103577 |
return wp.element.createElement(
|
103578 |
Button,
|
103579 |
+
{ isSecondary: true, onClick: open },
|
103580 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
103581 |
);
|
103582 |
}
|
105496 |
var open = _ref3.open;
|
105497 |
return wp.element.createElement(
|
105498 |
Button,
|
105499 |
+
{ isSecondary: true, onClick: open },
|
105500 |
!backgroundImage ? __("Select Background Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
105501 |
);
|
105502 |
}
|
105585 |
var open = _ref4.open;
|
105586 |
return wp.element.createElement(
|
105587 |
Button,
|
105588 |
+
{ isSecondary: true, onClick: open },
|
105589 |
!backgroundVideo ? __("Select Background Video", 'ultimate-addons-for-gutenberg') : __("Replace Video", 'ultimate-addons-for-gutenberg')
|
105590 |
);
|
105591 |
}
|
112462 |
var open = _ref3.open;
|
112463 |
return wp.element.createElement(
|
112464 |
Button,
|
112465 |
+
{ isSecondary: true, onClick: open },
|
112466 |
image_name
|
112467 |
);
|
112468 |
}
|
113153 |
null,
|
113154 |
wp.element.createElement(
|
113155 |
Toolbar,
|
113156 |
+
{ label: "Options" },
|
113157 |
wp.element.createElement(
|
113158 |
Tooltip,
|
113159 |
{ text: __("Normal Quote", 'ultimate-addons-for-gutenberg') },
|
113171 |
),
|
113172 |
wp.element.createElement(
|
113173 |
Toolbar,
|
113174 |
+
{ label: "Options" },
|
113175 |
wp.element.createElement(
|
113176 |
Tooltip,
|
113177 |
{ text: __("Inline Quote", 'ultimate-addons-for-gutenberg') },
|
113193 |
null,
|
113194 |
wp.element.createElement(
|
113195 |
Toolbar,
|
113196 |
+
{ label: "Options" },
|
113197 |
wp.element.createElement(
|
113198 |
"label",
|
113199 |
{
|
114989 |
},
|
114990 |
multiline: false,
|
114991 |
onMerge: this.props.mergeBlocks,
|
114992 |
+
onSplit: this.props.insertBlocksAfter ? function (before, after) {
|
114993 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
114994 |
blocks[_key - 2] = arguments[_key];
|
114995 |
}
|
115016 |
},
|
115017 |
multiline: false,
|
115018 |
onMerge: this.props.mergeBlocks,
|
115019 |
+
onSplit: this.props.insertBlocksAfter ? function (before, after) {
|
115020 |
for (var _len2 = arguments.length, blocks = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {
|
115021 |
blocks[_key2 - 2] = arguments[_key2];
|
115022 |
}
|
118440 |
var open = _ref.open;
|
118441 |
return wp.element.createElement(
|
118442 |
Button,
|
118443 |
+
{ isSecondary: true, onClick: open },
|
118444 |
!mainimage.url ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
118445 |
);
|
118446 |
}
|
118876 |
setAttributes({ headingTitle: value });
|
118877 |
},
|
118878 |
onMerge: mergeBlocks,
|
118879 |
+
onSplit: insertBlocksAfter ? function (before, after) {
|
118880 |
for (var _len = arguments.length, blocks = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
|
118881 |
blocks[_key - 2] = arguments[_key];
|
118882 |
}
|
118897 |
return setAttributes({ headingDesc: value });
|
118898 |
},
|
118899 |
onMerge: mergeBlocks,
|
118900 |
+
onSplit: this.splitBlock,
|
118901 |
onRemove: function onRemove() {
|
118902 |
return onReplace([]);
|
118903 |
}
|
118919 |
return setAttributes({ timeNeeded: value });
|
118920 |
},
|
118921 |
onMerge: mergeBlocks,
|
118922 |
+
onSplit: this.splitBlock,
|
118923 |
onRemove: function onRemove() {
|
118924 |
return onReplace([]);
|
118925 |
}
|
119013 |
return setAttributes({ estCost: value });
|
119014 |
},
|
119015 |
onMerge: mergeBlocks,
|
119016 |
+
onSplit: this.splitBlock,
|
119017 |
onRemove: function onRemove() {
|
119018 |
return onReplace([]);
|
119019 |
}
|
119027 |
return setAttributes({ cost: value });
|
119028 |
},
|
119029 |
onMerge: mergeBlocks,
|
119030 |
+
onSplit: this.splitBlock,
|
119031 |
onRemove: function onRemove() {
|
119032 |
return onReplace([]);
|
119033 |
}
|
119041 |
return setAttributes({ currencyType: value });
|
119042 |
},
|
119043 |
onMerge: mergeBlocks,
|
119044 |
+
onSplit: this.splitBlock,
|
119045 |
onRemove: function onRemove() {
|
119046 |
return onReplace([]);
|
119047 |
}
|
119059 |
return setAttributes({ toolsTitle: value });
|
119060 |
},
|
119061 |
onMerge: mergeBlocks,
|
119062 |
+
onSplit: this.splitBlock,
|
119063 |
+
onRemove: function onRemove() {
|
119064 |
return onReplace([]);
|
119065 |
}
|
119066 |
}),
|
119104 |
return setAttributes({ materialTitle: value });
|
119105 |
},
|
119106 |
onMerge: mergeBlocks,
|
119107 |
+
onSplit: this.splitBlock,
|
119108 |
onRemove: function onRemove() {
|
119109 |
return onReplace([]);
|
119110 |
}
|
119151 |
return setAttributes({ stepsTitle: value });
|
119152 |
},
|
119153 |
onMerge: mergeBlocks,
|
119154 |
+
onSplit: this.splitBlock,
|
119155 |
onRemove: function onRemove() {
|
119156 |
return onReplace([]);
|
119157 |
}
|
120486 |
ButtonGroup = _wp$components.ButtonGroup,
|
120487 |
Button = _wp$components.Button,
|
120488 |
Dashicon = _wp$components.Dashicon,
|
120489 |
+
ToggleControl = _wp$components.ToggleControl;
|
|
|
120490 |
|
120491 |
|
120492 |
var ALLOWED_BLOCKS = ["uagb/faq-child"];
|
120882 |
" ",
|
120883 |
__("Alignment", 'ultimate-addons-for-gutenberg')
|
120884 |
),
|
120885 |
+
wp.element.createElement(Button, {
|
120886 |
key: "left",
|
120887 |
icon: "editor-alignleft",
|
120888 |
label: "Left",
|
120892 |
"aria-pressed": "left" === align,
|
120893 |
isPrimary: "left" === align
|
120894 |
}),
|
120895 |
+
wp.element.createElement(Button, {
|
120896 |
key: "center",
|
120897 |
icon: "editor-aligncenter",
|
120898 |
label: "Right",
|
120902 |
"aria-pressed": "center" === align,
|
120903 |
isPrimary: "center" === align
|
120904 |
}),
|
120905 |
+
wp.element.createElement(Button, {
|
120906 |
key: "right",
|
120907 |
icon: "editor-alignright",
|
120908 |
label: "Right",
|
121272 |
" ",
|
121273 |
__("Icon Alignment", 'ultimate-addons-for-gutenberg')
|
121274 |
),
|
121275 |
+
wp.element.createElement(Button, {
|
121276 |
key: "row",
|
121277 |
icon: "editor-alignleft",
|
121278 |
label: "Left",
|
121282 |
"aria-pressed": "row" === iconAlign,
|
121283 |
isPrimary: "row" === iconAlign
|
121284 |
}),
|
121285 |
+
wp.element.createElement(Button, {
|
121286 |
key: "row-reverse",
|
121287 |
icon: "editor-alignright",
|
121288 |
label: "Right",
|
126019 |
element.innerHTML = Object(__WEBPACK_IMPORTED_MODULE_1__styling__["a" /* default */])(this.props);
|
126020 |
}
|
126021 |
|
126022 |
+
$(".uagb-rating-link-wrapper").on("click", function (event) {
|
126023 |
event.preventDefault();
|
126024 |
});
|
126025 |
}
|
126831 |
var open = _ref2.open;
|
126832 |
return wp.element.createElement(
|
126833 |
Button,
|
126834 |
+
{ isSecondary: true, onClick: open },
|
126835 |
!mainimage.url ? __("Select Image", 'ultimate-addons-for-gutenberg') : __("Replace image", 'ultimate-addons-for-gutenberg')
|
126836 |
);
|
126837 |
}
|
130427 |
onChange: function onChange(value) {
|
130428 |
return _this2.updateTabsTitle(value, index);
|
130429 |
},
|
130430 |
+
onSplit: function onSplit() {
|
130431 |
return null;
|
130432 |
},
|
130433 |
placeholder: __('Title…', 'ultimate-addons-for-gutenberg')
|
130930 |
}
|
130931 |
|
130932 |
_createClass(UAGBTabsChildEdit, [{
|
130933 |
+
key: 'componentDidMount',
|
130934 |
+
value: function componentDidMount() {
|
130935 |
var _props = this.props,
|
130936 |
attributes = _props.attributes,
|
130937 |
+
setAttributes = _props.setAttributes,
|
130938 |
clientId = _props.clientId;
|
130939 |
+
var id = attributes.id,
|
130940 |
+
tabHeaders = attributes.tabHeaders;
|
130941 |
|
130942 |
var _ref = !wp.blockEditor ? select('core/editor') : select('core/block-editor'),
|
130943 |
getBlockRootClientId = _ref.getBlockRootClientId,
|
130946 |
var rootBlockId = getBlockRootClientId(clientId);
|
130947 |
var rootBlockAttrs = getBlockAttributes(rootBlockId);
|
130948 |
|
130949 |
+
setAttributes({ block_id: this.props.clientId.substr(0, 8) });
|
130950 |
+
setAttributes({
|
130951 |
+
header: tabHeaders[id]
|
130952 |
+
});
|
130953 |
+
|
130954 |
// Apply parent style if newly inserted
|
130955 |
if (rootBlockAttrs !== null && rootBlockAttrs.needUpdate !== false) {
|
130956 |
Object.keys(rootBlockAttrs).map(function (attribute) {
|
130958 |
});
|
130959 |
}
|
130960 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130961 |
}, {
|
130962 |
key: 'render',
|
130963 |
value: function render() {
|
130964 |
+
var _props2 = this.props,
|
130965 |
+
attributes = _props2.attributes,
|
130966 |
+
className = _props2.className;
|
130967 |
var tabActive = attributes.tabActive,
|
130968 |
id = attributes.id,
|
130969 |
block_id = attributes.block_id;
|
dist/blocks.editor.build.css
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-none .gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading.custom_gform_heading{display:none}.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading.custom_gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading{display:block}.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="radio"],.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="checkbox"]{-webkit-appearance:none}.wp-block-uagb-gf-styler input[type="radio"]{-webkit-appearance:radio}.wp-block-uagb-gf-styler input[type="checkbox"]{-webkit-appearance:checkbox}.wp-block-uagb-gf-styler input[type="checkbox"]:checked:before,.wp-block-uagb-gf-styler input[type="radio"]:checked:before{content:''}.wp-block-uagb-gf-styler input[type="radio"]:focus,.wp-block-uagb-gf-styler input[type="checkbox"]:focus,.wp-block-uagb-gf-styler input[type="radio"]:checked:focus,.wp-block-uagb-gf-styler input[type="checkbox"]:checked:focus{box-shadow:none}.wp-block-uagb-gf-styler input[type="radio"]:checked:before,.wp-block-uagb-gf-styler input[type="checkbox"]:checked:before{float:unset;display:inline}.wp-block-uagb-gf-styler input[type=number]{height:auto}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler .button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler input,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler textarea{font-size:100%;color:inherit}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler .gform_button.button{height:auto}
|
23 |
#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}#wpwrap .edit-post-visual-editor blockquote.uagb-blockquote{margin:0;padding:0}#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-border blockquote{padding-left:10px}#wpwrap .edit-post-visual-editor .uagb-blockquote__content,#wpwrap .edit-post-visual-editor cite.uagb-blockquote__author,#wpwrap .edit-post-visual-editor .uagb-blockquote__author{font-style:normal}#wpwrap .edit-post-visual-editor .uagb-blockquote a{color:#1DA1F2;box-shadow:none;text-decoration:none}#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{color:#fff}#wpwrap .edit-post-visual-editor .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{margin:0 auto}
|
24 |
p.uagb-marketing-btn__prefix.block-editor-rich-text__editable{margin:0 !important}
|
25 |
-
.uagb-toc__list>p{font-size:13px;font-style:italic;color:#666}.block-editor-page .uagb-toc__scroll-top.dashicons{right:
|
26 |
.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices{background-color:#FFF8E5;border-left:5px solid #FFB901;padding:8px 10px;font-size:13px;line-height:20px;color:#32373c}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices ul{margin:0;padding-bottom:0}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices h6{margin:0;font-size:inherit;line-height:inherit}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices p{margin:0;margin-top:15px;font-size:inherit;color:#555d66}.wp-block-uagb-how-to .block-editor-button-block-appender{margin-top:0px;margin-left:20px;width:10%}.editor-styles-wrapper .uagb-howto__time-wrap h3,.editor-styles-wrapper .uagb-howto__cost-wrap h3,.editor-styles-wrapper .uagb-how-to-tools__wrap h3,.editor-styles-wrapper .uagb-how-to-steps__wrap h3{margin-bottom:20px;margin-top:20px}.editor-styles-wrapper .uagb-howto__time-wrap p,.editor-styles-wrapper .uagb-howto__cost-wrap p,.editor-styles-wrapper .uagb-how-to-tools__wrap p,.editor-styles-wrapper .uagb-how-to-steps__wrap p{margin-top:25px}
|
27 |
[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{width:auto;padding-left:0;padding-right:0;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout{display:block}[data-type="uagb/faq"] .uagb-faq-layout-grid .block-editor-inner-blocks>.block-editor-block-list__layout{display:grid}[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .block-editor-block-list__block,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__outer-wrap,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__wrapper,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-item{height:100%}
|
28 |
.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button{display:flex;align-items:center;width:100%}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content p{margin:0}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content{border-width:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content span{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-faq-content{display:block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:inline-block}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
22 |
.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-none .gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading.custom_gform_heading{display:none}.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading.custom_gform_heading,.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading{display:block}.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="radio"],.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="checkbox"]{-webkit-appearance:none}.wp-block-uagb-gf-styler input[type="radio"]{-webkit-appearance:radio}.wp-block-uagb-gf-styler input[type="checkbox"]{-webkit-appearance:checkbox}.wp-block-uagb-gf-styler input[type="checkbox"]:checked:before,.wp-block-uagb-gf-styler input[type="radio"]:checked:before{content:''}.wp-block-uagb-gf-styler input[type="radio"]:focus,.wp-block-uagb-gf-styler input[type="checkbox"]:focus,.wp-block-uagb-gf-styler input[type="radio"]:checked:focus,.wp-block-uagb-gf-styler input[type="checkbox"]:checked:focus{box-shadow:none}.wp-block-uagb-gf-styler input[type="radio"]:checked:before,.wp-block-uagb-gf-styler input[type="checkbox"]:checked:before{float:unset;display:inline}.wp-block-uagb-gf-styler input[type=number]{height:auto}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler .button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler button,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler input,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler textarea{font-size:100%;color:inherit}.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler select,.block-editor-page #wpwrap .edit-post-visual-editor .wp-block-uagb-gf-styler .gform_button.button{height:auto}
|
23 |
#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}#wpwrap .edit-post-visual-editor blockquote.uagb-blockquote{margin:0;padding:0}#wpwrap .edit-post-visual-editor .uagb-blockquote__skin-border blockquote{padding-left:10px}#wpwrap .edit-post-visual-editor .uagb-blockquote__content,#wpwrap .edit-post-visual-editor cite.uagb-blockquote__author,#wpwrap .edit-post-visual-editor .uagb-blockquote__author{font-style:normal}#wpwrap .edit-post-visual-editor .uagb-blockquote a{color:#1DA1F2;box-shadow:none;text-decoration:none}#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,#wpwrap .edit-post-visual-editor .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{color:#fff}#wpwrap .edit-post-visual-editor .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{margin:0 auto}
|
24 |
p.uagb-marketing-btn__prefix.block-editor-rich-text__editable{margin:0 !important}
|
25 |
+
.uagb-toc__list>p{font-size:13px;font-style:italic;color:#666}.block-editor-page .uagb-toc__scroll-top.dashicons{right:343px}.block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}.uagb-light-font-weight{font-weight:400}
|
26 |
.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices{background-color:#FFF8E5;border-left:5px solid #FFB901;padding:8px 10px;font-size:13px;line-height:20px;color:#32373c}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices ul{margin:0;padding-bottom:0}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices h6{margin:0;font-size:inherit;line-height:inherit}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices p{margin:0;margin-top:15px;font-size:inherit;color:#555d66}.wp-block-uagb-how-to .block-editor-button-block-appender{margin-top:0px;margin-left:20px;width:10%}.editor-styles-wrapper .uagb-howto__time-wrap h3,.editor-styles-wrapper .uagb-howto__cost-wrap h3,.editor-styles-wrapper .uagb-how-to-tools__wrap h3,.editor-styles-wrapper .uagb-how-to-steps__wrap h3{margin-bottom:20px;margin-top:20px}.editor-styles-wrapper .uagb-howto__time-wrap p,.editor-styles-wrapper .uagb-howto__cost-wrap p,.editor-styles-wrapper .uagb-how-to-tools__wrap p,.editor-styles-wrapper .uagb-how-to-steps__wrap p{margin-top:25px}
|
27 |
[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{width:auto;padding-left:0;padding-right:0;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout{display:block}[data-type="uagb/faq"] .uagb-faq-layout-grid .block-editor-inner-blocks>.block-editor-block-list__layout{display:grid}[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .block-editor-block-list__block,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__outer-wrap,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__wrapper,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-item{height:100%}
|
28 |
.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button{display:flex;align-items:center;width:100%}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content p{margin:0}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content{border-width:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content span{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-faq-content{display:block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:inline-block}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
dist/blocks.style.css
CHANGED
@@ -1,32 +1,33 @@
|
|
1 |
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
|
|
|
|
2 |
.uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
|
3 |
-
.uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
|
4 |
-
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
5 |
.uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .wp-block-button__link svg{fill:currentColor}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
|
6 |
.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
|
7 |
-
.uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__field{margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}.wp-block-uagb-content-timeline .uagb-timeline__left-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__right-block .uagb-timeline__date-new{display:none}
|
8 |
.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
|
9 |
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
10 |
-
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
|
|
|
11 |
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
12 |
.uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}
|
13 |
-
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon svg{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
|
14 |
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
|
15 |
-
.uagb-
|
|
|
16 |
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;width:100%;display:inline-block}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
|
17 |
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
18 |
-
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
19 |
-
.uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
|
20 |
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__image{margin-bottom:15px}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__inner-wrap p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__inner-wrap p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
|
21 |
-
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}.uagb-rm__tablet-column-3.uagb-rest_menu__wrap{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__tablet-column-2.uagb-rest_menu__wrap{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__tablet-column-1.uagb-rest_menu__wrap{width:100%;float:left;padding-left:10px;padding-right:10px}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
22 |
.uagb_review_block{padding:25px 40px 35px 40px;margin:30px auto}.uagb_review_block a.uagb-rating-link-wrapper{color:inherit}.uagb_review_block .uagb-rating__source-wrap{padding-top:10px;padding-bottom:10px}.uagb_review_block .uagb_review_entry{display:flex;padding:10px 0 10px 0;border-bottom:1px solid #e9e9e9}.uagb_review_block .uagb_review_summary_title{margin:23px 0 13px 0;font-size:24px;font-weight:600}.uagb_review_block .uagb_review_summary .uagb_review_overall_value{flex-basis:75%}.uagb_review_block .uagb_review_average{display:inline-flex}.uagb_review_block .uagb_review_rating{text-align:right;font-size:40px}.uagb_review_block .uagb_review_average_stars{display:flex;grid-area:auto;justify-self:self-end;height:50px;line-height:60px;margin-left:10px;margin-top:25px}
|
23 |
-
.uagb-
|
24 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
|
|
|
25 |
.wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
|
26 |
-
.uagb-tabs__wrap{display:flex;margin:15px}.uagb-tabs__wrap ul.uagb-tabs__panel{list-style-type:none;display:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab{float:left;position:relative}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left{display:inline-flex}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left .uagb-tabs__icon{margin-top:3px}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-top{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-top .uagb-tabs__icon{display:block;text-align:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-bottom{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-bottom .uagb-tabs__icon{display:block;text-align:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right{display:inline-flex}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right .uagb-tabs__icon{margin-top:3px}.uagb-tabs__wrap .uagb-tabs__body-wrap{position:relative;max-width:100%;padding:10px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tab{border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;border-bottom:1px solid #b3b6b9}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tab{margin:10px 10px -1px 0px;padding:6px 12px;border-top-left-radius:4px;border-top-right-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab{border-top-right-radius:7px;border-top-left-radius:7px;border-top-style:solid;border-left-style:solid;border-right-style:solid;margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab{border-radius:30px;border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop{flex-direction:column;border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{justify-content:space-between;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center;width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab.uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel{display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap{border:none;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel .uagb-tab{border-top-style:solid;border-left-style:solid;border-bottom-style:none;padding:6px 12px;border-top-left-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel .uagb-tab:last-child{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop{border-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{display:grid;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}@media (max-width: 1023px){.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tab{border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tab{margin:10px 10px -1px 0px;padding:6px 12px;border-top-left-radius:4px;border-top-right-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab{border-top-right-radius:7px;border-top-left-radius:7px;border-top-style:solid;border-left-style:solid;border-right-style:solid;margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab{border-radius:30px;border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet{flex-direction:column;border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{justify-content:space-between;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;width:100%;text-align:center}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab.uagb-tabs__active{border-bottom:1px solid}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel{display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap{border:none;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab{border-top-style:solid;border-left-style:solid;border-bottom-style:none;padding:6px 12px;border-top-left-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab:last-child{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet{border-style:solid;flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{display:grid;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}}@media (max-width: 767px){.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tab{border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;border-bottom:1px solid #b3b6b9}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tab{margin:10px 10px -1px 0px;padding:6px 12px;border-top-left-radius:4px;border-top-right-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab{border-top-right-radius:7px;border-top-left-radius:7px;border-top-style:solid;border-left-style:solid;border-right-style:solid;margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab{border-radius:30px;border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile{flex-direction:column;border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{justify-content:space-between;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center;width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab.uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel{display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs__body-wrap{border:none;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab{border-top-style:solid;border-left-style:solid;border-bottom-style:none;padding:6px 12px;border-top-left-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab:last-child{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile{border-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{display:grid;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile{display:grid}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 0px 10px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap{border-style:solid;max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack2-mobile{display:grid}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel{display:flex;flex-direction:column;max-width:100%;flex-grow:unset;width:100%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab{margin:0px 0px 10px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__stack2-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack3-mobile{display:grid}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;max-width:100%;flex-grow:unset;width:100%}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 0px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack3-mobile .uagb-tabs__body-wrap{border-style:solid;max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack4-mobile{display:grid;border-style:solid;margin:auto}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel{display:flex;flex-direction:column;max-width:100%;flex-grow:unset;width:100%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:0px 0px 10px 0px;text-align:center}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__stack4-mobile .uagb-tabs__body-wrap{max-width:100%}}
|
27 |
-
.uagb-tabs__body{cursor:pointer;padding:10px 15px;display:none}
|
28 |
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
|
29 |
-
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
|
|
|
|
30 |
.uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
|
|
|
31 |
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
32 |
-
.uagb-tax-not-available{border:1px solid;padding:10px;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}
|
|
|
|
1 |
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
2 |
+
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
3 |
+
.uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
|
4 |
.uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
|
|
|
|
|
5 |
.uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .wp-block-button__link svg{fill:currentColor}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
|
6 |
.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
|
|
|
7 |
.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
|
8 |
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
9 |
+
.uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
|
10 |
+
@media (min-width: 1025px){.entry-content .uag-hide-desktop.uagb-google-map__wrap,.entry-content .uag-hide-desktop{display:none}}@media (min-width: 768px) and (max-width: 1024px){.entry-content .uag-hide-tab.uagb-google-map__wrap,.entry-content .uag-hide-tab{display:none}}@media (max-width: 767px){.entry-content .uag-hide-mob.uagb-google-map__wrap,.entry-content .uag-hide-mob{display:none}}
|
11 |
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
12 |
.uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}
|
|
|
13 |
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
|
14 |
+
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon svg{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
|
15 |
+
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
16 |
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;width:100%;display:inline-block}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
|
17 |
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
|
|
|
|
18 |
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__image{margin-bottom:15px}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__inner-wrap p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__inner-wrap p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
|
|
|
19 |
.uagb_review_block{padding:25px 40px 35px 40px;margin:30px auto}.uagb_review_block a.uagb-rating-link-wrapper{color:inherit}.uagb_review_block .uagb-rating__source-wrap{padding-top:10px;padding-bottom:10px}.uagb_review_block .uagb_review_entry{display:flex;padding:10px 0 10px 0;border-bottom:1px solid #e9e9e9}.uagb_review_block .uagb_review_summary_title{margin:23px 0 13px 0;font-size:24px;font-weight:600}.uagb_review_block .uagb_review_summary .uagb_review_overall_value{flex-basis:75%}.uagb_review_block .uagb_review_average{display:inline-flex}.uagb_review_block .uagb_review_rating{text-align:right;font-size:40px}.uagb_review_block .uagb_review_average_stars{display:flex;grid-area:auto;justify-self:self-end;height:50px;line-height:60px;margin-left:10px;margin-top:25px}
|
20 |
+
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}.uagb-rm__tablet-column-3.uagb-rest_menu__wrap{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__tablet-column-2.uagb-rest_menu__wrap{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__tablet-column-1.uagb-rest_menu__wrap{width:100%;float:left;padding-left:10px;padding-right:10px}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
21 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
|
22 |
+
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
|
23 |
.wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
|
|
|
|
|
24 |
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:1.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents .uagb-toc__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list .uagb-toc__list{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
|
25 |
+
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
|
26 |
+
.uagb-tabs__body{cursor:pointer;padding:10px 15px;display:none}
|
27 |
+
.uagb-tax-not-available{border:1px solid;padding:10px;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}
|
28 |
.uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
|
29 |
+
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
30 |
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
31 |
+
.uagb-tabs__wrap{display:flex;margin:15px}.uagb-tabs__wrap ul.uagb-tabs__panel{list-style-type:none;display:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab{float:left;position:relative}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left{display:inline-flex}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left .uagb-tabs__icon{margin-top:3px}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-top{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-top .uagb-tabs__icon{display:block;text-align:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-bottom{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-bottom .uagb-tabs__icon{display:block;text-align:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right{display:inline-flex}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right .uagb-tabs__icon{margin-top:3px}.uagb-tabs__wrap .uagb-tabs__body-wrap{position:relative;max-width:100%;padding:10px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tab{border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;border-bottom:1px solid #b3b6b9}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tab{margin:10px 10px -1px 0px;padding:6px 12px;border-top-left-radius:4px;border-top-right-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab{border-top-right-radius:7px;border-top-left-radius:7px;border-top-style:solid;border-left-style:solid;border-right-style:solid;margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab{border-radius:30px;border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop{flex-direction:column;border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{justify-content:space-between;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center;width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab.uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel{display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap{border:none;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel .uagb-tab{border-top-style:solid;border-left-style:solid;border-bottom-style:none;padding:6px 12px;border-top-left-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel .uagb-tab:last-child{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop{border-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{display:grid;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}@media (max-width: 1023px){.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tab{border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tab{margin:10px 10px -1px 0px;padding:6px 12px;border-top-left-radius:4px;border-top-right-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab{border-top-right-radius:7px;border-top-left-radius:7px;border-top-style:solid;border-left-style:solid;border-right-style:solid;margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab{border-radius:30px;border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet{flex-direction:column;border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{justify-content:space-between;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;width:100%;text-align:center}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab.uagb-tabs__active{border-bottom:1px solid}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel{display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap{border:none;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab{border-top-style:solid;border-left-style:solid;border-bottom-style:none;padding:6px 12px;border-top-left-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab:last-child{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet{border-style:solid;flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{display:grid;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}}@media (max-width: 767px){.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tab{border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;border-bottom:1px solid #b3b6b9}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tab{margin:10px 10px -1px 0px;padding:6px 12px;border-top-left-radius:4px;border-top-right-radius:4px}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab{border-top-right-radius:7px;border-top-left-radius:7px;border-top-style:solid;border-left-style:solid;border-right-style:solid;margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile ul.uagb-tabs__panel{margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab{border-radius:30px;border-style:solid;margin:10px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tabs__body-wrap{border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile{flex-direction:column;border-style:solid}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{justify-content:space-between;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center;width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab.uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px;border-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel{display:flex;flex-direction:column;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs__body-wrap{border:none;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab{border-top-style:solid;border-left-style:solid;border-bottom-style:none;padding:6px 12px;border-top-left-radius:4px}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab:last-child{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile{flex-direction:row;display:flex}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:grid;flex-grow:1;min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 10px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs__body-wrap{border-style:solid;flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile{border-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{display:grid;flex-grow:1;min-width:25%;max-width:25%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile{display:grid}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab{border-style:solid;margin:0px 0px 10px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap{border-style:solid;max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack2-mobile{display:grid}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel{display:flex;flex-direction:column;max-width:100%;flex-grow:unset;width:100%;margin:0px;padding:0px;border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab{margin:0px 0px 10px 0px;padding:6px 12px}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tabs__active{border-bottom-style:solid}.uagb-tabs__wrap.uagb-tabs__stack2-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack3-mobile{display:grid}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel{margin:0px;padding:0px;display:flex;flex-direction:column;max-width:100%;flex-grow:unset;width:100%}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab{border-radius:30px;border-style:solid;margin:0px 0px 10px 0px;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack3-mobile .uagb-tabs__body-wrap{border-style:solid;max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack4-mobile{display:grid;border-style:solid;margin:auto}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel{display:flex;flex-direction:column;max-width:100%;flex-grow:unset;width:100%;margin:0px;padding:0px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{padding:6px 12px;margin:0px 0px 10px 0px;text-align:center}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active{border-right-style:solid}.uagb-tabs__wrap.uagb-tabs__stack4-mobile .uagb-tabs__body-wrap{max-width:100%}}
|
32 |
+
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
|
33 |
+
.uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__field{margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}.wp-block-uagb-content-timeline .uagb-timeline__left-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__right-block .uagb-timeline__date-new{display:none}
|
dist/blocks/post/class-uagb-post.php
CHANGED
@@ -153,6 +153,10 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
153 |
array( 'uagb/post-button' ),
|
154 |
),
|
155 |
),
|
|
|
|
|
|
|
|
|
156 |
)
|
157 |
),
|
158 |
'render_callback' => array( $this, 'post_grid_callback' ),
|
@@ -219,6 +223,10 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
219 |
array( 'uagb/post-button' ),
|
220 |
),
|
221 |
),
|
|
|
|
|
|
|
|
|
222 |
)
|
223 |
),
|
224 |
'render_callback' => array( $this, 'post_carousel_callback' ),
|
@@ -327,6 +335,10 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
327 |
array( 'uagb/post-button' ),
|
328 |
),
|
329 |
),
|
|
|
|
|
|
|
|
|
330 |
)
|
331 |
),
|
332 |
'render_callback' => array( $this, 'post_masonry_callback' ),
|
153 |
array( 'uagb/post-button' ),
|
154 |
),
|
155 |
),
|
156 |
+
'post_type' => array(
|
157 |
+
'type' => 'string',
|
158 |
+
'default' => 'grid',
|
159 |
+
),
|
160 |
)
|
161 |
),
|
162 |
'render_callback' => array( $this, 'post_grid_callback' ),
|
223 |
array( 'uagb/post-button' ),
|
224 |
),
|
225 |
),
|
226 |
+
'post_type' => array(
|
227 |
+
'type' => 'string',
|
228 |
+
'default' => 'carousel',
|
229 |
+
),
|
230 |
)
|
231 |
),
|
232 |
'render_callback' => array( $this, 'post_carousel_callback' ),
|
335 |
array( 'uagb/post-button' ),
|
336 |
),
|
337 |
),
|
338 |
+
'post_type' => array(
|
339 |
+
'type' => 'string',
|
340 |
+
'default' => 'masonry',
|
341 |
+
),
|
342 |
)
|
343 |
),
|
344 |
'render_callback' => array( $this, 'post_masonry_callback' ),
|
languages/ultimate-addons-for-gutenberg.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Ultimate Addons for Gutenberg plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ultimate Addons for Gutenberg 1.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2021-03-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0-alpha-59d879d\n"
|
15 |
"X-Domain: ultimate-addons-for-gutenberg\n"
|
@@ -335,7 +335,7 @@ msgid "This block allows you to display your Blockquote."
|
|
335 |
msgstr ""
|
336 |
|
337 |
#: classes/class-uagb-config.php:350
|
338 |
-
#: dist/blocks.build.js:
|
339 |
msgid "Call To Action"
|
340 |
msgstr ""
|
341 |
|
@@ -352,8 +352,8 @@ msgid "This block allows you to add and style your Contact Form 7 forms right in
|
|
352 |
msgstr ""
|
353 |
|
354 |
#: classes/class-uagb-config.php:560
|
355 |
-
#: dist/blocks.build.js:
|
356 |
-
#: dist/blocks.build.js:
|
357 |
msgid "Content Timeline"
|
358 |
msgstr ""
|
359 |
|
@@ -412,7 +412,7 @@ msgstr ""
|
|
412 |
|
413 |
#: classes/class-uagb-config.php:1011
|
414 |
#: classes/class-uagb-config.php:1065
|
415 |
-
#: classes/class-uagb-config.php:
|
416 |
msgid "This block allows you to place an image or icon in a list format."
|
417 |
msgstr ""
|
418 |
|
@@ -421,23 +421,23 @@ msgid "Label #1"
|
|
421 |
msgstr ""
|
422 |
|
423 |
#: classes/class-uagb-config.php:1064
|
424 |
-
#: dist/blocks.build.js:
|
425 |
-
#: dist/blocks.build.js:
|
426 |
-
#: dist/blocks.build.js:
|
427 |
-
#: dist/blocks.build.js:
|
428 |
-
#: dist/blocks.build.js:
|
429 |
-
#: dist/blocks.build.js:
|
430 |
-
#: dist/blocks.build.js:
|
431 |
-
#: dist/blocks.build.js:
|
432 |
-
#: dist/blocks.build.js:
|
433 |
-
#: dist/blocks.build.js:
|
434 |
-
#: dist/blocks.build.js:
|
435 |
-
#: dist/blocks.build.js:
|
436 |
-
#: dist/blocks.build.js:
|
437 |
-
#: dist/blocks.build.js:
|
438 |
-
#: dist/blocks.build.js:
|
439 |
-
#: dist/blocks.build.js:
|
440 |
-
#: dist/blocks.build.js:
|
441 |
msgid "Icon"
|
442 |
msgstr ""
|
443 |
|
@@ -474,11 +474,11 @@ msgid "This block allows you to add multiple buttons with a single block."
|
|
474 |
msgstr ""
|
475 |
|
476 |
#: classes/class-uagb-config.php:1336
|
477 |
-
#: dist/blocks.build.js:
|
478 |
-
#: dist/blocks.build.js:
|
479 |
-
#: dist/blocks.build.js:
|
480 |
-
#: dist/blocks.build.js:
|
481 |
-
#: dist/blocks.build.js:
|
482 |
msgid "Button"
|
483 |
msgstr ""
|
484 |
|
@@ -494,193 +494,193 @@ msgstr ""
|
|
494 |
msgid "This block fetches the blog posts you may have on your website and displays them in a carousel layout."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: classes/class-uagb-config.php:
|
498 |
-
#: classes/class-uagb-config.php:
|
499 |
-
#: classes/class-uagb-config.php:
|
500 |
#: dist/blocks/post-timeline/class-uagb-post-timeline.php:447
|
501 |
-
#: dist/blocks/post/class-uagb-post.php:
|
502 |
-
#: dist/blocks/post/class-uagb-post.php:
|
503 |
msgid "Read More"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: classes/class-uagb-config.php:
|
507 |
msgid "Post Grid"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: classes/class-uagb-config.php:
|
511 |
msgid "This block fetches the blog posts you may have on your website and displays them in a grid layout."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: classes/class-uagb-config.php:
|
515 |
msgid "Post Masonry"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: classes/class-uagb-config.php:
|
519 |
msgid "This block fetches the blog posts you may have on your website and displays them in a masonry layout."
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: classes/class-uagb-config.php:
|
523 |
msgid "Post Title"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: classes/class-uagb-config.php:
|
527 |
msgid "This block fetches the blog title."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: classes/class-uagb-config.php:
|
531 |
msgid "Post Button"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: classes/class-uagb-config.php:
|
535 |
msgid "This block display's a call to action button which links to the blogs page."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: classes/class-uagb-config.php:
|
539 |
msgid "Post Excerpt"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: classes/class-uagb-config.php:
|
543 |
msgid "This block fetches short description about a post."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: classes/class-uagb-config.php:
|
547 |
msgid "Post Meta"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: classes/class-uagb-config.php:
|
551 |
msgid "This block fetches post comments, author, publish date and categories data."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: classes/class-uagb-config.php:
|
555 |
msgid "Post Image"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: classes/class-uagb-config.php:
|
559 |
msgid "This block fetches posts feature image."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: classes/class-uagb-config.php:
|
563 |
msgid "Post Timeline"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: classes/class-uagb-config.php:
|
567 |
msgid "The Timeline block lets you create beautiful timelines of Posts on your website."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: classes/class-uagb-config.php:
|
571 |
msgid "Price List"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: classes/class-uagb-config.php:
|
575 |
-
#: classes/class-uagb-config.php:
|
576 |
msgid "This block allows you to add attractive Price List."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: classes/class-uagb-config.php:
|
580 |
msgid "Review Schema"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: classes/class-uagb-config.php:
|
584 |
msgid "This block helps you to add a review for various items with schema support."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: classes/class-uagb-config.php:
|
588 |
msgid "Price List-Child"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: classes/class-uagb-config.php:
|
592 |
msgid "Section"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: classes/class-uagb-config.php:
|
596 |
msgid "This block is an outer wrap section that allows you to add other blocks within it."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: classes/class-uagb-config.php:
|
600 |
msgid "Social Share"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: classes/class-uagb-config.php:
|
604 |
msgid "This block allows you to let users share your content across various social networking sites."
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: classes/class-uagb-config.php:
|
608 |
msgid "Social Share Child"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: classes/class-uagb-config.php:
|
612 |
msgid "Tabs"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: classes/class-uagb-config.php:
|
616 |
-
#: classes/class-uagb-config.php:
|
617 |
msgid "This block allows you to display your content in tabs layout."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: classes/class-uagb-config.php:
|
621 |
msgid "Tabs child"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: classes/class-uagb-config.php:
|
625 |
msgid "Table of Contents"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: classes/class-uagb-config.php:
|
629 |
msgid "This block allows you to place a Table of Contents for Pages/Posts."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: classes/class-uagb-config.php:
|
633 |
msgid "Team"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: classes/class-uagb-config.php:
|
637 |
msgid "This block allows you to display your team. Add their picture, name, what they do and links to their social profiles."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: classes/class-uagb-config.php:
|
641 |
-
#: dist/blocks.build.js:
|
642 |
msgid "Testimonial"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: classes/class-uagb-config.php:
|
646 |
msgid "This block helps your display some amazing client feedback within your website."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: classes/class-uagb-config.php:
|
650 |
msgid "WP - Search"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: classes/class-uagb-config.php:
|
654 |
msgid "This block helps you add a Search field."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: classes/class-uagb-config.php:
|
658 |
msgid "Taxonomy List"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: classes/class-uagb-config.php:
|
662 |
msgid "This block helps you to display content categorization for various post types"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: classes/class-uagb-config.php:
|
666 |
#: dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php:113
|
667 |
msgid "Taxonomy Not Available."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: classes/class-uagb-config.php:
|
671 |
msgid "Condition Block"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: classes/class-uagb-config.php:
|
675 |
msgid "This block helps you add a Condition field in the Advanced Tab."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: classes/class-uagb-config.php:
|
679 |
-
#: dist/blocks.build.js:
|
680 |
msgid "Lottie"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: classes/class-uagb-config.php:
|
684 |
msgid "This block helps you add Lottie animation and customize it as required."
|
685 |
msgstr ""
|
686 |
|
@@ -703,59 +703,59 @@ msgstr ""
|
|
703 |
#: classes/class-uagb-init-blocks.php:513
|
704 |
#: dist/blocks.build.js:25852
|
705 |
#: dist/blocks.build.js:62582
|
706 |
-
#: dist/blocks.build.js:
|
707 |
-
#: dist/blocks.build.js:
|
708 |
-
#: dist/blocks.build.js:
|
709 |
-
#: dist/blocks.build.js:
|
710 |
-
#: dist/blocks.build.js:
|
711 |
-
#: dist/blocks.build.js:
|
712 |
-
#: dist/blocks.build.js:
|
713 |
-
#: dist/blocks.build.js:
|
714 |
-
#: dist/blocks.build.js:
|
715 |
-
#: dist/blocks.build.js:
|
716 |
-
#: dist/blocks.build.js:
|
717 |
-
#: dist/blocks.build.js:
|
718 |
-
#: dist/blocks.build.js:
|
719 |
-
#: dist/blocks.build.js:
|
720 |
-
#: dist/blocks.build.js:
|
721 |
-
#: dist/blocks.build.js:
|
722 |
-
#: dist/blocks.build.js:
|
723 |
-
#: dist/blocks.build.js:
|
724 |
-
#: dist/blocks.build.js:
|
725 |
-
#: dist/blocks.build.js:
|
726 |
-
#: dist/blocks.build.js:
|
727 |
-
#: dist/blocks.build.js:
|
728 |
-
#: dist/blocks.build.js:
|
729 |
-
#: dist/blocks.build.js:
|
730 |
-
#: dist/blocks.build.js:
|
731 |
-
#: dist/blocks.build.js:
|
732 |
-
#: dist/blocks.build.js:
|
733 |
-
#: dist/blocks.build.js:
|
734 |
-
#: dist/blocks.build.js:
|
735 |
-
#: dist/blocks.build.js:
|
736 |
-
#: dist/blocks.build.js:
|
737 |
-
#: dist/blocks.build.js:
|
738 |
-
#: dist/blocks.build.js:
|
739 |
-
#: dist/blocks.build.js:
|
740 |
-
#: dist/blocks.build.js:
|
741 |
-
#: dist/blocks.build.js:
|
742 |
-
#: dist/blocks.build.js:
|
743 |
-
#: dist/blocks.build.js:
|
744 |
-
#: dist/blocks.build.js:
|
745 |
-
#: dist/blocks.build.js:
|
746 |
-
#: dist/blocks.build.js:
|
747 |
-
#: dist/blocks.build.js:
|
748 |
-
#: dist/blocks.build.js:
|
749 |
-
#: dist/blocks.build.js:
|
750 |
-
#: dist/blocks.build.js:
|
751 |
-
#: dist/blocks.build.js:
|
752 |
msgid "None"
|
753 |
msgstr ""
|
754 |
|
755 |
#: classes/class-uagb-init-blocks.php:542
|
756 |
#: classes/class-uagb-init-blocks.php:575
|
757 |
-
#: dist/blocks.build.js:
|
758 |
-
#: dist/blocks.build.js:
|
759 |
msgid "Select Form"
|
760 |
msgstr ""
|
761 |
|
@@ -811,9 +811,9 @@ msgstr ""
|
|
811 |
#: dist/blocks.build.js:706
|
812 |
#: dist/blocks.build.js:707
|
813 |
#: dist/blocks.build.js:708
|
814 |
-
#: dist/blocks.build.js:
|
815 |
-
#: dist/blocks.build.js:
|
816 |
-
#: dist/blocks.build.js:
|
817 |
msgid "Line Height"
|
818 |
msgstr ""
|
819 |
|
@@ -824,50 +824,50 @@ msgid "Font Size"
|
|
824 |
msgstr ""
|
825 |
|
826 |
#: dist/blocks.build.js:4199
|
827 |
-
#: dist/blocks.build.js:
|
828 |
-
#: dist/blocks.build.js:
|
829 |
-
#: dist/blocks.build.js:
|
830 |
-
#: dist/blocks.build.js:
|
831 |
-
#: dist/blocks.build.js:
|
832 |
-
#: dist/blocks.build.js:
|
833 |
-
#: dist/blocks.build.js:
|
834 |
-
#: dist/blocks.build.js:
|
835 |
-
#: dist/blocks.build.js:
|
836 |
-
#: dist/blocks.build.js:
|
837 |
-
#: dist/blocks.build.js:
|
838 |
-
#: dist/blocks.build.js:
|
839 |
-
#: dist/blocks.build.js:
|
840 |
msgid "Inset"
|
841 |
msgstr ""
|
842 |
|
843 |
#: dist/blocks.build.js:4199
|
844 |
-
#: dist/blocks.build.js:
|
845 |
-
#: dist/blocks.build.js:
|
846 |
-
#: dist/blocks.build.js:
|
847 |
-
#: dist/blocks.build.js:
|
848 |
-
#: dist/blocks.build.js:
|
849 |
-
#: dist/blocks.build.js:
|
850 |
-
#: dist/blocks.build.js:
|
851 |
-
#: dist/blocks.build.js:
|
852 |
-
#: dist/blocks.build.js:
|
853 |
-
#: dist/blocks.build.js:
|
854 |
-
#: dist/blocks.build.js:
|
855 |
-
#: dist/blocks.build.js:
|
856 |
-
#: dist/blocks.build.js:
|
857 |
msgid "Outset"
|
858 |
msgstr ""
|
859 |
|
860 |
#: dist/blocks.build.js:6991
|
861 |
-
#: dist/blocks.build.js:
|
862 |
-
#: dist/blocks.build.js:
|
863 |
-
#: dist/blocks.build.js:
|
864 |
-
#: dist/blocks.build.js:
|
865 |
-
#: dist/blocks.build.js:
|
866 |
-
#: dist/blocks.build.js:
|
867 |
-
#: dist/blocks.build.js:
|
868 |
-
#: dist/blocks.build.js:
|
869 |
-
#: dist/blocks.build.js:
|
870 |
-
#: dist/blocks.build.js:
|
871 |
msgid "Color Settings"
|
872 |
msgstr ""
|
873 |
|
@@ -892,8 +892,8 @@ msgid "Write a Quote"
|
|
892 |
msgstr ""
|
893 |
|
894 |
#: dist/blocks.build.js:8799
|
895 |
-
#: dist/blocks.build.js:
|
896 |
-
#: dist/blocks.build.js:
|
897 |
msgid "Author"
|
898 |
msgstr ""
|
899 |
|
@@ -928,7 +928,7 @@ msgid "Steps to configure the How-to Schema:"
|
|
928 |
msgstr ""
|
929 |
|
930 |
#: dist/blocks.build.js:23885
|
931 |
-
#: dist/blocks.build.js:
|
932 |
msgid "Total Cost:"
|
933 |
msgstr ""
|
934 |
|
@@ -982,35 +982,35 @@ msgstr ""
|
|
982 |
|
983 |
#: dist/blocks.build.js:25446
|
984 |
#: dist/blocks.build.js:61362
|
985 |
-
#: dist/blocks.build.js:
|
986 |
-
#: dist/blocks.build.js:
|
987 |
-
#: dist/blocks.build.js:
|
988 |
-
#: dist/blocks.build.js:
|
989 |
-
#: dist/blocks.build.js:
|
990 |
-
#: dist/blocks.build.js:
|
991 |
-
#: dist/blocks.build.js:
|
992 |
-
#: dist/blocks.build.js:
|
993 |
-
#: dist/blocks.build.js:
|
994 |
-
#: dist/blocks.build.js:
|
995 |
-
#: dist/blocks.build.js:
|
996 |
-
#: dist/blocks.build.js:
|
997 |
-
#: dist/blocks.build.js:
|
998 |
-
#: dist/blocks.build.js:
|
999 |
-
#: dist/blocks.build.js:
|
1000 |
-
#: dist/blocks.build.js:
|
1001 |
-
#: dist/blocks.build.js:
|
1002 |
-
#: dist/blocks.build.js:
|
1003 |
-
#: dist/blocks.build.js:
|
1004 |
-
#: dist/blocks.build.js:
|
1005 |
-
#: dist/blocks.build.js:
|
1006 |
-
#: dist/blocks.build.js:
|
1007 |
-
#: dist/blocks.build.js:
|
1008 |
-
#: dist/blocks.build.js:
|
1009 |
-
#: dist/blocks.build.js:
|
1010 |
-
#: dist/blocks.build.js:
|
1011 |
-
#: dist/blocks.build.js:
|
1012 |
-
#: dist/blocks.build.js:
|
1013 |
-
#: dist/blocks.build.js:
|
1014 |
msgid "uag"
|
1015 |
msgstr ""
|
1016 |
|
@@ -1020,120 +1020,120 @@ msgstr ""
|
|
1020 |
|
1021 |
#: dist/blocks.build.js:25452
|
1022 |
#: dist/blocks.build.js:25958
|
1023 |
-
#: dist/blocks.build.js:
|
1024 |
msgid "Write a Heading"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: dist/blocks.build.js:25453
|
1028 |
#: dist/blocks.build.js:25985
|
1029 |
-
#: dist/blocks.build.js:
|
1030 |
-
#: dist/blocks.build.js:
|
1031 |
-
#: dist/blocks.build.js:
|
1032 |
msgid "Write a Description"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: dist/blocks.build.js:25758
|
1036 |
-
#: dist/blocks.build.js:
|
1037 |
-
#: dist/blocks.build.js:
|
1038 |
-
#: dist/blocks.build.js:
|
1039 |
-
#: dist/blocks.build.js:
|
1040 |
-
#: dist/blocks.build.js:
|
1041 |
-
#: dist/blocks.build.js:
|
1042 |
msgid "Heading"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
#: dist/blocks.build.js:25761
|
1046 |
-
#: dist/blocks.build.js:
|
1047 |
msgid "Heading Tag"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: dist/blocks.build.js:25766
|
1051 |
#: dist/blocks.build.js:62682
|
1052 |
-
#: dist/blocks.build.js:
|
1053 |
-
#: dist/blocks.build.js:
|
1054 |
-
#: dist/blocks.build.js:
|
1055 |
-
#: dist/blocks.build.js:
|
1056 |
-
#: dist/blocks.build.js:
|
1057 |
-
#: dist/blocks.build.js:
|
1058 |
-
#: dist/blocks.build.js:
|
1059 |
-
#: dist/blocks.build.js:
|
1060 |
-
#: dist/blocks.build.js:
|
1061 |
-
#: dist/blocks.build.js:
|
1062 |
msgid "H1"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: dist/blocks.build.js:25766
|
1066 |
#: dist/blocks.build.js:62682
|
1067 |
-
#: dist/blocks.build.js:
|
1068 |
-
#: dist/blocks.build.js:
|
1069 |
-
#: dist/blocks.build.js:
|
1070 |
-
#: dist/blocks.build.js:
|
1071 |
-
#: dist/blocks.build.js:
|
1072 |
-
#: dist/blocks.build.js:
|
1073 |
-
#: dist/blocks.build.js:
|
1074 |
-
#: dist/blocks.build.js:
|
1075 |
-
#: dist/blocks.build.js:
|
1076 |
-
#: dist/blocks.build.js:
|
1077 |
msgid "H2"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: dist/blocks.build.js:25766
|
1081 |
#: dist/blocks.build.js:62682
|
1082 |
-
#: dist/blocks.build.js:
|
1083 |
-
#: dist/blocks.build.js:
|
1084 |
-
#: dist/blocks.build.js:
|
1085 |
-
#: dist/blocks.build.js:
|
1086 |
-
#: dist/blocks.build.js:
|
1087 |
-
#: dist/blocks.build.js:
|
1088 |
-
#: dist/blocks.build.js:
|
1089 |
-
#: dist/blocks.build.js:
|
1090 |
-
#: dist/blocks.build.js:
|
1091 |
-
#: dist/blocks.build.js:
|
1092 |
msgid "H3"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: dist/blocks.build.js:25766
|
1096 |
#: dist/blocks.build.js:62682
|
1097 |
-
#: dist/blocks.build.js:
|
1098 |
-
#: dist/blocks.build.js:
|
1099 |
-
#: dist/blocks.build.js:
|
1100 |
-
#: dist/blocks.build.js:
|
1101 |
-
#: dist/blocks.build.js:
|
1102 |
-
#: dist/blocks.build.js:
|
1103 |
-
#: dist/blocks.build.js:
|
1104 |
-
#: dist/blocks.build.js:
|
1105 |
-
#: dist/blocks.build.js:
|
1106 |
-
#: dist/blocks.build.js:
|
1107 |
msgid "H4"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: dist/blocks.build.js:25766
|
1111 |
#: dist/blocks.build.js:62682
|
1112 |
-
#: dist/blocks.build.js:
|
1113 |
-
#: dist/blocks.build.js:
|
1114 |
-
#: dist/blocks.build.js:
|
1115 |
-
#: dist/blocks.build.js:
|
1116 |
-
#: dist/blocks.build.js:
|
1117 |
-
#: dist/blocks.build.js:
|
1118 |
-
#: dist/blocks.build.js:
|
1119 |
-
#: dist/blocks.build.js:
|
1120 |
-
#: dist/blocks.build.js:
|
1121 |
-
#: dist/blocks.build.js:
|
1122 |
msgid "H5"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: dist/blocks.build.js:25766
|
1126 |
#: dist/blocks.build.js:62682
|
1127 |
-
#: dist/blocks.build.js:
|
1128 |
-
#: dist/blocks.build.js:
|
1129 |
-
#: dist/blocks.build.js:
|
1130 |
-
#: dist/blocks.build.js:
|
1131 |
-
#: dist/blocks.build.js:
|
1132 |
-
#: dist/blocks.build.js:
|
1133 |
-
#: dist/blocks.build.js:
|
1134 |
-
#: dist/blocks.build.js:
|
1135 |
-
#: dist/blocks.build.js:
|
1136 |
-
#: dist/blocks.build.js:
|
1137 |
msgid "H6"
|
1138 |
msgstr ""
|
1139 |
|
@@ -1144,77 +1144,77 @@ msgstr ""
|
|
1144 |
#: dist/blocks.build.js:62688
|
1145 |
#: dist/blocks.build.js:62714
|
1146 |
#: dist/blocks.build.js:62741
|
1147 |
-
#: dist/blocks.build.js:
|
1148 |
-
#: dist/blocks.build.js:
|
1149 |
-
#: dist/blocks.build.js:
|
1150 |
-
#: dist/blocks.build.js:
|
1151 |
-
#: dist/blocks.build.js:
|
1152 |
-
#: dist/blocks.build.js:
|
1153 |
-
#: dist/blocks.build.js:
|
1154 |
-
#: dist/blocks.build.js:
|
1155 |
-
#: dist/blocks.build.js:
|
1156 |
-
#: dist/blocks.build.js:
|
1157 |
-
#: dist/blocks.build.js:
|
1158 |
-
#: dist/blocks.build.js:84132
|
1159 |
#: dist/blocks.build.js:84146
|
1160 |
-
#: dist/blocks.build.js:
|
1161 |
-
#: dist/blocks.build.js:
|
1162 |
-
#: dist/blocks.build.js:
|
1163 |
-
#: dist/blocks.build.js:
|
1164 |
-
#: dist/blocks.build.js:
|
1165 |
-
#: dist/blocks.build.js:
|
1166 |
-
#: dist/blocks.build.js:
|
1167 |
-
#: dist/blocks.build.js:
|
1168 |
-
#: dist/blocks.build.js:
|
1169 |
-
#: dist/blocks.build.js:
|
1170 |
-
#: dist/blocks.build.js:
|
1171 |
-
#: dist/blocks.build.js:
|
1172 |
-
#: dist/blocks.build.js:
|
1173 |
-
#: dist/blocks.build.js:
|
1174 |
-
#: dist/blocks.build.js:
|
1175 |
-
#: dist/blocks.build.js:
|
1176 |
-
#: dist/blocks.build.js:
|
1177 |
-
#: dist/blocks.build.js:
|
1178 |
-
#: dist/blocks.build.js:
|
1179 |
-
#: dist/blocks.build.js:
|
1180 |
-
#: dist/blocks.build.js:
|
1181 |
-
#: dist/blocks.build.js:
|
1182 |
-
#: dist/blocks.build.js:
|
1183 |
-
#: dist/blocks.build.js:
|
1184 |
-
#: dist/blocks.build.js:
|
1185 |
-
#: dist/blocks.build.js:
|
1186 |
-
#: dist/blocks.build.js:
|
1187 |
-
#: dist/blocks.build.js:
|
1188 |
-
#: dist/blocks.build.js:
|
1189 |
-
#: dist/blocks.build.js:
|
1190 |
-
#: dist/blocks.build.js:
|
1191 |
-
#: dist/blocks.build.js:
|
1192 |
-
#: dist/blocks.build.js:
|
1193 |
-
#: dist/blocks.build.js:
|
1194 |
-
#: dist/blocks.build.js:
|
1195 |
-
#: dist/blocks.build.js:
|
1196 |
-
#: dist/blocks.build.js:
|
1197 |
-
#: dist/blocks.build.js:
|
1198 |
-
#: dist/blocks.build.js:
|
1199 |
-
#: dist/blocks.build.js:
|
1200 |
-
#: dist/blocks.build.js:
|
1201 |
-
#: dist/blocks.build.js:
|
1202 |
-
#: dist/blocks.build.js:
|
1203 |
-
#: dist/blocks.build.js:
|
1204 |
-
#: dist/blocks.build.js:
|
1205 |
-
#: dist/blocks.build.js:
|
1206 |
-
#: dist/blocks.build.js:
|
1207 |
-
#: dist/blocks.build.js:
|
1208 |
-
#: dist/blocks.build.js:
|
1209 |
-
#: dist/blocks.build.js:
|
1210 |
-
#: dist/blocks.build.js:
|
|
|
1211 |
msgid "Typography"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: dist/blocks.build.js:25788
|
1215 |
-
#: dist/blocks.build.js:
|
1216 |
-
#: dist/blocks.build.js:
|
1217 |
-
#: dist/blocks.build.js:
|
1218 |
msgid "Heading Color"
|
1219 |
msgstr ""
|
1220 |
|
@@ -1227,259 +1227,259 @@ msgid "Sub Heading Color"
|
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: dist/blocks.build.js:25845
|
1230 |
-
#: dist/blocks.build.js:
|
1231 |
msgid "Separator"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: dist/blocks.build.js:25847
|
1235 |
#: dist/blocks.build.js:62577
|
1236 |
-
#: dist/blocks.build.js:
|
1237 |
-
#: dist/blocks.build.js:
|
1238 |
-
#: dist/blocks.build.js:
|
1239 |
-
#: dist/blocks.build.js:
|
1240 |
-
#: dist/blocks.build.js:
|
1241 |
-
#: dist/blocks.build.js:
|
1242 |
-
#: dist/blocks.build.js:
|
1243 |
-
#: dist/blocks.build.js:
|
1244 |
-
#: dist/blocks.build.js:
|
1245 |
-
#: dist/blocks.build.js:
|
1246 |
-
#: dist/blocks.build.js:
|
1247 |
-
#: dist/blocks.build.js:
|
1248 |
msgid "Style"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
#: dist/blocks.build.js:25852
|
1252 |
#: dist/blocks.build.js:62582
|
1253 |
-
#: dist/blocks.build.js:
|
1254 |
-
#: dist/blocks.build.js:
|
1255 |
-
#: dist/blocks.build.js:
|
1256 |
-
#: dist/blocks.build.js:
|
1257 |
-
#: dist/blocks.build.js:
|
1258 |
-
#: dist/blocks.build.js:
|
1259 |
-
#: dist/blocks.build.js:
|
1260 |
-
#: dist/blocks.build.js:
|
1261 |
-
#: dist/blocks.build.js:
|
1262 |
-
#: dist/blocks.build.js:
|
1263 |
-
#: dist/blocks.build.js:
|
1264 |
-
#: dist/blocks.build.js:
|
1265 |
-
#: dist/blocks.build.js:
|
1266 |
-
#: dist/blocks.build.js:
|
1267 |
-
#: dist/blocks.build.js:
|
1268 |
-
#: dist/blocks.build.js:
|
1269 |
-
#: dist/blocks.build.js:
|
1270 |
-
#: dist/blocks.build.js:
|
1271 |
-
#: dist/blocks.build.js:
|
1272 |
-
#: dist/blocks.build.js:
|
1273 |
-
#: dist/blocks.build.js:
|
1274 |
-
#: dist/blocks.build.js:
|
1275 |
msgid "Solid"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: dist/blocks.build.js:25852
|
1279 |
#: dist/blocks.build.js:62582
|
1280 |
-
#: dist/blocks.build.js:
|
1281 |
-
#: dist/blocks.build.js:
|
1282 |
-
#: dist/blocks.build.js:
|
1283 |
-
#: dist/blocks.build.js:
|
1284 |
-
#: dist/blocks.build.js:
|
1285 |
-
#: dist/blocks.build.js:
|
1286 |
-
#: dist/blocks.build.js:
|
1287 |
-
#: dist/blocks.build.js:
|
1288 |
-
#: dist/blocks.build.js:
|
1289 |
-
#: dist/blocks.build.js:
|
1290 |
-
#: dist/blocks.build.js:
|
1291 |
-
#: dist/blocks.build.js:
|
1292 |
-
#: dist/blocks.build.js:
|
1293 |
-
#: dist/blocks.build.js:
|
1294 |
-
#: dist/blocks.build.js:
|
1295 |
-
#: dist/blocks.build.js:
|
1296 |
-
#: dist/blocks.build.js:
|
1297 |
-
#: dist/blocks.build.js:
|
1298 |
-
#: dist/blocks.build.js:
|
1299 |
-
#: dist/blocks.build.js:
|
1300 |
-
#: dist/blocks.build.js:
|
1301 |
-
#: dist/blocks.build.js:
|
1302 |
msgid "Double"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
#: dist/blocks.build.js:25852
|
1306 |
#: dist/blocks.build.js:62582
|
1307 |
-
#: dist/blocks.build.js:
|
1308 |
-
#: dist/blocks.build.js:
|
1309 |
-
#: dist/blocks.build.js:
|
1310 |
-
#: dist/blocks.build.js:
|
1311 |
-
#: dist/blocks.build.js:
|
1312 |
-
#: dist/blocks.build.js:
|
1313 |
-
#: dist/blocks.build.js:
|
1314 |
-
#: dist/blocks.build.js:
|
1315 |
-
#: dist/blocks.build.js:
|
1316 |
-
#: dist/blocks.build.js:
|
1317 |
-
#: dist/blocks.build.js:
|
1318 |
-
#: dist/blocks.build.js:
|
1319 |
-
#: dist/blocks.build.js:
|
1320 |
-
#: dist/blocks.build.js:
|
1321 |
-
#: dist/blocks.build.js:
|
1322 |
-
#: dist/blocks.build.js:
|
1323 |
-
#: dist/blocks.build.js:
|
1324 |
-
#: dist/blocks.build.js:
|
1325 |
-
#: dist/blocks.build.js:
|
1326 |
-
#: dist/blocks.build.js:
|
1327 |
-
#: dist/blocks.build.js:
|
1328 |
-
#: dist/blocks.build.js:
|
1329 |
msgid "Dashed"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
#: dist/blocks.build.js:25852
|
1333 |
#: dist/blocks.build.js:62582
|
1334 |
-
#: dist/blocks.build.js:
|
1335 |
-
#: dist/blocks.build.js:
|
1336 |
-
#: dist/blocks.build.js:
|
1337 |
-
#: dist/blocks.build.js:
|
1338 |
-
#: dist/blocks.build.js:
|
1339 |
-
#: dist/blocks.build.js:
|
1340 |
-
#: dist/blocks.build.js:
|
1341 |
-
#: dist/blocks.build.js:
|
1342 |
-
#: dist/blocks.build.js:
|
1343 |
-
#: dist/blocks.build.js:
|
1344 |
-
#: dist/blocks.build.js:
|
1345 |
-
#: dist/blocks.build.js:
|
1346 |
-
#: dist/blocks.build.js:
|
1347 |
-
#: dist/blocks.build.js:
|
1348 |
-
#: dist/blocks.build.js:
|
1349 |
-
#: dist/blocks.build.js:
|
1350 |
-
#: dist/blocks.build.js:
|
1351 |
-
#: dist/blocks.build.js:
|
1352 |
-
#: dist/blocks.build.js:
|
1353 |
-
#: dist/blocks.build.js:
|
1354 |
-
#: dist/blocks.build.js:
|
1355 |
-
#: dist/blocks.build.js:
|
1356 |
msgid "Dotted"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
#: dist/blocks.build.js:25858
|
1360 |
-
#: dist/blocks.build.js:
|
1361 |
-
#: dist/blocks.build.js:
|
1362 |
-
#: dist/blocks.build.js:
|
1363 |
-
#: dist/blocks.build.js:
|
1364 |
msgid "Thickness (px)"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
#: dist/blocks.build.js:25871
|
1368 |
#: dist/blocks.build.js:60956
|
1369 |
-
#: dist/blocks.build.js:
|
1370 |
-
#: dist/blocks.build.js:
|
1371 |
-
#: dist/blocks.build.js:
|
1372 |
-
#: dist/blocks.build.js:
|
1373 |
-
#: dist/blocks.build.js:
|
1374 |
-
#: dist/blocks.build.js:
|
1375 |
-
#: dist/blocks.build.js:
|
1376 |
-
#: dist/blocks.build.js:
|
1377 |
-
#: dist/blocks.build.js:
|
1378 |
-
#: dist/blocks.build.js:
|
1379 |
-
#: dist/blocks.build.js:
|
1380 |
-
#: dist/blocks.build.js:
|
1381 |
-
#: dist/blocks.build.js:
|
1382 |
-
#: dist/blocks.build.js:
|
1383 |
-
#: dist/blocks.build.js:
|
1384 |
-
#: dist/blocks.build.js:
|
1385 |
-
#: dist/blocks.build.js:
|
1386 |
-
#: dist/blocks.build.js:
|
1387 |
-
#: dist/blocks.build.js:
|
1388 |
-
#: dist/blocks.build.js:
|
1389 |
-
#: dist/blocks.build.js:
|
1390 |
-
#: dist/blocks.build.js:
|
1391 |
-
#: dist/blocks.build.js:
|
1392 |
-
#: dist/blocks.build.js:
|
1393 |
-
#: dist/blocks.build.js:
|
1394 |
-
#: dist/blocks.build.js:
|
1395 |
-
#: dist/blocks.build.js:
|
1396 |
-
#: dist/blocks.build.js:
|
1397 |
-
#: dist/blocks.build.js:
|
1398 |
-
#: dist/blocks.build.js:
|
1399 |
-
#: dist/blocks.build.js:
|
1400 |
-
#: dist/blocks.build.js:
|
1401 |
-
#: dist/blocks.build.js:
|
1402 |
-
#: dist/blocks.build.js:
|
1403 |
-
#: dist/blocks.build.js:
|
1404 |
-
#: dist/blocks.build.js:
|
1405 |
-
#: dist/blocks.build.js:
|
1406 |
-
#: dist/blocks.build.js:
|
1407 |
-
#: dist/blocks.build.js:
|
1408 |
-
#: dist/blocks.build.js:
|
1409 |
-
#: dist/blocks.build.js:
|
1410 |
-
#: dist/blocks.build.js:
|
1411 |
-
#: dist/blocks.build.js:
|
1412 |
-
#: dist/blocks.build.js:
|
1413 |
-
#: dist/blocks.build.js:
|
1414 |
-
#: dist/blocks.build.js:
|
1415 |
-
#: dist/blocks.build.js:
|
1416 |
-
#: dist/blocks.build.js:
|
1417 |
-
#: dist/blocks.build.js:
|
1418 |
-
#: dist/blocks.build.js:
|
1419 |
-
#: dist/blocks.build.js:
|
1420 |
-
#: dist/blocks.build.js:
|
1421 |
-
#: dist/blocks.build.js:
|
1422 |
-
#: dist/blocks.build.js:
|
1423 |
-
#: dist/blocks.build.js:
|
1424 |
-
#: dist/blocks.build.js:
|
1425 |
-
#: dist/blocks.build.js:
|
1426 |
-
#: dist/blocks.build.js:
|
1427 |
-
#: dist/blocks.build.js:
|
1428 |
-
#: dist/blocks.build.js:
|
1429 |
-
#: dist/blocks.build.js:
|
1430 |
-
#: dist/blocks.build.js:
|
1431 |
-
#: dist/blocks.build.js:
|
1432 |
-
#: dist/blocks.build.js:
|
1433 |
msgid "Size Type"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
#: dist/blocks.build.js:25888
|
1437 |
#: dist/blocks.build.js:62585
|
1438 |
-
#: dist/blocks.build.js:
|
1439 |
-
#: dist/blocks.build.js:
|
1440 |
-
#: dist/blocks.build.js:
|
1441 |
-
#: dist/blocks.build.js:
|
1442 |
-
#: dist/blocks.build.js:
|
1443 |
-
#: dist/blocks.build.js:
|
1444 |
-
#: dist/blocks.build.js:
|
1445 |
-
#: dist/blocks.build.js:
|
1446 |
-
#: dist/blocks.build.js:
|
1447 |
-
#: dist/blocks.build.js:
|
1448 |
-
#: dist/blocks.build.js:
|
1449 |
-
#: dist/blocks.build.js:
|
1450 |
-
#: dist/blocks.build.js:
|
1451 |
-
#: dist/blocks.build.js:
|
1452 |
-
#: dist/blocks.build.js:
|
1453 |
-
#: dist/blocks.build.js:
|
1454 |
-
#: dist/blocks.build.js:
|
1455 |
msgid "Width"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: dist/blocks.build.js:25905
|
1459 |
-
#: dist/blocks.build.js:
|
1460 |
-
#: dist/blocks.build.js:
|
1461 |
msgid "Separator Color"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
#: dist/blocks.build.js:25924
|
1465 |
#: dist/blocks.build.js:62364
|
1466 |
#: dist/blocks.build.js:62841
|
1467 |
-
#: dist/blocks.build.js:
|
1468 |
-
#: dist/blocks.build.js:
|
1469 |
-
#: dist/blocks.build.js:
|
1470 |
-
#: dist/blocks.build.js:
|
1471 |
-
#: dist/blocks.build.js:
|
1472 |
-
#: dist/blocks.build.js:
|
1473 |
-
#: dist/blocks.build.js:
|
1474 |
-
#: dist/blocks.build.js:
|
1475 |
-
#: dist/blocks.build.js:
|
1476 |
-
#: dist/blocks.build.js:
|
1477 |
-
#: dist/blocks.build.js:
|
1478 |
-
#: dist/blocks.build.js:
|
1479 |
-
#: dist/blocks.build.js:
|
1480 |
-
#: dist/blocks.build.js:
|
1481 |
-
#: dist/blocks.build.js:
|
1482 |
-
#: dist/blocks.build.js:
|
1483 |
msgid "Spacing"
|
1484 |
msgstr ""
|
1485 |
|
@@ -1492,9 +1492,9 @@ msgid "Separator Bottom Spacing (px)"
|
|
1492 |
msgstr ""
|
1493 |
|
1494 |
#: dist/blocks.build.js:26178
|
1495 |
-
#: dist/blocks.build.js:
|
1496 |
-
#: dist/blocks.build.js:
|
1497 |
-
#: dist/blocks.build.js:
|
1498 |
msgid "Default"
|
1499 |
msgstr ""
|
1500 |
|
@@ -1511,26 +1511,26 @@ msgid "Font Subset"
|
|
1511 |
msgstr ""
|
1512 |
|
1513 |
#: dist/blocks.build.js:60951
|
1514 |
-
#: dist/blocks.build.js:
|
1515 |
-
#: dist/blocks.build.js:
|
1516 |
-
#: dist/blocks.build.js:
|
1517 |
-
#: dist/blocks.build.js:
|
1518 |
msgid "px"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
#: dist/blocks.build.js:60951
|
1522 |
-
#: dist/blocks.build.js:
|
1523 |
-
#: dist/blocks.build.js:
|
1524 |
-
#: dist/blocks.build.js:
|
1525 |
-
#: dist/blocks.build.js:
|
1526 |
msgid "em"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
#: dist/blocks.build.js:61362
|
1530 |
-
#: dist/blocks.build.js:
|
1531 |
-
#: dist/blocks.build.js:
|
1532 |
-
#: dist/blocks.build.js:
|
1533 |
-
#: dist/blocks.build.js:
|
1534 |
msgid "post"
|
1535 |
msgstr ""
|
1536 |
|
@@ -1539,184 +1539,184 @@ msgid "grid"
|
|
1539 |
msgstr ""
|
1540 |
|
1541 |
#: dist/blocks.build.js:61850
|
1542 |
-
#: dist/blocks.build.js:
|
1543 |
-
#: dist/blocks.build.js:
|
1544 |
-
#: dist/blocks.build.js:
|
1545 |
-
#: dist/blocks.build.js:
|
1546 |
msgid "Hover Color"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
#: dist/blocks.build.js:61867
|
1550 |
-
#: dist/blocks.build.js:
|
1551 |
-
#: dist/blocks.build.js:
|
1552 |
-
#: dist/blocks.build.js:
|
1553 |
-
#: dist/blocks.build.js:
|
1554 |
-
#: dist/blocks.build.js:
|
1555 |
-
#: dist/blocks.build.js:
|
1556 |
-
#: dist/blocks.build.js:
|
1557 |
-
#: dist/blocks.build.js:
|
1558 |
-
#: dist/blocks.build.js:
|
1559 |
-
#: dist/blocks.build.js:
|
1560 |
-
#: dist/blocks.build.js:
|
1561 |
msgid "Background Hover Color"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
#: dist/blocks.build.js:61884
|
1565 |
-
#: dist/blocks.build.js:
|
1566 |
-
#: dist/blocks.build.js:
|
1567 |
-
#: dist/blocks.build.js:
|
1568 |
-
#: dist/blocks.build.js:
|
1569 |
-
#: dist/blocks.build.js:
|
1570 |
-
#: dist/blocks.build.js:
|
1571 |
-
#: dist/blocks.build.js:
|
1572 |
-
#: dist/blocks.build.js:
|
1573 |
-
#: dist/blocks.build.js:
|
1574 |
msgid "Border Hover Color"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
#: dist/blocks.build.js:61906
|
1578 |
-
#: dist/blocks.build.js:
|
1579 |
-
#: dist/blocks.build.js:
|
1580 |
-
#: dist/blocks.build.js:
|
1581 |
-
#: dist/blocks.build.js:
|
1582 |
-
#: dist/blocks.build.js:
|
1583 |
-
#: dist/blocks.build.js:
|
1584 |
-
#: dist/blocks.build.js:
|
1585 |
-
#: dist/blocks.build.js:
|
1586 |
-
#: dist/blocks.build.js:
|
1587 |
-
#: dist/blocks.build.js:
|
1588 |
-
#: dist/blocks.build.js:
|
1589 |
-
#: dist/blocks.build.js:
|
1590 |
-
#: dist/blocks.build.js:
|
1591 |
-
#: dist/blocks.build.js:
|
1592 |
-
#: dist/blocks.build.js:
|
1593 |
-
#: dist/blocks.build.js:
|
1594 |
-
#: dist/blocks.build.js:
|
1595 |
-
#: dist/blocks.build.js:
|
1596 |
-
#: dist/blocks.build.js:
|
1597 |
-
#: dist/blocks.build.js:
|
1598 |
-
#: dist/blocks.build.js:
|
1599 |
-
#: dist/blocks.build.js:
|
1600 |
-
#: dist/blocks.build.js:
|
1601 |
-
#: dist/blocks.build.js:
|
1602 |
-
#: dist/blocks.build.js:
|
1603 |
-
#: dist/blocks.build.js:
|
1604 |
-
#: dist/blocks.build.js:
|
1605 |
msgid "Color"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
#: dist/blocks.build.js:61923
|
1609 |
#: dist/blocks.build.js:62246
|
1610 |
-
#: dist/blocks.build.js:
|
1611 |
-
#: dist/blocks.build.js:
|
1612 |
-
#: dist/blocks.build.js:
|
1613 |
-
#: dist/blocks.build.js:
|
1614 |
-
#: dist/blocks.build.js:
|
1615 |
-
#: dist/blocks.build.js:
|
1616 |
-
#: dist/blocks.build.js:
|
1617 |
-
#: dist/blocks.build.js:
|
1618 |
-
#: dist/blocks.build.js:
|
1619 |
-
#: dist/blocks.build.js:
|
1620 |
-
#: dist/blocks.build.js:
|
1621 |
-
#: dist/blocks.build.js:
|
1622 |
-
#: dist/blocks.build.js:
|
1623 |
-
#: dist/blocks.build.js:
|
1624 |
-
#: dist/blocks.build.js:
|
1625 |
-
#: dist/blocks.build.js:
|
1626 |
-
#: dist/blocks.build.js:
|
1627 |
-
#: dist/blocks.build.js:
|
1628 |
-
#: dist/blocks.build.js:
|
1629 |
-
#: dist/blocks.build.js:
|
1630 |
-
#: dist/blocks.build.js:
|
1631 |
-
#: dist/blocks.build.js:
|
1632 |
-
#: dist/blocks.build.js:
|
1633 |
-
#: dist/blocks.build.js:
|
1634 |
-
#: dist/blocks.build.js:
|
1635 |
-
#: dist/blocks.build.js:
|
1636 |
-
#: dist/blocks.build.js:
|
1637 |
-
#: dist/blocks.build.js:
|
1638 |
-
#: dist/blocks.build.js:
|
1639 |
-
#: dist/blocks.build.js:
|
1640 |
msgid "Background Color"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
#: dist/blocks.build.js:61940
|
1644 |
#: dist/blocks.build.js:62300
|
1645 |
-
#: dist/blocks.build.js:
|
1646 |
-
#: dist/blocks.build.js:
|
1647 |
-
#: dist/blocks.build.js:
|
1648 |
-
#: dist/blocks.build.js:
|
1649 |
-
#: dist/blocks.build.js:
|
1650 |
-
#: dist/blocks.build.js:
|
1651 |
-
#: dist/blocks.build.js:
|
1652 |
-
#: dist/blocks.build.js:
|
1653 |
-
#: dist/blocks.build.js:
|
1654 |
-
#: dist/blocks.build.js:
|
1655 |
-
#: dist/blocks.build.js:
|
1656 |
-
#: dist/blocks.build.js:
|
1657 |
-
#: dist/blocks.build.js:
|
1658 |
-
#: dist/blocks.build.js:
|
1659 |
-
#: dist/blocks.build.js:
|
1660 |
-
#: dist/blocks.build.js:
|
1661 |
-
#: dist/blocks.build.js:
|
1662 |
-
#: dist/blocks.build.js:
|
1663 |
-
#: dist/blocks.build.js:
|
1664 |
-
#: dist/blocks.build.js:
|
1665 |
-
#: dist/blocks.build.js:
|
1666 |
-
#: dist/blocks.build.js:
|
1667 |
-
#: dist/blocks.build.js:
|
1668 |
-
#: dist/blocks.build.js:
|
1669 |
msgid "Border Color"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: dist/blocks.build.js:62007
|
1673 |
-
#: dist/blocks.build.js:
|
1674 |
-
#: dist/blocks.build.js:
|
1675 |
-
#: dist/blocks.build.js:
|
1676 |
msgid "All"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
#: dist/blocks.build.js:62027
|
1680 |
-
#: dist/blocks.build.js:
|
1681 |
-
#: dist/blocks.build.js:
|
1682 |
-
#: dist/blocks.build.js:
|
1683 |
-
#: dist/blocks.build.js:
|
1684 |
-
#: dist/blocks.build.js:
|
1685 |
-
#: dist/blocks.build.js:
|
1686 |
-
#: dist/blocks.build.js:
|
1687 |
-
#: dist/blocks.build.js:
|
1688 |
-
#: dist/blocks.build.js:
|
1689 |
-
#: dist/blocks.build.js:
|
1690 |
-
#: dist/blocks.build.js:
|
1691 |
-
#: dist/blocks.build.js:
|
1692 |
-
#: dist/blocks.build.js:
|
1693 |
-
#: dist/blocks.build.js:
|
1694 |
-
#: dist/blocks.build.js:
|
1695 |
-
#: dist/blocks.build.js:
|
1696 |
-
#: dist/blocks.build.js:
|
1697 |
msgid "General"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
#: dist/blocks.build.js:62029
|
1701 |
-
#: dist/blocks.build.js:
|
1702 |
-
#: dist/blocks.build.js:
|
1703 |
-
#: dist/blocks.build.js:
|
1704 |
-
#: dist/blocks.build.js:
|
1705 |
msgid "Post Type"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
#: dist/blocks.build.js:62038
|
1709 |
-
#: dist/blocks.build.js:
|
1710 |
-
#: dist/blocks.build.js:
|
1711 |
-
#: dist/blocks.build.js:
|
1712 |
-
#: dist/blocks.build.js:
|
1713 |
msgid "Taxonomy"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
#: dist/blocks.build.js:62059
|
1717 |
-
#: dist/blocks.build.js:
|
1718 |
-
#: dist/blocks.build.js:
|
1719 |
-
#: dist/blocks.build.js:
|
1720 |
msgid "Exclude Current Post"
|
1721 |
msgstr ""
|
1722 |
|
@@ -1725,75 +1725,75 @@ msgid "Posts Per Page"
|
|
1725 |
msgstr ""
|
1726 |
|
1727 |
#: dist/blocks.build.js:62078
|
1728 |
-
#: dist/blocks.build.js:
|
1729 |
-
#: dist/blocks.build.js:
|
1730 |
-
#: dist/blocks.build.js:
|
1731 |
-
#: dist/blocks.build.js:
|
1732 |
-
#: dist/blocks.build.js:
|
1733 |
msgid "Date"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
#: dist/blocks.build.js:62078
|
1737 |
#: dist/blocks.build.js:62674
|
1738 |
-
#: dist/blocks.build.js:
|
1739 |
-
#: dist/blocks.build.js:
|
1740 |
-
#: dist/blocks.build.js:
|
1741 |
-
#: dist/blocks.build.js:
|
1742 |
-
#: dist/blocks.build.js:
|
1743 |
-
#: dist/blocks.build.js:
|
1744 |
msgid "Title"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
#: dist/blocks.build.js:62078
|
1748 |
-
#: dist/blocks.build.js:
|
1749 |
-
#: dist/blocks.build.js:
|
1750 |
-
#: dist/blocks.build.js:
|
1751 |
msgid "Random"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
#: dist/blocks.build.js:62078
|
1755 |
-
#: dist/blocks.build.js:
|
1756 |
-
#: dist/blocks.build.js:
|
1757 |
-
#: dist/blocks.build.js:
|
1758 |
msgid "Menu Order"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: dist/blocks.build.js:62086
|
1762 |
-
#: dist/blocks.build.js:
|
1763 |
-
#: dist/blocks.build.js:
|
1764 |
-
#: dist/blocks.build.js:
|
1765 |
msgid "Descending"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: dist/blocks.build.js:62086
|
1769 |
-
#: dist/blocks.build.js:
|
1770 |
-
#: dist/blocks.build.js:
|
1771 |
-
#: dist/blocks.build.js:
|
1772 |
msgid "Ascending"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: dist/blocks.build.js:62109
|
1776 |
#: dist/blocks.build.js:62119
|
1777 |
#: dist/blocks.build.js:62129
|
1778 |
-
#: dist/blocks.build.js:
|
1779 |
-
#: dist/blocks.build.js:
|
1780 |
-
#: dist/blocks.build.js:
|
1781 |
-
#: dist/blocks.build.js:
|
1782 |
-
#: dist/blocks.build.js:
|
1783 |
-
#: dist/blocks.build.js:
|
1784 |
-
#: dist/blocks.build.js:
|
1785 |
-
#: dist/blocks.build.js:
|
1786 |
-
#: dist/blocks.build.js:
|
1787 |
-
#: dist/blocks.build.js:
|
1788 |
-
#: dist/blocks.build.js:
|
1789 |
-
#: dist/blocks.build.js:
|
1790 |
-
#: dist/blocks.build.js:
|
1791 |
msgid "Columns"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
#: dist/blocks.build.js:62147
|
1795 |
-
#: dist/blocks.build.js:
|
1796 |
-
#: dist/blocks.build.js:
|
1797 |
msgid "Equal Height"
|
1798 |
msgstr ""
|
1799 |
|
@@ -1806,33 +1806,33 @@ msgid "Page Limit"
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: dist/blocks.build.js:62169
|
1809 |
-
#: dist/blocks.build.js:
|
1810 |
-
#: dist/blocks.build.js:
|
1811 |
msgid "If Posts Not Found"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
#: dist/blocks.build.js:62173
|
1815 |
-
#: dist/blocks.build.js:
|
1816 |
-
#: dist/blocks.build.js:
|
1817 |
-
#: dist/blocks.build.js:
|
1818 |
msgid "Display Message"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
#: dist/blocks.build.js:62181
|
1822 |
-
#: dist/blocks.build.js:
|
1823 |
-
#: dist/blocks.build.js:
|
1824 |
msgid "Inherit Styling from Theme"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
#: dist/blocks.build.js:62186
|
1828 |
-
#: dist/blocks.build.js:
|
1829 |
-
#: dist/blocks.build.js:
|
1830 |
msgid "This will inherit all the Typography and colors for Title, Meta, Excerpt and Read More button from the theme."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
#: dist/blocks.build.js:62191
|
1834 |
-
#: dist/blocks.build.js:
|
1835 |
-
#: dist/blocks.build.js:
|
1836 |
msgid "Pagination"
|
1837 |
msgstr ""
|
1838 |
|
@@ -1841,17 +1841,17 @@ msgid "Pagination Layout"
|
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: dist/blocks.build.js:62201
|
1844 |
-
#: dist/blocks.build.js:
|
1845 |
-
#: dist/blocks.build.js:
|
1846 |
-
#: dist/blocks.build.js:
|
1847 |
-
#: dist/blocks.build.js:
|
1848 |
-
#: dist/blocks.build.js:
|
1849 |
-
#: dist/blocks.build.js:
|
1850 |
-
#: dist/blocks.build.js:
|
1851 |
-
#: dist/blocks.build.js:
|
1852 |
-
#: dist/blocks.build.js:
|
1853 |
-
#: dist/blocks.build.js:
|
1854 |
-
#: dist/blocks.build.js:
|
1855 |
msgid "Border"
|
1856 |
msgstr ""
|
1857 |
|
@@ -1872,20 +1872,20 @@ msgid "Border Size"
|
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#: dist/blocks.build.js:62289
|
1875 |
-
#: dist/blocks.build.js:
|
1876 |
-
#: dist/blocks.build.js:
|
1877 |
-
#: dist/blocks.build.js:
|
1878 |
-
#: dist/blocks.build.js:
|
1879 |
-
#: dist/blocks.build.js:
|
1880 |
-
#: dist/blocks.build.js:
|
1881 |
-
#: dist/blocks.build.js:
|
1882 |
-
#: dist/blocks.build.js:
|
1883 |
-
#: dist/blocks.build.js:
|
1884 |
-
#: dist/blocks.build.js:
|
1885 |
-
#: dist/blocks.build.js:
|
1886 |
-
#: dist/blocks.build.js:
|
1887 |
-
#: dist/blocks.build.js:
|
1888 |
-
#: dist/blocks.build.js:
|
1889 |
msgid "Border Radius"
|
1890 |
msgstr ""
|
1891 |
|
@@ -1894,21 +1894,21 @@ msgid "Border Active Color"
|
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: dist/blocks.build.js:62333
|
1897 |
-
#: dist/blocks.build.js:
|
1898 |
-
#: dist/blocks.build.js:
|
1899 |
-
#: dist/blocks.build.js:
|
1900 |
-
#: dist/blocks.build.js:
|
1901 |
-
#: dist/blocks.build.js:
|
1902 |
-
#: dist/blocks.build.js:
|
1903 |
-
#: dist/blocks.build.js:
|
1904 |
-
#: dist/blocks.build.js:
|
1905 |
-
#: dist/blocks.build.js:
|
1906 |
-
#: dist/blocks.build.js:
|
1907 |
-
#: dist/blocks.build.js:
|
1908 |
-
#: dist/blocks.build.js:
|
1909 |
-
#: dist/blocks.build.js:
|
1910 |
-
#: dist/blocks.build.js:
|
1911 |
-
#: dist/blocks.build.js:
|
1912 |
msgid "Text Color"
|
1913 |
msgstr ""
|
1914 |
|
@@ -1929,352 +1929,352 @@ msgid "Next Text"
|
|
1929 |
msgstr ""
|
1930 |
|
1931 |
#: dist/blocks.build.js:62388
|
1932 |
-
#: dist/blocks.build.js:
|
1933 |
-
#: dist/blocks.build.js:
|
1934 |
-
#: dist/blocks.build.js:
|
1935 |
-
#: dist/blocks.build.js:
|
1936 |
-
#: dist/blocks.build.js:
|
1937 |
-
#: dist/blocks.build.js:
|
1938 |
-
#: dist/blocks.build.js:
|
1939 |
-
#: dist/blocks.build.js:
|
1940 |
-
#: dist/blocks.build.js:
|
1941 |
-
#: dist/blocks.build.js:
|
1942 |
-
#: dist/blocks.build.js:
|
1943 |
-
#: dist/blocks.build.js:
|
1944 |
-
#: dist/blocks.build.js:
|
1945 |
-
#: dist/blocks.build.js:
|
1946 |
msgid "Image"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: dist/blocks.build.js:62390
|
1950 |
-
#: dist/blocks.build.js:
|
1951 |
-
#: dist/blocks.build.js:
|
1952 |
msgid "Show Featured Image"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: dist/blocks.build.js:62397
|
1956 |
-
#: dist/blocks.build.js:
|
1957 |
-
#: dist/blocks.build.js:
|
1958 |
msgid "Image Sizes"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
#: dist/blocks.build.js:62405
|
1962 |
-
#: dist/blocks.build.js:
|
1963 |
-
#: dist/blocks.build.js:
|
1964 |
-
#: dist/blocks.build.js:
|
1965 |
-
#: dist/blocks.build.js:
|
1966 |
-
#: dist/blocks.build.js:
|
1967 |
-
#: dist/blocks.build.js:
|
1968 |
msgid "Image Position"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: dist/blocks.build.js:62410
|
1972 |
-
#: dist/blocks.build.js:
|
1973 |
-
#: dist/blocks.build.js:
|
1974 |
-
#: dist/blocks.build.js:
|
1975 |
-
#: dist/blocks.build.js:
|
1976 |
-
#: dist/blocks.build.js:
|
1977 |
-
#: dist/blocks.build.js:
|
1978 |
-
#: dist/blocks.build.js:
|
1979 |
-
#: dist/blocks.build.js:
|
1980 |
-
#: dist/blocks.build.js:
|
1981 |
-
#: dist/blocks.build.js:
|
1982 |
-
#: dist/blocks.build.js:
|
1983 |
-
#: dist/blocks.build.js:
|
1984 |
-
#: dist/blocks.build.js:
|
1985 |
msgid "Top"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
#: dist/blocks.build.js:62410
|
1989 |
-
#: dist/blocks.build.js:
|
1990 |
-
#: dist/blocks.build.js:
|
1991 |
-
#: dist/blocks.build.js:
|
1992 |
-
#: dist/blocks.build.js:
|
1993 |
-
#: dist/blocks.build.js:
|
1994 |
-
#: dist/blocks.build.js:
|
1995 |
-
#: dist/blocks.build.js:
|
1996 |
-
#: dist/blocks.build.js:
|
1997 |
msgid "Background"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: dist/blocks.build.js:62418
|
2001 |
-
#: dist/blocks.build.js:
|
2002 |
-
#: dist/blocks.build.js:
|
2003 |
msgid "Background Overlay Color"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: dist/blocks.build.js:62433
|
2007 |
-
#: dist/blocks.build.js:
|
2008 |
-
#: dist/blocks.build.js:
|
2009 |
msgid "Overlay Opacity"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
#: dist/blocks.build.js:62443
|
2013 |
-
#: dist/blocks.build.js:
|
2014 |
-
#: dist/blocks.build.js:
|
2015 |
msgid "Link Complete Box"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
#: dist/blocks.build.js:62453
|
2019 |
-
#: dist/blocks.build.js:
|
2020 |
-
#: dist/blocks.build.js:
|
2021 |
-
#: dist/blocks.build.js:
|
2022 |
-
#: dist/blocks.build.js:
|
2023 |
-
#: dist/blocks.build.js:
|
2024 |
-
#: dist/blocks.build.js:
|
2025 |
-
#: dist/blocks.build.js:
|
2026 |
-
#: dist/blocks.build.js:
|
2027 |
-
#: dist/blocks.build.js:
|
2028 |
-
#: dist/blocks.build.js:
|
2029 |
-
#: dist/blocks.build.js:
|
2030 |
-
#: dist/blocks.build.js:
|
2031 |
-
#: dist/blocks.build.js:
|
2032 |
-
#: dist/blocks.build.js:
|
2033 |
msgid "Content"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
#: dist/blocks.build.js:62455
|
2037 |
-
#: dist/blocks.build.js:
|
2038 |
-
#: dist/blocks.build.js:
|
2039 |
msgid "Show Title"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
#: dist/blocks.build.js:62462
|
2043 |
-
#: dist/blocks.build.js:
|
2044 |
-
#: dist/blocks.build.js:
|
2045 |
msgid "Show Author"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
#: dist/blocks.build.js:62469
|
2049 |
-
#: dist/blocks.build.js:
|
2050 |
-
#: dist/blocks.build.js:
|
2051 |
msgid "Show Date"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
#: dist/blocks.build.js:62476
|
2055 |
-
#: dist/blocks.build.js:
|
2056 |
-
#: dist/blocks.build.js:
|
2057 |
msgid "Show Comment"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
#: dist/blocks.build.js:62483
|
2061 |
-
#: dist/blocks.build.js:
|
2062 |
-
#: dist/blocks.build.js:
|
2063 |
msgid "Show Taxonomy"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#: dist/blocks.build.js:62490
|
2067 |
-
#: dist/blocks.build.js:
|
2068 |
-
#: dist/blocks.build.js:
|
2069 |
msgid "Show Excerpt"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
#: dist/blocks.build.js:62497
|
2073 |
-
#: dist/blocks.build.js:
|
2074 |
-
#: dist/blocks.build.js:
|
2075 |
msgid "Show:"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
#: dist/blocks.build.js:62499
|
2079 |
#: dist/blocks.build.js:62738
|
2080 |
-
#: dist/blocks.build.js:
|
2081 |
-
#: dist/blocks.build.js:
|
2082 |
-
#: dist/blocks.build.js:
|
2083 |
-
#: dist/blocks.build.js:
|
2084 |
msgid "Excerpt"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
#: dist/blocks.build.js:62499
|
2088 |
-
#: dist/blocks.build.js:
|
2089 |
-
#: dist/blocks.build.js:
|
2090 |
msgid "Full post"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
#: dist/blocks.build.js:62507
|
2094 |
-
#: dist/blocks.build.js:
|
2095 |
-
#: dist/blocks.build.js:
|
2096 |
msgid "Max number of words in excerpt"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
#: dist/blocks.build.js:62519
|
2100 |
-
#: dist/blocks.build.js:
|
2101 |
-
#: dist/blocks.build.js:
|
2102 |
msgid "Read More Link"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
#: dist/blocks.build.js:62521
|
2106 |
-
#: dist/blocks.build.js:
|
2107 |
-
#: dist/blocks.build.js:
|
2108 |
msgid "Show Read More Link"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
#: dist/blocks.build.js:62528
|
2112 |
-
#: dist/blocks.build.js:
|
2113 |
-
#: dist/blocks.build.js:
|
2114 |
-
#: dist/blocks.build.js:
|
2115 |
msgid "Open links in New Tab"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
#: dist/blocks.build.js:62541
|
2119 |
-
#: dist/blocks.build.js:
|
2120 |
-
#: dist/blocks.build.js:
|
2121 |
-
#: dist/blocks.build.js:
|
2122 |
msgid "Button Text"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
#: dist/blocks.build.js:62544
|
2126 |
-
#: dist/blocks.build.js:
|
2127 |
-
#: dist/blocks.build.js:
|
2128 |
-
#: dist/blocks.build.js:
|
2129 |
-
#: dist/blocks.build.js:
|
2130 |
-
#: dist/blocks.build.js:
|
2131 |
-
#: dist/blocks.build.js:
|
2132 |
-
#: dist/blocks.build.js:
|
2133 |
-
#: dist/blocks.build.js:
|
2134 |
msgid "Text"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
#: dist/blocks.build.js:62574
|
2138 |
-
#: dist/blocks.build.js:
|
2139 |
-
#: dist/blocks.build.js:
|
2140 |
-
#: dist/blocks.build.js:
|
2141 |
msgid "Button Border"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
#: dist/blocks.build.js:62595
|
2145 |
-
#: dist/blocks.build.js:
|
2146 |
-
#: dist/blocks.build.js:
|
2147 |
-
#: dist/blocks.build.js:
|
2148 |
-
#: dist/blocks.build.js:
|
2149 |
msgid "Rounded Corner"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
#: dist/blocks.build.js:62608
|
2153 |
-
#: dist/blocks.build.js:
|
2154 |
-
#: dist/blocks.build.js:
|
2155 |
-
#: dist/blocks.build.js:
|
2156 |
-
#: dist/blocks.build.js:
|
2157 |
-
#: dist/blocks.build.js:
|
2158 |
-
#: dist/blocks.build.js:
|
2159 |
msgid "Button Padding (px)"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: dist/blocks.build.js:62636
|
2163 |
-
#: dist/blocks.build.js:
|
2164 |
msgid "Button Colors"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: dist/blocks.build.js:62644
|
2168 |
-
#: dist/blocks.build.js:
|
2169 |
-
#: dist/blocks.build.js:
|
2170 |
-
#: dist/blocks.build.js:
|
2171 |
-
#: dist/blocks.build.js:
|
2172 |
-
#: dist/blocks.build.js:
|
2173 |
-
#: dist/blocks.build.js:
|
2174 |
-
#: dist/blocks.build.js:
|
2175 |
-
#: dist/blocks.build.js:
|
2176 |
-
#: dist/blocks.build.js:
|
2177 |
-
#: dist/blocks.build.js:
|
2178 |
-
#: dist/blocks.build.js:
|
2179 |
-
#: dist/blocks.build.js:
|
2180 |
-
#: dist/blocks.build.js:
|
2181 |
-
#: dist/blocks.build.js:
|
2182 |
-
#: dist/blocks.build.js:
|
2183 |
-
#: dist/blocks.build.js:
|
2184 |
-
#: dist/blocks.build.js:
|
2185 |
-
#: dist/blocks.build.js:
|
2186 |
-
#: dist/blocks.build.js:
|
2187 |
-
#: dist/blocks.build.js:
|
2188 |
-
#: dist/blocks.build.js:
|
2189 |
-
#: dist/blocks.build.js:
|
2190 |
msgid "Normal"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
#: dist/blocks.build.js:62648
|
2194 |
-
#: dist/blocks.build.js:
|
2195 |
-
#: dist/blocks.build.js:
|
2196 |
-
#: dist/blocks.build.js:
|
2197 |
-
#: dist/blocks.build.js:
|
2198 |
-
#: dist/blocks.build.js:
|
2199 |
-
#: dist/blocks.build.js:
|
2200 |
-
#: dist/blocks.build.js:
|
2201 |
-
#: dist/blocks.build.js:
|
2202 |
-
#: dist/blocks.build.js:
|
2203 |
-
#: dist/blocks.build.js:
|
2204 |
-
#: dist/blocks.build.js:
|
2205 |
-
#: dist/blocks.build.js:
|
2206 |
-
#: dist/blocks.build.js:
|
2207 |
-
#: dist/blocks.build.js:
|
2208 |
-
#: dist/blocks.build.js:
|
2209 |
-
#: dist/blocks.build.js:
|
2210 |
-
#: dist/blocks.build.js:
|
2211 |
msgid "Hover"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
#: dist/blocks.build.js:62677
|
2215 |
-
#: dist/blocks.build.js:
|
2216 |
-
#: dist/blocks.build.js:
|
2217 |
-
#: dist/blocks.build.js:
|
2218 |
-
#: dist/blocks.build.js:
|
2219 |
msgid "Title Tag"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: dist/blocks.build.js:62682
|
2223 |
-
#: dist/blocks.build.js:
|
2224 |
-
#: dist/blocks.build.js:
|
2225 |
-
#: dist/blocks.build.js:
|
2226 |
-
#: dist/blocks.build.js:
|
2227 |
msgid "span"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
#: dist/blocks.build.js:62682
|
2231 |
-
#: dist/blocks.build.js:
|
2232 |
-
#: dist/blocks.build.js:
|
2233 |
-
#: dist/blocks.build.js:
|
2234 |
-
#: dist/blocks.build.js:
|
2235 |
msgid "p"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
#: dist/blocks.build.js:62711
|
2239 |
-
#: dist/blocks.build.js:
|
2240 |
-
#: dist/blocks.build.js:
|
2241 |
msgid "Meta"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
#: dist/blocks.build.js:62762
|
2245 |
-
#: dist/blocks.build.js:
|
2246 |
-
#: dist/blocks.build.js:
|
2247 |
-
#: dist/blocks.build.js:
|
2248 |
msgid "Colors"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
#: dist/blocks.build.js:62766
|
2252 |
-
#: dist/blocks.build.js:
|
2253 |
-
#: dist/blocks.build.js:
|
2254 |
msgid "Blog Background Color"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
#: dist/blocks.build.js:62786
|
2258 |
-
#: dist/blocks.build.js:
|
2259 |
-
#: dist/blocks.build.js:
|
2260 |
-
#: dist/blocks.build.js:
|
2261 |
-
#: dist/blocks.build.js:
|
2262 |
-
#: dist/blocks.build.js:
|
2263 |
-
#: dist/blocks.build.js:
|
2264 |
-
#: dist/blocks.build.js:
|
2265 |
-
#: dist/blocks.build.js:
|
2266 |
msgid "Title Color"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
#: dist/blocks.build.js:62803
|
2270 |
-
#: dist/blocks.build.js:
|
2271 |
-
#: dist/blocks.build.js:
|
2272 |
msgid "Meta Color"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
#: dist/blocks.build.js:62822
|
2276 |
-
#: dist/blocks.build.js:
|
2277 |
-
#: dist/blocks.build.js:
|
2278 |
msgid "Excerpt Color"
|
2279 |
msgstr ""
|
2280 |
|
@@ -2287,4039 +2287,4039 @@ msgid "Horizontal Spacing"
|
|
2287 |
msgstr ""
|
2288 |
|
2289 |
#: dist/blocks.build.js:62864
|
2290 |
-
#: dist/blocks.build.js:
|
2291 |
-
#: dist/blocks.build.js:
|
2292 |
-
#: dist/blocks.build.js:
|
2293 |
-
#: dist/blocks.build.js:
|
2294 |
-
#: dist/blocks.build.js:
|
2295 |
msgid "Content Padding"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
#: dist/blocks.build.js:62874
|
2299 |
-
#: dist/blocks.build.js:
|
2300 |
-
#: dist/blocks.build.js:
|
2301 |
msgid "Content Padding (Mobile)"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: dist/blocks.build.js:62885
|
2305 |
-
#: dist/blocks.build.js:
|
2306 |
-
#: dist/blocks.build.js:
|
2307 |
msgid "Image Bottom Spacing"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
#: dist/blocks.build.js:62895
|
2311 |
-
#: dist/blocks.build.js:
|
2312 |
-
#: dist/blocks.build.js:
|
2313 |
-
#: dist/blocks.build.js:
|
2314 |
-
#: dist/blocks.build.js:
|
2315 |
-
#: dist/blocks.build.js:
|
2316 |
msgid "Title Bottom Spacing"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
#: dist/blocks.build.js:62905
|
2320 |
-
#: dist/blocks.build.js:
|
2321 |
-
#: dist/blocks.build.js:
|
2322 |
msgid "Meta Bottom Spacing"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
#: dist/blocks.build.js:62915
|
2326 |
-
#: dist/blocks.build.js:
|
2327 |
-
#: dist/blocks.build.js:
|
2328 |
msgid "Excerpt Bottom Spacing"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: dist/blocks.build.js:
|
2332 |
msgid "masonry"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: dist/blocks.build.js:
|
2336 |
-
#: dist/blocks.build.js:
|
2337 |
-
#: dist/blocks.build.js:
|
2338 |
-
#: dist/blocks.build.js:
|
2339 |
-
#: dist/blocks.build.js:
|
2340 |
-
#: dist/blocks.build.js:
|
2341 |
msgid "Alignment"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: dist/blocks.build.js:
|
2345 |
msgid "Font Size (px) "
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: dist/blocks.build.js:
|
2349 |
-
#: dist/blocks.build.js:
|
2350 |
-
#: dist/blocks.build.js:
|
2351 |
-
#: dist/blocks.build.js:
|
2352 |
-
#: dist/blocks.build.js:
|
2353 |
-
#: dist/blocks.build.js:
|
2354 |
-
#: dist/blocks.build.js:
|
2355 |
-
#: dist/blocks.build.js:
|
2356 |
-
#: dist/blocks.build.js:
|
2357 |
-
#: dist/blocks.build.js:
|
2358 |
-
#: dist/blocks.build.js:
|
2359 |
-
#: dist/blocks.build.js:
|
2360 |
-
#: dist/blocks.build.js:
|
2361 |
-
#: dist/blocks.build.js:
|
2362 |
-
#: dist/blocks.build.js:
|
2363 |
-
#: dist/blocks.build.js:
|
2364 |
msgid "Padding"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: dist/blocks.build.js:
|
2368 |
-
#: dist/blocks.build.js:
|
2369 |
-
#: dist/blocks.build.js:
|
2370 |
-
#: dist/blocks.build.js:
|
2371 |
-
#: dist/blocks.build.js:
|
2372 |
msgid "Rounded Corners (px)"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: dist/blocks.build.js:
|
2376 |
msgid " Loader Color"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: dist/blocks.build.js:
|
2380 |
msgid "Loader Size"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: dist/blocks.build.js:
|
2384 |
-
#: dist/blocks.build.js:
|
2385 |
msgid "Order By"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: dist/blocks.build.js:
|
2389 |
-
#: dist/blocks.build.js:
|
2390 |
-
#: dist/blocks.build.js:
|
2391 |
msgid "Order"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: dist/blocks.build.js:
|
2395 |
msgid "Infinite"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: dist/blocks.build.js:
|
2399 |
msgid "Infinite Load Event"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: dist/blocks.build.js:
|
2403 |
-
#: dist/blocks.build.js:
|
2404 |
-
#: dist/blocks.build.js:
|
2405 |
-
#: dist/blocks.build.js:
|
2406 |
-
#: dist/blocks.build.js:
|
2407 |
msgid "Scroll"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: dist/blocks.build.js:
|
2411 |
-
#: dist/blocks.build.js:
|
2412 |
-
#: dist/blocks.build.js:
|
2413 |
-
#: dist/blocks.build.js:
|
2414 |
-
#: dist/blocks.build.js:
|
2415 |
msgid "Row Gap"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: dist/blocks.build.js:
|
2419 |
-
#: dist/blocks.build.js:
|
2420 |
-
#: dist/blocks.build.js:
|
2421 |
msgid "Column Gap"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: dist/blocks.build.js:
|
2425 |
msgid "carousel"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: dist/blocks.build.js:
|
2429 |
-
#: dist/blocks.build.js:
|
2430 |
msgid "Carousel"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: dist/blocks.build.js:
|
2434 |
-
#: dist/blocks.build.js:
|
2435 |
msgid "Pause On Hover"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: dist/blocks.build.js:
|
2439 |
msgid "Autoplay"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: dist/blocks.build.js:
|
2443 |
-
#: dist/blocks.build.js:
|
2444 |
msgid "Autoplay Speed (ms)"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: dist/blocks.build.js:
|
2448 |
-
#: dist/blocks.build.js:
|
2449 |
msgid "Infinite Loop"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: dist/blocks.build.js:
|
2453 |
-
#: dist/blocks.build.js:
|
2454 |
msgid "Transition Speed (ms)"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: dist/blocks.build.js:
|
2458 |
msgid "Arrows & Dots"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: dist/blocks.build.js:
|
2462 |
-
#: dist/blocks.build.js:
|
2463 |
msgid "Show Arrows & Dots"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: dist/blocks.build.js:
|
2467 |
-
#: dist/blocks.build.js:
|
2468 |
msgid "Only Arrows"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: dist/blocks.build.js:
|
2472 |
-
#: dist/blocks.build.js:
|
2473 |
msgid "Only Dots"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: dist/blocks.build.js:
|
2477 |
-
#: dist/blocks.build.js:
|
2478 |
msgid "Both Arrows & Dots"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: dist/blocks.build.js:
|
2482 |
-
#: dist/blocks.build.js:
|
2483 |
msgid "Arrow Size"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: dist/blocks.build.js:
|
2487 |
-
#: dist/blocks.build.js:
|
2488 |
msgid "Arrow Border Size"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: dist/blocks.build.js:
|
2492 |
-
#: dist/blocks.build.js:
|
2493 |
msgid "Arrow Border Radius"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: dist/blocks.build.js:
|
2497 |
msgid "CTA Tag"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: dist/blocks.build.js:
|
2501 |
msgid "Arrows & Dots Color"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: dist/blocks.build.js:
|
2505 |
msgid "Gap Between Posts & Dots"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: dist/blocks.build.js:
|
2509 |
-
#: dist/blocks.build.js:
|
2510 |
-
#: dist/blocks.build.js:
|
2511 |
msgid "section"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: dist/blocks.build.js:
|
2515 |
msgid "wrapper"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: dist/blocks.build.js:
|
2519 |
-
#: dist/blocks.build.js:
|
2520 |
-
#: dist/blocks.build.js:
|
2521 |
-
#: dist/blocks.build.js:
|
2522 |
-
#: dist/blocks.build.js:
|
2523 |
-
#: dist/blocks.build.js:
|
2524 |
-
#: dist/blocks.build.js:
|
2525 |
-
#: dist/blocks.build.js:
|
2526 |
-
#: dist/blocks.build.js:
|
2527 |
-
#: dist/blocks.build.js:
|
2528 |
-
#: dist/blocks.build.js:
|
2529 |
-
#: dist/blocks.build.js:
|
2530 |
-
#: dist/blocks.build.js:
|
2531 |
-
#: dist/blocks.build.js:
|
2532 |
msgid "Layout"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: dist/blocks.build.js:
|
2536 |
msgid "Content Width"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: dist/blocks.build.js:
|
2540 |
msgid "Boxed"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: dist/blocks.build.js:
|
2544 |
msgid "Full Width"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: dist/blocks.build.js:
|
2548 |
msgid "Inherit Inner Width from Theme"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: dist/blocks.build.js:
|
2552 |
-
#: dist/blocks.build.js:
|
2553 |
msgid "Inner Width"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: dist/blocks.build.js:
|
2557 |
-
#: dist/blocks.build.js:
|
2558 |
msgid "HTML Tag"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: dist/blocks.build.js:
|
2562 |
-
#: dist/blocks.build.js:
|
2563 |
msgid "div"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: dist/blocks.build.js:
|
2567 |
-
#: dist/blocks.build.js:
|
2568 |
msgid "header"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: dist/blocks.build.js:
|
2572 |
-
#: dist/blocks.build.js:
|
2573 |
msgid "footer"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: dist/blocks.build.js:
|
2577 |
-
#: dist/blocks.build.js:
|
2578 |
msgid "main"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: dist/blocks.build.js:
|
2582 |
-
#: dist/blocks.build.js:
|
2583 |
msgid "article"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: dist/blocks.build.js:
|
2587 |
-
#: dist/blocks.build.js:
|
2588 |
msgid "aside"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: dist/blocks.build.js:
|
2592 |
-
#: dist/blocks.build.js:
|
2593 |
msgid "nav"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: dist/blocks.build.js:
|
2597 |
-
#: dist/blocks.build.js:
|
2598 |
-
#: dist/blocks.build.js:
|
2599 |
msgid "Padding Tablet"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: dist/blocks.build.js:
|
2603 |
-
#: dist/blocks.build.js:
|
2604 |
-
#: dist/blocks.build.js:
|
2605 |
msgid "Margin Mobile"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: dist/blocks.build.js:
|
2609 |
-
#: dist/blocks.build.js:
|
2610 |
-
#: dist/blocks.build.js:
|
2611 |
msgid "Margin Tablet"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: dist/blocks.build.js:
|
2615 |
-
#: dist/blocks.build.js:
|
2616 |
-
#: dist/blocks.build.js:
|
2617 |
msgid "Margin"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: dist/blocks.build.js:
|
2621 |
-
#: dist/blocks.build.js:
|
2622 |
-
#: dist/blocks.build.js:
|
2623 |
-
#: dist/blocks.build.js:
|
2624 |
-
#: dist/blocks.build.js:
|
2625 |
msgid "Background Type"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: dist/blocks.build.js:
|
2629 |
-
#: dist/blocks.build.js:
|
2630 |
-
#: dist/blocks.build.js:
|
2631 |
-
#: dist/blocks.build.js:
|
2632 |
-
#: dist/blocks.build.js:
|
2633 |
-
#: dist/blocks.build.js:
|
2634 |
msgid "Gradient"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: dist/blocks.build.js:
|
2638 |
-
#: dist/blocks.build.js:
|
2639 |
msgid "Video"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: dist/blocks.build.js:
|
2643 |
-
#: dist/blocks.build.js:
|
2644 |
-
#: dist/blocks.build.js:
|
2645 |
-
#: dist/blocks.build.js:
|
2646 |
msgid "Background Image"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: dist/blocks.build.js:
|
2650 |
-
#: dist/blocks.build.js:
|
2651 |
-
#: dist/blocks.build.js:
|
2652 |
-
#: dist/blocks.build.js:
|
2653 |
-
#: dist/blocks.build.js:
|
2654 |
-
#: dist/blocks.build.js:
|
2655 |
-
#: dist/blocks.build.js:
|
2656 |
-
#: dist/blocks.build.js:
|
2657 |
msgid "Select Background Image"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: dist/blocks.build.js:
|
2661 |
-
#: dist/blocks.build.js:
|
2662 |
-
#: dist/blocks.build.js:
|
2663 |
-
#: dist/blocks.build.js:
|
2664 |
-
#: dist/blocks.build.js:
|
2665 |
-
#: dist/blocks.build.js:
|
2666 |
-
#: dist/blocks.build.js:
|
2667 |
-
#: dist/blocks.build.js:
|
2668 |
msgid "Replace image"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: dist/blocks.build.js:
|
2672 |
-
#: dist/blocks.build.js:
|
2673 |
-
#: dist/blocks.build.js:
|
2674 |
-
#: dist/blocks.build.js:
|
2675 |
-
#: dist/blocks.build.js:
|
2676 |
msgid "Top Left"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: dist/blocks.build.js:
|
2680 |
-
#: dist/blocks.build.js:
|
2681 |
-
#: dist/blocks.build.js:
|
2682 |
-
#: dist/blocks.build.js:
|
2683 |
-
#: dist/blocks.build.js:
|
2684 |
msgid "Top Center"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: dist/blocks.build.js:
|
2688 |
-
#: dist/blocks.build.js:
|
2689 |
-
#: dist/blocks.build.js:
|
2690 |
-
#: dist/blocks.build.js:
|
2691 |
-
#: dist/blocks.build.js:
|
2692 |
msgid "Top Right"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
-
#: dist/blocks.build.js:
|
2696 |
-
#: dist/blocks.build.js:
|
2697 |
-
#: dist/blocks.build.js:
|
2698 |
-
#: dist/blocks.build.js:
|
2699 |
-
#: dist/blocks.build.js:
|
2700 |
msgid "Center Left"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: dist/blocks.build.js:
|
2704 |
-
#: dist/blocks.build.js:
|
2705 |
-
#: dist/blocks.build.js:
|
2706 |
-
#: dist/blocks.build.js:
|
2707 |
-
#: dist/blocks.build.js:
|
2708 |
msgid "Center Center"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: dist/blocks.build.js:
|
2712 |
-
#: dist/blocks.build.js:
|
2713 |
-
#: dist/blocks.build.js:
|
2714 |
-
#: dist/blocks.build.js:
|
2715 |
-
#: dist/blocks.build.js:
|
2716 |
msgid "Center Right"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
#: dist/blocks.build.js:
|
2720 |
-
#: dist/blocks.build.js:
|
2721 |
-
#: dist/blocks.build.js:
|
2722 |
-
#: dist/blocks.build.js:
|
2723 |
-
#: dist/blocks.build.js:
|
2724 |
msgid "Bottom Left"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: dist/blocks.build.js:
|
2728 |
-
#: dist/blocks.build.js:
|
2729 |
-
#: dist/blocks.build.js:
|
2730 |
-
#: dist/blocks.build.js:
|
2731 |
-
#: dist/blocks.build.js:
|
2732 |
msgid "Bottom Center"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: dist/blocks.build.js:
|
2736 |
-
#: dist/blocks.build.js:
|
2737 |
-
#: dist/blocks.build.js:
|
2738 |
-
#: dist/blocks.build.js:
|
2739 |
-
#: dist/blocks.build.js:
|
2740 |
msgid "Bottom Right"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: dist/blocks.build.js:
|
2744 |
-
#: dist/blocks.build.js:
|
2745 |
-
#: dist/blocks.build.js:
|
2746 |
msgid "Attachment"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: dist/blocks.build.js:
|
2750 |
-
#: dist/blocks.build.js:
|
2751 |
-
#: dist/blocks.build.js:
|
2752 |
msgid "Fixed"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: dist/blocks.build.js:
|
2756 |
-
#: dist/blocks.build.js:
|
2757 |
-
#: dist/blocks.build.js:
|
2758 |
-
#: dist/blocks.build.js:
|
2759 |
-
#: dist/blocks.build.js:
|
2760 |
-
#: dist/blocks.build.js:
|
2761 |
-
#: dist/blocks.build.js:
|
2762 |
-
#: dist/blocks.build.js:
|
2763 |
msgid "Repeat"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: dist/blocks.build.js:
|
2767 |
-
#: dist/blocks.build.js:
|
2768 |
-
#: dist/blocks.build.js:
|
2769 |
-
#: dist/blocks.build.js:
|
2770 |
msgid "No Repeat"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: dist/blocks.build.js:
|
2774 |
-
#: dist/blocks.build.js:
|
2775 |
-
#: dist/blocks.build.js:
|
2776 |
-
#: dist/blocks.build.js:
|
2777 |
msgid "Repeat-x"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: dist/blocks.build.js:
|
2781 |
-
#: dist/blocks.build.js:
|
2782 |
-
#: dist/blocks.build.js:
|
2783 |
-
#: dist/blocks.build.js:
|
2784 |
msgid "Repeat-y"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: dist/blocks.build.js:
|
2788 |
-
#: dist/blocks.build.js:
|
2789 |
-
#: dist/blocks.build.js:
|
2790 |
-
#: dist/blocks.build.js:
|
2791 |
-
#: dist/blocks.build.js:
|
2792 |
-
#: dist/blocks.build.js:
|
2793 |
-
#: dist/blocks.build.js:
|
2794 |
-
#: dist/blocks.build.js:
|
2795 |
-
#: dist/blocks.build.js:
|
2796 |
-
#: dist/blocks.build.js:
|
2797 |
-
#: dist/blocks.build.js:
|
2798 |
-
#: dist/blocks.build.js:
|
2799 |
-
#: dist/blocks.build.js:
|
2800 |
-
#: dist/blocks.build.js:
|
2801 |
-
#: dist/blocks.build.js:
|
2802 |
msgid "Size"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: dist/blocks.build.js:
|
2806 |
-
#: dist/blocks.build.js:
|
2807 |
-
#: dist/blocks.build.js:
|
2808 |
-
#: dist/blocks.build.js:
|
2809 |
msgid "Auto"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: dist/blocks.build.js:
|
2813 |
-
#: dist/blocks.build.js:
|
2814 |
-
#: dist/blocks.build.js:
|
2815 |
-
#: dist/blocks.build.js:
|
2816 |
msgid "Cover"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: dist/blocks.build.js:
|
2820 |
-
#: dist/blocks.build.js:
|
2821 |
-
#: dist/blocks.build.js:
|
2822 |
-
#: dist/blocks.build.js:
|
2823 |
msgid "Contain"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: dist/blocks.build.js:
|
2827 |
-
#: dist/blocks.build.js:
|
2828 |
msgid "Image Overlay Type"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: dist/blocks.build.js:
|
2832 |
-
#: dist/blocks.build.js:
|
2833 |
-
#: dist/blocks.build.js:
|
2834 |
-
#: dist/blocks.build.js:
|
2835 |
msgid "Image Overlay Color"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: dist/blocks.build.js:
|
2839 |
-
#: dist/blocks.build.js:
|
2840 |
-
#: dist/blocks.build.js:
|
2841 |
msgid "Color 1"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: dist/blocks.build.js:
|
2845 |
-
#: dist/blocks.build.js:
|
2846 |
-
#: dist/blocks.build.js:
|
2847 |
msgid "Location 1"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: dist/blocks.build.js:
|
2851 |
-
#: dist/blocks.build.js:
|
2852 |
-
#: dist/blocks.build.js:
|
2853 |
msgid "Color 2"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: dist/blocks.build.js:
|
2857 |
-
#: dist/blocks.build.js:
|
2858 |
-
#: dist/blocks.build.js:
|
2859 |
msgid "Location 2"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: dist/blocks.build.js:
|
2863 |
-
#: dist/blocks.build.js:
|
2864 |
-
#: dist/blocks.build.js:
|
2865 |
-
#: dist/blocks.build.js:
|
2866 |
-
#: dist/blocks.build.js:
|
2867 |
-
#: dist/blocks.build.js:
|
2868 |
-
#: dist/blocks.build.js:
|
2869 |
-
#: dist/blocks.build.js:
|
2870 |
-
#: dist/blocks.build.js:
|
2871 |
msgid "Type"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: dist/blocks.build.js:
|
2875 |
-
#: dist/blocks.build.js:
|
2876 |
-
#: dist/blocks.build.js:
|
2877 |
msgid "Linear"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: dist/blocks.build.js:
|
2881 |
-
#: dist/blocks.build.js:
|
2882 |
-
#: dist/blocks.build.js:
|
2883 |
msgid "Radial"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: dist/blocks.build.js:
|
2887 |
-
#: dist/blocks.build.js:
|
2888 |
-
#: dist/blocks.build.js:
|
2889 |
msgid "Angle"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: dist/blocks.build.js:
|
2893 |
-
#: dist/blocks.build.js:
|
2894 |
msgid "Background Video"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: dist/blocks.build.js:
|
2898 |
-
#: dist/blocks.build.js:
|
2899 |
-
#: dist/blocks.build.js:
|
2900 |
-
#: dist/blocks.build.js:
|
2901 |
msgid "Select Background Video"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: dist/blocks.build.js:
|
2905 |
-
#: dist/blocks.build.js:
|
2906 |
msgid "Replace Video"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: dist/blocks.build.js:
|
2910 |
-
#: dist/blocks.build.js:
|
2911 |
-
#: dist/blocks.build.js:
|
2912 |
-
#: dist/blocks.build.js:
|
2913 |
-
#: dist/blocks.build.js:
|
2914 |
-
#: dist/blocks.build.js:
|
2915 |
-
#: dist/blocks.build.js:
|
2916 |
-
#: dist/blocks.build.js:
|
2917 |
-
#: dist/blocks.build.js:
|
2918 |
msgid "Opacity"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: dist/blocks.build.js:
|
2922 |
-
#: dist/blocks.build.js:
|
2923 |
-
#: dist/blocks.build.js:
|
2924 |
-
#: dist/blocks.build.js:
|
2925 |
-
#: dist/blocks.build.js:
|
2926 |
-
#: dist/blocks.build.js:
|
2927 |
-
#: dist/blocks.build.js:
|
2928 |
-
#: dist/blocks.build.js:
|
2929 |
-
#: dist/blocks.build.js:
|
2930 |
-
#: dist/blocks.build.js:
|
2931 |
-
#: dist/blocks.build.js:
|
2932 |
msgid "Border Style"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: dist/blocks.build.js:
|
2936 |
-
#: dist/blocks.build.js:
|
2937 |
-
#: dist/blocks.build.js:
|
2938 |
-
#: dist/blocks.build.js:
|
2939 |
-
#: dist/blocks.build.js:
|
2940 |
-
#: dist/blocks.build.js:
|
2941 |
-
#: dist/blocks.build.js:
|
2942 |
-
#: dist/blocks.build.js:
|
2943 |
-
#: dist/blocks.build.js:
|
2944 |
-
#: dist/blocks.build.js:
|
2945 |
-
#: dist/blocks.build.js:
|
2946 |
-
#: dist/blocks.build.js:
|
2947 |
-
#: dist/blocks.build.js:
|
2948 |
msgid "Groove"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: dist/blocks.build.js:
|
2952 |
-
#: dist/blocks.build.js:
|
2953 |
-
#: dist/blocks.build.js:102917
|
2954 |
-
#: dist/blocks.build.js:105680
|
2955 |
-
#: dist/blocks.build.js:107960
|
2956 |
-
#: dist/blocks.build.js:108182
|
2957 |
-
#: dist/blocks.build.js:109931
|
2958 |
-
#: dist/blocks.build.js:110214
|
2959 |
-
#: dist/blocks.build.js:112184
|
2960 |
-
#: dist/blocks.build.js:114896
|
2961 |
-
#: dist/blocks.build.js:116823
|
2962 |
-
#: dist/blocks.build.js:128697
|
2963 |
-
#: dist/blocks.build.js:128750
|
2964 |
-
msgid "Ridge"
|
2965 |
-
msgstr ""
|
2966 |
-
|
2967 |
-
#: dist/blocks.build.js:80288
|
2968 |
-
#: dist/blocks.build.js:87288
|
2969 |
-
#: dist/blocks.build.js:97942
|
2970 |
-
#: dist/blocks.build.js:99756
|
2971 |
#: dist/blocks.build.js:102920
|
2972 |
#: dist/blocks.build.js:105683
|
|
|
|
|
|
|
|
|
|
|
2973 |
#: dist/blocks.build.js:114899
|
2974 |
#: dist/blocks.build.js:116826
|
2975 |
-
|
|
|
|
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: dist/blocks.build.js:
|
2979 |
-
#: dist/blocks.build.js:
|
2980 |
-
#: dist/blocks.build.js:
|
2981 |
-
#: dist/blocks.build.js:
|
2982 |
-
|
|
|
|
|
|
|
|
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: dist/blocks.build.js:
|
2986 |
-
#: dist/blocks.build.js:
|
2987 |
-
#: dist/blocks.build.js:92677
|
2988 |
-
#: dist/blocks.build.js:105727
|
2989 |
#: dist/blocks.build.js:124548
|
2990 |
#: dist/blocks.build.js:128684
|
2991 |
-
msgid "
|
2992 |
-
msgstr ""
|
2993 |
-
|
2994 |
-
#: dist/blocks.build.js:80333
|
2995 |
-
#: dist/blocks.build.js:90659
|
2996 |
-
#: dist/blocks.build.js:92677
|
2997 |
-
#: dist/blocks.build.js:105728
|
2998 |
-
#: dist/blocks.build.js:124549
|
2999 |
-
#: dist/blocks.build.js:128685
|
3000 |
-
msgid "Vertical"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
-
#: dist/blocks.build.js:
|
3004 |
-
#: dist/blocks.build.js:
|
|
|
|
|
3005 |
#: dist/blocks.build.js:124550
|
3006 |
#: dist/blocks.build.js:128686
|
3007 |
-
msgid "
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: dist/blocks.build.js:
|
3011 |
-
#: dist/blocks.build.js:
|
|
|
|
|
3012 |
#: dist/blocks.build.js:124551
|
3013 |
#: dist/blocks.build.js:128687
|
3014 |
-
msgid "
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: dist/blocks.build.js:
|
3018 |
-
#: dist/blocks.build.js:
|
3019 |
-
#: dist/blocks.build.js:89060
|
3020 |
-
#: dist/blocks.build.js:105731
|
3021 |
#: dist/blocks.build.js:124552
|
3022 |
#: dist/blocks.build.js:128688
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3023 |
msgid "Position"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: dist/blocks.build.js:
|
3027 |
msgid "buttons"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: dist/blocks.build.js:
|
3031 |
msgid "multi buttons"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: dist/blocks.build.js:
|
3035 |
msgid "Gap Between Buttons"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: dist/blocks.build.js:
|
3039 |
msgid "Note: The gap between the buttons will seem larger in the editor, for better user edit experience. But at frontend the gap will be exactly what is set from here."
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: dist/blocks.build.js:
|
3043 |
-
#: dist/blocks.build.js:
|
3044 |
-
#: dist/blocks.build.js:
|
3045 |
-
#: dist/blocks.build.js:
|
3046 |
-
#: dist/blocks.build.js:
|
3047 |
-
#: dist/blocks.build.js:
|
3048 |
-
#: dist/blocks.build.js:
|
3049 |
-
#: dist/blocks.build.js:
|
3050 |
-
#: dist/blocks.build.js:
|
3051 |
-
#: dist/blocks.build.js:
|
3052 |
msgid "Stack on"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: dist/blocks.build.js:
|
3056 |
-
#: dist/blocks.build.js:
|
3057 |
msgid "Desktop"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: dist/blocks.build.js:
|
3061 |
-
#: dist/blocks.build.js:
|
3062 |
-
#: dist/blocks.build.js:
|
3063 |
-
#: dist/blocks.build.js:
|
3064 |
-
#: dist/blocks.build.js:
|
3065 |
-
#: dist/blocks.build.js:
|
3066 |
-
#: dist/blocks.build.js:
|
3067 |
-
#: dist/blocks.build.js:
|
3068 |
-
#: dist/blocks.build.js:
|
3069 |
-
#: dist/blocks.build.js:
|
3070 |
-
#: dist/blocks.build.js:
|
3071 |
msgid "Tablet"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: dist/blocks.build.js:
|
3075 |
-
#: dist/blocks.build.js:
|
3076 |
-
#: dist/blocks.build.js:
|
3077 |
-
#: dist/blocks.build.js:
|
3078 |
-
#: dist/blocks.build.js:
|
3079 |
-
#: dist/blocks.build.js:
|
3080 |
-
#: dist/blocks.build.js:
|
3081 |
-
#: dist/blocks.build.js:
|
3082 |
-
#: dist/blocks.build.js:
|
3083 |
-
#: dist/blocks.build.js:
|
3084 |
-
#: dist/blocks.build.js:
|
3085 |
msgid "Mobile"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: dist/blocks.build.js:
|
3089 |
msgid "Note: Choose on what breakpoint the buttons will stack."
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: dist/blocks.build.js:
|
3093 |
-
#: dist/blocks.build.js:
|
3094 |
-
#: dist/blocks.build.js:
|
3095 |
-
#: dist/blocks.build.js:
|
3096 |
-
#: dist/blocks.build.js:
|
3097 |
-
#: dist/blocks.build.js:
|
3098 |
-
#: dist/blocks.build.js:
|
3099 |
-
#: dist/blocks.build.js:
|
3100 |
-
#: dist/blocks.build.js:
|
3101 |
-
#: dist/blocks.build.js:
|
3102 |
-
#: dist/blocks.build.js:
|
3103 |
-
#: dist/blocks.build.js:
|
3104 |
-
#: dist/blocks.build.js:
|
3105 |
-
#: dist/blocks.build.js:
|
3106 |
-
#: dist/blocks.build.js:
|
3107 |
-
#: dist/blocks.build.js:
|
3108 |
-
#: dist/blocks.build.js:
|
3109 |
-
#: dist/blocks.build.js:
|
3110 |
msgid "Select Icon"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: dist/blocks.build.js:
|
3114 |
msgid "Button Settings"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: dist/blocks.build.js:
|
3118 |
-
#: dist/blocks.build.js:
|
3119 |
-
#: dist/blocks.build.js:
|
3120 |
msgid "Inherit from Theme"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: dist/blocks.build.js:
|
3124 |
-
#: dist/blocks.build.js:
|
3125 |
msgid "Button Icon"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: dist/blocks.build.js:
|
3129 |
-
#: dist/blocks.build.js:
|
3130 |
-
#: dist/blocks.build.js:
|
3131 |
-
#: dist/blocks.build.js:
|
3132 |
-
#: dist/blocks.build.js:
|
3133 |
msgid "Icon Position"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: dist/blocks.build.js:
|
3137 |
-
#: dist/blocks.build.js:
|
3138 |
-
#: dist/blocks.build.js:
|
3139 |
-
#: dist/blocks.build.js:
|
3140 |
msgid "Before Text"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: dist/blocks.build.js:
|
3144 |
-
#: dist/blocks.build.js:
|
3145 |
-
#: dist/blocks.build.js:
|
3146 |
-
#: dist/blocks.build.js:
|
3147 |
msgid "After Text"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: dist/blocks.build.js:
|
3151 |
-
#: dist/blocks.build.js:
|
3152 |
-
#: dist/blocks.build.js:
|
3153 |
-
#: dist/blocks.build.js:
|
3154 |
-
#: dist/blocks.build.js:
|
3155 |
msgid "Icon Spacing"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: dist/blocks.build.js:
|
3159 |
msgid " Color Settings"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: dist/blocks.build.js:
|
3163 |
-
#: dist/blocks.build.js:
|
3164 |
-
#: dist/blocks.build.js:
|
3165 |
-
#: dist/blocks.build.js:
|
3166 |
-
#: dist/blocks.build.js:
|
3167 |
-
#: dist/blocks.build.js:
|
3168 |
-
#: dist/blocks.build.js:
|
3169 |
-
#: dist/blocks.build.js:
|
3170 |
-
#: dist/blocks.build.js:
|
3171 |
-
#: dist/blocks.build.js:
|
3172 |
msgid "Text Hover Color"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: dist/blocks.build.js:
|
3176 |
msgid "Padding (px)"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: dist/blocks.build.js:
|
3180 |
-
#: dist/blocks.build.js:
|
3181 |
msgid "Thickness"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: dist/blocks.build.js:
|
3185 |
-
#: dist/blocks.build.js:
|
3186 |
-
#: dist/blocks.build.js:
|
3187 |
msgid "Rounded Corners"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: dist/blocks.build.js:
|
3191 |
msgid "info box"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: dist/blocks.build.js:
|
3195 |
-
#: dist/blocks.build.js:
|
3196 |
-
#: dist/blocks.build.js:
|
3197 |
-
#: dist/blocks.build.js:
|
3198 |
-
#: dist/blocks.build.js:
|
3199 |
-
#: dist/blocks.build.js:
|
3200 |
msgid "Thumbnail"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: dist/blocks.build.js:
|
3204 |
-
#: dist/blocks.build.js:
|
3205 |
-
#: dist/blocks.build.js:
|
3206 |
-
#: dist/blocks.build.js:
|
3207 |
-
#: dist/blocks.build.js:
|
3208 |
-
#: dist/blocks.build.js:
|
3209 |
-
#: dist/blocks.build.js:
|
3210 |
msgid "Medium"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: dist/blocks.build.js:
|
3214 |
-
#: dist/blocks.build.js:
|
3215 |
-
#: dist/blocks.build.js:
|
3216 |
-
#: dist/blocks.build.js:
|
3217 |
-
#: dist/blocks.build.js:
|
3218 |
-
#: dist/blocks.build.js:
|
3219 |
-
#: dist/blocks.build.js:
|
3220 |
msgid "Large"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
-
#: dist/blocks.build.js:
|
3224 |
-
#: dist/blocks.build.js:
|
3225 |
-
#: dist/blocks.build.js:
|
3226 |
-
#: dist/blocks.build.js:
|
3227 |
-
#: dist/blocks.build.js:
|
3228 |
-
#: dist/blocks.build.js:
|
3229 |
-
#: dist/blocks.build.js:
|
3230 |
msgid "Icon Size"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: dist/blocks.build.js:
|
3234 |
-
#: dist/blocks.build.js:
|
3235 |
-
#: dist/blocks.build.js:
|
3236 |
-
#: dist/blocks.build.js:
|
3237 |
-
#: dist/blocks.build.js:
|
3238 |
-
#: dist/blocks.build.js:
|
3239 |
-
#: dist/blocks.build.js:
|
3240 |
-
#: dist/blocks.build.js:
|
3241 |
-
#: dist/blocks.build.js:
|
3242 |
-
#: dist/blocks.build.js:
|
3243 |
msgid "Icon Color"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: dist/blocks.build.js:
|
3247 |
-
#: dist/blocks.build.js:
|
3248 |
-
#: dist/blocks.build.js:
|
3249 |
-
#: dist/blocks.build.js:
|
3250 |
msgid "Icon Hover Color"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: dist/blocks.build.js:
|
3254 |
msgid "After Icon/Image"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: dist/blocks.build.js:
|
3258 |
msgid "After Prefix"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: dist/blocks.build.js:
|
3262 |
msgid "After Title"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: dist/blocks.build.js:
|
3266 |
msgid "After Description"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: dist/blocks.build.js:
|
3270 |
-
#: dist/blocks.build.js:
|
3271 |
msgid "Complete Box"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: dist/blocks.build.js:
|
3275 |
-
#: dist/blocks.build.js:
|
3276 |
-
#: dist/blocks.build.js:
|
3277 |
-
#: dist/blocks.build.js:
|
3278 |
msgid "Link"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: dist/blocks.build.js:
|
3282 |
-
#: dist/blocks.build.js:
|
3283 |
msgid "Open in new Window"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: dist/blocks.build.js:
|
3287 |
-
#: dist/blocks.build.js:
|
3288 |
-
#: dist/blocks.build.js:
|
3289 |
-
#: dist/blocks.build.js:
|
3290 |
msgid "Button Padding"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: dist/blocks.build.js:
|
3294 |
msgid "Enable Prefix"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: dist/blocks.build.js:
|
3298 |
msgid "Prefix Color"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: dist/blocks.build.js:
|
3302 |
msgid "Enable Title"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: dist/blocks.build.js:
|
3306 |
msgid "Enable Description"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: dist/blocks.build.js:
|
3310 |
-
#: dist/blocks.build.js:
|
3311 |
-
#: dist/blocks.build.js:
|
3312 |
-
#: dist/blocks.build.js:
|
3313 |
msgid "Description Color"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: dist/blocks.build.js:
|
3317 |
msgid "Prefix Bottom Margin"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: dist/blocks.build.js:
|
3321 |
msgid "Title Bottom Margin"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: dist/blocks.build.js:
|
3325 |
msgid "Separator Bottom Margin"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: dist/blocks.build.js:
|
3329 |
-
#: dist/blocks.build.js:
|
3330 |
msgid "Description Bottom Margin"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: dist/blocks.build.js:
|
3334 |
msgid "Image/Icon Margin (px)"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: dist/blocks.build.js:
|
3338 |
-
#: dist/blocks.build.js:84753
|
3339 |
#: dist/blocks.build.js:84767
|
3340 |
-
#: dist/blocks.build.js:
|
3341 |
-
#: dist/blocks.build.js:
|
3342 |
-
#: dist/blocks.build.js:
|
3343 |
-
#: dist/blocks.build.js:
|
3344 |
-
#: dist/blocks.build.js:
|
3345 |
-
#: dist/blocks.build.js:
|
3346 |
-
#: dist/blocks.build.js:
|
3347 |
-
#: dist/blocks.build.js:
|
3348 |
#: dist/blocks.build.js:112161
|
3349 |
-
#: dist/blocks.build.js:
|
3350 |
-
#: dist/blocks.build.js:
|
3351 |
-
#: dist/blocks.build.js:
|
3352 |
-
#: dist/blocks.build.js:
|
3353 |
-
#: dist/blocks.build.js:
|
|
|
3354 |
msgid "Select Image"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: dist/blocks.build.js:
|
3358 |
-
#: dist/blocks.build.js:
|
3359 |
-
#: dist/blocks.build.js:
|
3360 |
msgid "Replace Image"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: dist/blocks.build.js:
|
3364 |
-
#: dist/blocks.build.js:
|
3365 |
-
#: dist/blocks.build.js:
|
3366 |
-
#: dist/blocks.build.js:
|
3367 |
-
#: dist/blocks.build.js:
|
3368 |
-
#: dist/blocks.build.js:
|
3369 |
-
#: dist/blocks.build.js:
|
3370 |
-
#: dist/blocks.build.js:
|
3371 |
-
#: dist/blocks.build.js:
|
3372 |
-
#: dist/blocks.build.js:
|
3373 |
msgid "Remove Image"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#: dist/blocks.build.js:
|
3377 |
-
#: dist/blocks.build.js:
|
3378 |
msgid "Image Size"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: dist/blocks.build.js:
|
3382 |
-
#: dist/blocks.build.js:
|
3383 |
msgid "Custom Width"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: dist/blocks.build.js:
|
3387 |
msgid "Turn this off to inherit the natural width of Image."
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: dist/blocks.build.js:
|
3391 |
msgid "Width (px)"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: dist/blocks.build.js:
|
3395 |
msgid "Image/Icon"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: dist/blocks.build.js:
|
3399 |
msgid "Select Position"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: dist/blocks.build.js:
|
3403 |
msgid "Above Title"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: dist/blocks.build.js:
|
3407 |
msgid "Below Title"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: dist/blocks.build.js:
|
3411 |
msgid "Left of Title"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: dist/blocks.build.js:
|
3415 |
msgid "Right of Title"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: dist/blocks.build.js:
|
3419 |
msgid "Left of Text and Title"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: dist/blocks.build.js:
|
3423 |
msgid "Right of Text and Title"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: dist/blocks.build.js:
|
3427 |
-
#: dist/blocks.build.js:
|
3428 |
msgid "Note: Choose on what breakpoint the Info Box will stack."
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: dist/blocks.build.js:
|
3432 |
msgid "Select Source"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: dist/blocks.build.js:
|
3436 |
-
#: dist/blocks.build.js:
|
3437 |
msgid "Vertical Alignment"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: dist/blocks.build.js:
|
3441 |
-
#: dist/blocks.build.js:
|
3442 |
-
#: dist/blocks.build.js:
|
3443 |
-
#: dist/blocks.build.js:
|
3444 |
-
#: dist/blocks.build.js:
|
3445 |
msgid "Middle"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: dist/blocks.build.js:
|
3449 |
msgid "testimonial"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: dist/blocks.build.js:
|
3453 |
msgid "Name"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: dist/blocks.build.js:
|
3457 |
msgid "Company"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: dist/blocks.build.js:
|
3461 |
msgid "Testimonial Color"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: dist/blocks.build.js:
|
3465 |
msgid "Name Color"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: dist/blocks.build.js:
|
3469 |
msgid "Company Color"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: dist/blocks.build.js:
|
3473 |
msgid "Arrow & Dots Color"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: dist/blocks.build.js:
|
3477 |
msgid "Gap Between Content & Dots"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: dist/blocks.build.js:
|
3481 |
msgid "Testimonial Bottom Margin"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: dist/blocks.build.js:
|
3485 |
msgid "Name Bottom Margin"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: dist/blocks.build.js:
|
3489 |
msgid "Image Horizontal Padding"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: dist/blocks.build.js:
|
3493 |
msgid "Image Vertical Padding"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: dist/blocks.build.js:
|
3497 |
msgid "Settings"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: dist/blocks.build.js:
|
3501 |
msgid "Number of Testimonials"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: dist/blocks.build.js:
|
3505 |
-
#: dist/blocks.build.js:
|
3506 |
-
#: dist/blocks.build.js:
|
3507 |
-
#: dist/blocks.build.js:
|
3508 |
-
#: dist/blocks.build.js:
|
3509 |
msgid "Bottom"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: dist/blocks.build.js:
|
3513 |
-
#: dist/blocks.build.js:
|
3514 |
-
#: dist/blocks.build.js:
|
3515 |
-
#: dist/blocks.build.js:
|
3516 |
-
#: dist/blocks.build.js:
|
3517 |
-
#: dist/blocks.build.js:
|
3518 |
-
#: dist/blocks.build.js:
|
3519 |
-
#: dist/blocks.build.js:
|
3520 |
-
#: dist/blocks.build.js:
|
3521 |
-
#: dist/blocks.build.js:
|
3522 |
-
#: dist/blocks.build.js:
|
3523 |
msgid "Left"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: dist/blocks.build.js:
|
3527 |
-
#: dist/blocks.build.js:
|
3528 |
-
#: dist/blocks.build.js:
|
3529 |
-
#: dist/blocks.build.js:
|
3530 |
-
#: dist/blocks.build.js:
|
3531 |
-
#: dist/blocks.build.js:
|
3532 |
-
#: dist/blocks.build.js:
|
3533 |
-
#: dist/blocks.build.js:
|
3534 |
-
#: dist/blocks.build.js:
|
3535 |
-
#: dist/blocks.build.js:
|
3536 |
-
#: dist/blocks.build.js:
|
3537 |
msgid "Right"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: dist/blocks.build.js:
|
3541 |
msgid "Vertical ALignment"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: dist/blocks.build.js:
|
3545 |
-
#: dist/blocks.build.js:
|
3546 |
msgid "Image Style"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#: dist/blocks.build.js:
|
3550 |
-
#: dist/blocks.build.js:
|
3551 |
msgid "Circle"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: dist/blocks.build.js:
|
3555 |
-
#: dist/blocks.build.js:
|
3556 |
msgid "Square"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: dist/blocks.build.js:
|
3560 |
msgid "team"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: dist/blocks.build.js:
|
3564 |
msgid "members"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: dist/blocks.build.js:
|
3568 |
msgid "Write a Title"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: dist/blocks.build.js:
|
3572 |
msgid "Enter Prefix"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: dist/blocks.build.js:
|
3576 |
msgid "Write a Designation"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: dist/blocks.build.js:
|
3580 |
msgid "Team Member Image"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: dist/blocks.build.js:
|
3584 |
msgid "Above"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: dist/blocks.build.js:
|
3588 |
msgid "Social Links"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: dist/blocks.build.js:
|
3592 |
msgid "Enable Social Links"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: dist/blocks.build.js:
|
3596 |
msgid "Open Links in New Window"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: dist/blocks.build.js:
|
3600 |
-
#: dist/blocks.build.js:
|
3601 |
msgid "Twitter"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: dist/blocks.build.js:
|
3605 |
-
#: dist/blocks.build.js:
|
3606 |
-
#: dist/blocks.build.js:
|
3607 |
-
#: dist/blocks.build.js:
|
3608 |
-
#: dist/blocks.build.js:
|
3609 |
-
#: dist/blocks.build.js:
|
3610 |
msgid "URL"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
-
#: dist/blocks.build.js:
|
3614 |
msgid "Enter Twitter URL"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: dist/blocks.build.js:
|
3618 |
-
#: dist/blocks.build.js:
|
3619 |
msgid "Facebook"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: dist/blocks.build.js:
|
3623 |
msgid "Enter Facebook URL"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: dist/blocks.build.js:
|
3627 |
-
#: dist/blocks.build.js:
|
3628 |
msgid "LinkedIn"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: dist/blocks.build.js:
|
3632 |
msgid "Enter LinkedIn URL"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: dist/blocks.build.js:
|
3636 |
-
#: dist/blocks.build.js:
|
3637 |
msgid "Pinterest"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: dist/blocks.build.js:
|
3641 |
msgid "Enter Pinterest URL"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: dist/blocks.build.js:
|
3645 |
msgid "Prefix"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: dist/blocks.build.js:
|
3649 |
-
#: dist/blocks.build.js:
|
3650 |
-
#: dist/blocks.build.js:
|
3651 |
-
#: dist/blocks.build.js:
|
3652 |
-
#: dist/blocks.build.js:
|
3653 |
-
#: dist/blocks.build.js:
|
3654 |
-
#: dist/blocks.build.js:
|
3655 |
msgid "Description"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: dist/blocks.build.js:
|
3659 |
msgid "Social Icons"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: dist/blocks.build.js:
|
3663 |
msgid "Designation Color"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: dist/blocks.build.js:
|
3667 |
msgid "Social Icon Color"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: dist/blocks.build.js:
|
3671 |
msgid "Social Icon Hover Color"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: dist/blocks.build.js:
|
3675 |
msgid "Designation Bottom Spacing"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: dist/blocks.build.js:
|
3679 |
msgid "Description Bottom Spacing"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: dist/blocks.build.js:
|
3683 |
msgid "Inter Social Icon Spacing"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: dist/blocks.build.js:
|
3687 |
msgid "Image Margin (px)"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: dist/blocks.build.js:
|
3691 |
-
#: dist/blocks.build.js:
|
3692 |
msgid "social share"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
-
#: dist/blocks.build.js:
|
3696 |
-
#: dist/blocks.build.js:
|
3697 |
msgid "icon"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: dist/blocks.build.js:
|
3701 |
-
#: dist/blocks.build.js:
|
3702 |
msgid "Note: Choose on what breakpoint the Icons will stack."
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: dist/blocks.build.js:
|
3706 |
-
#: dist/blocks.build.js:
|
3707 |
-
#: dist/blocks.build.js:
|
3708 |
-
#: dist/blocks.build.js:
|
3709 |
-
#: dist/blocks.build.js:
|
3710 |
msgid "Background Size"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#: dist/blocks.build.js:
|
3714 |
-
#: dist/blocks.build.js:
|
3715 |
msgid "Note: Background Size option is useful when one adds background color to the icons."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: dist/blocks.build.js:
|
3719 |
-
#: dist/blocks.build.js:
|
3720 |
msgid "Note: Border Radius option is useful when one adds background color to the icons."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: dist/blocks.build.js:
|
3724 |
-
#: dist/blocks.build.js:
|
3725 |
msgid "Gap between Items"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: dist/blocks.build.js:
|
3729 |
msgid "Note: The gap between the items will seem larger in the editor, for better user edit experience. But at frontend the gap will be exactly what is set from here."
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: dist/blocks.build.js:
|
3733 |
-
#: dist/blocks.build.js:
|
3734 |
msgid "Image Background Color"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: dist/blocks.build.js:
|
3738 |
-
#: dist/blocks.build.js:
|
3739 |
msgid "Image Background Hover Color"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: dist/blocks.build.js:
|
3743 |
-
#: dist/blocks.build.js:
|
3744 |
-
#: dist/blocks.build.js:
|
3745 |
msgid "Icon Background Color"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
-
#: dist/blocks.build.js:
|
3749 |
-
#: dist/blocks.build.js:
|
3750 |
msgid "Icon Background Hover Color"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: dist/blocks.build.js:
|
3754 |
msgid "Social Share Settings"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: dist/blocks.build.js:
|
3758 |
msgid "Google Currents"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: dist/blocks.build.js:
|
3762 |
msgid "Digg"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: dist/blocks.build.js:
|
3766 |
msgid "Blogger"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: dist/blocks.build.js:
|
3770 |
msgid "Reddit"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: dist/blocks.build.js:
|
3774 |
msgid "StumbleUpon"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: dist/blocks.build.js:
|
3778 |
msgid "Tumblr"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: dist/blocks.build.js:
|
3782 |
msgid "Myspace"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: dist/blocks.build.js:
|
3786 |
msgid "Email"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: dist/blocks.build.js:
|
3790 |
msgid "Pocket"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: dist/blocks.build.js:
|
3794 |
msgid "VK"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: dist/blocks.build.js:
|
3798 |
msgid "Odnoklassniki"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: dist/blocks.build.js:
|
3802 |
msgid "Skype"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: dist/blocks.build.js:
|
3806 |
msgid "Telegram"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: dist/blocks.build.js:
|
3810 |
msgid "WhatsApp"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: dist/blocks.build.js:
|
3814 |
msgid "Xing"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: dist/blocks.build.js:
|
3818 |
msgid "Buffer"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: dist/blocks.build.js:
|
3822 |
-
#: dist/blocks.build.js:
|
3823 |
msgid "Image / Icon"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: dist/blocks.build.js:
|
3827 |
-
#: dist/blocks.build.js:
|
3828 |
msgid "Icon Color Settings"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: dist/blocks.build.js:
|
3832 |
msgid "This block uses Ultimate Addon for Gutenberg's API key to display the map. You don't need to create your own API key or worry about renewing it."
|
3833 |
msgstr ""
|
3834 |
|
3835 |
-
#: dist/blocks.build.js:
|
3836 |
msgid "Address"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: dist/blocks.build.js:
|
3840 |
msgid "Type the address"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: dist/blocks.build.js:
|
3844 |
msgid "Zoom"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
-
#: dist/blocks.build.js:
|
3848 |
-
#: dist/blocks.build.js:
|
3849 |
-
#: dist/blocks.build.js:
|
3850 |
-
#: dist/blocks.build.js:
|
3851 |
-
#: dist/blocks.build.js:
|
3852 |
-
#: dist/blocks.build.js:
|
3853 |
-
#: dist/blocks.build.js:
|
3854 |
-
#: dist/blocks.build.js:
|
3855 |
-
#: dist/blocks.build.js:
|
3856 |
-
#: dist/blocks.build.js:
|
3857 |
msgid "Height"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: dist/blocks.build.js:
|
3861 |
msgid "Language"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: dist/blocks.build.js:
|
3865 |
msgid "Afrikaans"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: dist/blocks.build.js:
|
3869 |
msgid "Albanian"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: dist/blocks.build.js:
|
3873 |
msgid "Amharic"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: dist/blocks.build.js:
|
3877 |
msgid "Arabic"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: dist/blocks.build.js:
|
3881 |
msgid "Armenian"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: dist/blocks.build.js:
|
3885 |
msgid "Azerbaijani"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: dist/blocks.build.js:
|
3889 |
msgid "Basque"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: dist/blocks.build.js:
|
3893 |
msgid "Belarusian"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: dist/blocks.build.js:
|
3897 |
msgid "Bengali"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: dist/blocks.build.js:
|
3901 |
msgid "Bosnian"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: dist/blocks.build.js:
|
3905 |
msgid "Bulgarian"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: dist/blocks.build.js:
|
3909 |
msgid "Burmese"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
-
#: dist/blocks.build.js:
|
3913 |
msgid "Catalan"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#: dist/blocks.build.js:
|
3917 |
msgid "Chinese"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: dist/blocks.build.js:
|
3921 |
msgid "Croatian"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: dist/blocks.build.js:
|
3925 |
msgid "Czech"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: dist/blocks.build.js:
|
3929 |
msgid "Danish"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: dist/blocks.build.js:
|
3933 |
msgid "Dutch"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: dist/blocks.build.js:
|
3937 |
msgid "English"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: dist/blocks.build.js:
|
3941 |
msgid "Estonian"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: dist/blocks.build.js:
|
3945 |
msgid "Farsi"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: dist/blocks.build.js:
|
3949 |
msgid "Finnish"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: dist/blocks.build.js:
|
3953 |
msgid "French"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: dist/blocks.build.js:
|
3957 |
msgid "Galician"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: dist/blocks.build.js:
|
3961 |
msgid "Georgian"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: dist/blocks.build.js:
|
3965 |
msgid "German"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: dist/blocks.build.js:
|
3969 |
msgid "Greek"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: dist/blocks.build.js:
|
3973 |
msgid "Gujarati"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#: dist/blocks.build.js:
|
3977 |
msgid "Hebrew"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: dist/blocks.build.js:
|
3981 |
msgid "Hindi"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: dist/blocks.build.js:
|
3985 |
msgid "Hungarian"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: dist/blocks.build.js:
|
3989 |
msgid "Icelandic"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: dist/blocks.build.js:
|
3993 |
msgid "Indonesian"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: dist/blocks.build.js:
|
3997 |
msgid "Italian"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: dist/blocks.build.js:
|
4001 |
msgid "Japanese"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#: dist/blocks.build.js:
|
4005 |
msgid "Kannada"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
-
#: dist/blocks.build.js:
|
4009 |
msgid "Kazakh"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
#: dist/blocks.build.js:
|
4013 |
msgid "Khmer"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
#: dist/blocks.build.js:
|
4017 |
msgid "Korean"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: dist/blocks.build.js:
|
4021 |
msgid "Kyrgyz"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: dist/blocks.build.js:
|
4025 |
msgid "Lao"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
#: dist/blocks.build.js:
|
4029 |
msgid "Latvian"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: dist/blocks.build.js:
|
4033 |
msgid "Lithuanian"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
#: dist/blocks.build.js:
|
4037 |
msgid "Macedonian"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: dist/blocks.build.js:
|
4041 |
msgid "Malay"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
#: dist/blocks.build.js:
|
4045 |
msgid "Malayalam"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: dist/blocks.build.js:
|
4049 |
msgid "Marathi"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: dist/blocks.build.js:
|
4053 |
msgid "Mongolian"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: dist/blocks.build.js:
|
4057 |
msgid "Nepali"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: dist/blocks.build.js:
|
4061 |
msgid "Norwegian"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: dist/blocks.build.js:
|
4065 |
msgid "Polish"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: dist/blocks.build.js:
|
4069 |
msgid "Portuguese"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: dist/blocks.build.js:
|
4073 |
msgid "Punjabi"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: dist/blocks.build.js:
|
4077 |
msgid "Romanian"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: dist/blocks.build.js:
|
4081 |
msgid "Russian"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: dist/blocks.build.js:
|
4085 |
msgid "Serbian"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: dist/blocks.build.js:
|
4089 |
msgid "Sinhalese"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: dist/blocks.build.js:
|
4093 |
msgid "Slovak"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: dist/blocks.build.js:
|
4097 |
msgid "Slovenian"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: dist/blocks.build.js:
|
4101 |
msgid "Spanish"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: dist/blocks.build.js:
|
4105 |
msgid "Swahili"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: dist/blocks.build.js:
|
4109 |
msgid "Swedish"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: dist/blocks.build.js:
|
4113 |
msgid "Tamil"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: dist/blocks.build.js:
|
4117 |
msgid "Telugu"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: dist/blocks.build.js:
|
4121 |
msgid "Thai"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: dist/blocks.build.js:
|
4125 |
msgid "Turkish"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: dist/blocks.build.js:
|
4129 |
msgid "Ukrainian"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: dist/blocks.build.js:
|
4133 |
msgid "Urdu"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: dist/blocks.build.js:
|
4137 |
msgid "Uzbek"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: dist/blocks.build.js:
|
4141 |
msgid "Vietnamese"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: dist/blocks.build.js:
|
4145 |
msgid "Zulu"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: dist/blocks.build.js:
|
4149 |
msgid "google map"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: dist/blocks.build.js:
|
4153 |
msgid "map"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: dist/blocks.build.js:
|
4157 |
msgid "icon list"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: dist/blocks.build.js:
|
4161 |
msgid "image list"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: dist/blocks.build.js:
|
4165 |
msgid "Hide Labels"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: dist/blocks.build.js:
|
4169 |
msgid "Note: For better editing experience, the gap between items might look larger than applied. Viewing in frontend will show the actual results."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: dist/blocks.build.js:
|
4173 |
msgid "Gap between Icon and Label"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: dist/blocks.build.js:
|
4177 |
-
#: dist/blocks.build.js:
|
4178 |
msgid "Icon Alignment"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: dist/blocks.build.js:
|
4182 |
msgid "Note: This manages the Icon Position with respect to the Label."
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: dist/blocks.build.js:
|
4186 |
msgid "Note: Border option is useful when one adds border color to the icons."
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#: dist/blocks.build.js:
|
4190 |
msgid "Image Border Color"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#: dist/blocks.build.js:
|
4194 |
msgid "Image Border Hover Color"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
-
#: dist/blocks.build.js:
|
4198 |
msgid "Icon Border Color"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#: dist/blocks.build.js:
|
4202 |
msgid "Icon Border Hover Color"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: dist/blocks.build.js:
|
4206 |
msgid "Label Name"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#: dist/blocks.build.js:
|
4210 |
msgid "Icon Settings"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#: dist/blocks.build.js:
|
4214 |
msgid "List Item Link"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: dist/blocks.build.js:
|
4218 |
msgid "Disable Link"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: dist/blocks.build.js:
|
4222 |
msgid "Enter URL"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: dist/blocks.build.js:
|
4226 |
msgid "Open in New Tab"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: dist/blocks.build.js:
|
4230 |
-
#: dist/blocks.build.js:
|
4231 |
msgid "Timeline"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: dist/blocks.build.js:
|
4235 |
-
#: dist/blocks.build.js:
|
4236 |
-
#: dist/blocks.build.js:
|
4237 |
-
#: dist/blocks.build.js:
|
4238 |
msgid "Line Color"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: dist/blocks.build.js:
|
4242 |
-
#: dist/blocks.build.js:
|
4243 |
msgid "Connector Color Settings"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: dist/blocks.build.js:
|
4247 |
-
#: dist/blocks.build.js:
|
4248 |
msgid "Focus"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: dist/blocks.build.js:
|
4252 |
-
#: dist/blocks.build.js:
|
4253 |
-
#: dist/blocks.build.js:
|
4254 |
msgid "Timeline Item"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: dist/blocks.build.js:
|
4258 |
-
#: dist/blocks.build.js:
|
4259 |
-
#: dist/blocks.build.js:
|
4260 |
msgid "P"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: dist/blocks.build.js:
|
4264 |
-
#: dist/blocks.build.js:
|
4265 |
msgid "SPAN"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: dist/blocks.build.js:
|
4269 |
-
#: dist/blocks.build.js:
|
4270 |
-
#: dist/blocks.build.js:
|
4271 |
-
#: dist/blocks.build.js:
|
4272 |
-
#: dist/blocks.build.js:
|
4273 |
msgid "Content Color"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: dist/blocks.build.js:
|
4277 |
-
#: dist/blocks.build.js:
|
4278 |
msgid "Orientation"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: dist/blocks.build.js:
|
4282 |
-
#: dist/blocks.build.js:
|
4283 |
-
#: dist/blocks.build.js:
|
4284 |
-
#: dist/blocks.build.js:
|
4285 |
-
#: dist/blocks.build.js:
|
4286 |
-
#: dist/blocks.build.js:
|
4287 |
-
#: dist/blocks.build.js:
|
4288 |
-
#: dist/blocks.build.js:
|
4289 |
-
#: dist/blocks.build.js:
|
4290 |
msgid "Center"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: dist/blocks.build.js:
|
4294 |
-
#: dist/blocks.build.js:
|
4295 |
msgid "Arrow Alignment"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: dist/blocks.build.js:
|
4299 |
msgid "Note: Choose on what breakpoint the Content Timeline will stack."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: dist/blocks.build.js:
|
4303 |
msgid "Display Date"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: dist/blocks.build.js:
|
4307 |
-
#: dist/blocks.build.js:
|
4308 |
msgid "Date Format"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#: dist/blocks.build.js:
|
4312 |
msgid "Normal Text"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#: dist/blocks.build.js:
|
4316 |
-
#: dist/blocks.build.js:
|
4317 |
msgid "Date Bottom Spacing"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: dist/blocks.build.js:
|
4321 |
msgid "Content Tag"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: dist/blocks.build.js:
|
4325 |
msgid "Date Typography"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: dist/blocks.build.js:
|
4329 |
-
#: dist/blocks.build.js:
|
4330 |
msgid "Date Color"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: dist/blocks.build.js:
|
4334 |
-
#: dist/blocks.build.js:
|
4335 |
msgid "Horizontal Space"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: dist/blocks.build.js:
|
4339 |
-
#: dist/blocks.build.js:
|
4340 |
msgid "Vertical Space"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
-
#: dist/blocks.build.js:
|
4344 |
-
#: dist/blocks.build.js:
|
4345 |
msgid "Heading Bottom Spacing"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: dist/blocks.build.js:
|
4349 |
-
#: dist/blocks.build.js:
|
4350 |
msgid "Connector"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: dist/blocks.build.js:
|
4354 |
-
#: dist/blocks.build.js:
|
4355 |
msgid "Icon Background Size"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: dist/blocks.build.js:
|
4359 |
-
#: dist/blocks.build.js:
|
4360 |
msgid "Connector Width"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: dist/blocks.build.js:
|
4364 |
msgid "timeline"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: dist/blocks.build.js:
|
4368 |
-
#: dist/blocks.build.js:
|
4369 |
-
#: dist/blocks.build.js:
|
4370 |
msgid "Author Color"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: dist/blocks.build.js:
|
4374 |
msgid "CTA Color"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: dist/blocks.build.js:
|
4378 |
msgid "CTA Background Color"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
-
#: dist/blocks.build.js:
|
4382 |
msgid "Query"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: dist/blocks.build.js:
|
4386 |
msgid "Note: Choose on what breakpoint the Post Timeline will stack."
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#: dist/blocks.build.js:
|
4390 |
msgid "Display Featured Image"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: dist/blocks.build.js:
|
4394 |
msgid "Featured Image Style"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: dist/blocks.build.js:
|
4398 |
msgid "Display Post Author"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: dist/blocks.build.js:
|
4402 |
msgid "Display Post Date"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: dist/blocks.build.js:
|
4406 |
msgid "Display Post Excerpt"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#: dist/blocks.build.js:
|
4410 |
msgid "Excerpt Length"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
-
#: dist/blocks.build.js:
|
4414 |
msgid "Display Continue Reading Link"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
-
#: dist/blocks.build.js:
|
4418 |
msgid "CTA Text"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: dist/blocks.build.js:
|
4422 |
msgid "CTA"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: dist/blocks.build.js:
|
4426 |
msgid "Block Padding"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: dist/blocks.build.js:
|
4430 |
-
#: dist/blocks.build.js:
|
4431 |
msgid "Author Bottom Spacing"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: dist/blocks.build.js:
|
4435 |
msgid "Content Bottom Spacing"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: dist/blocks.build.js:
|
4439 |
-
#: dist/blocks.build.js:
|
4440 |
msgid "cta"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: dist/blocks.build.js:
|
4444 |
msgid "call to action"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: dist/blocks.build.js:
|
4448 |
msgid "CTA Text Color"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: dist/blocks.build.js:
|
4452 |
msgid "CTA Text Hover Color"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#: dist/blocks.build.js:
|
4456 |
-
#: dist/blocks.build.js:
|
4457 |
msgid "Tag"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: dist/blocks.build.js:
|
4461 |
msgid "Heading Bottom Margin"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: dist/blocks.build.js:
|
4465 |
msgid "Content Left Margin"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: dist/blocks.build.js:
|
4469 |
msgid "Content Right Margin"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: dist/blocks.build.js:
|
4473 |
msgid "Button Position"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: dist/blocks.build.js:
|
4477 |
msgid "Stack"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: dist/blocks.build.js:
|
4481 |
msgid "Note: Choose on what breakpoint the CTA button will stack."
|
4482 |
msgstr ""
|
4483 |
|
4484 |
-
#: dist/blocks.build.js:
|
4485 |
-
#: dist/blocks.build.js:
|
4486 |
-
#: dist/blocks.build.js:
|
4487 |
-
#: dist/blocks.build.js:
|
4488 |
msgid "Content Width (%)"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: dist/blocks.build.js:
|
4492 |
msgid "Verticle Alignment"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: dist/blocks.build.js:
|
4496 |
-
#: dist/blocks.build.js:
|
4497 |
msgid "Padding Mobile"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: dist/blocks.build.js:
|
4501 |
msgid "columns"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: dist/blocks.build.js:
|
4505 |
msgid "rows"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
-
#: dist/blocks.build.js:
|
4509 |
msgid "Tilt"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: dist/blocks.build.js:
|
4513 |
msgid "Mountains"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
-
#: dist/blocks.build.js:
|
4517 |
msgid "Wave Brush"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: dist/blocks.build.js:
|
4521 |
msgid "Waves"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
-
#: dist/blocks.build.js:
|
4525 |
msgid "Waves Pattern"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#: dist/blocks.build.js:
|
4529 |
msgid "Triangle"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
-
#: dist/blocks.build.js:
|
4533 |
msgid "Drops"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: dist/blocks.build.js:
|
4537 |
msgid "Clouds"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: dist/blocks.build.js:
|
4541 |
msgid "ZigZag"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: dist/blocks.build.js:
|
4545 |
msgid "Pyramids"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: dist/blocks.build.js:
|
4549 |
msgid "Triangle Asymmetrical"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: dist/blocks.build.js:
|
4553 |
msgid "Tilt Opacity"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: dist/blocks.build.js:
|
4557 |
msgid "Fan Opacity"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: dist/blocks.build.js:
|
4561 |
msgid "Curve"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: dist/blocks.build.js:
|
4565 |
msgid "Curve Asymmetrical"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: dist/blocks.build.js:
|
4569 |
msgid "Arrow"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: dist/blocks.build.js:
|
4573 |
msgid "Arrow Split"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: dist/blocks.build.js:
|
4577 |
-
#: dist/blocks.build.js:
|
4578 |
msgid "Book"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
-
#: dist/blocks.build.js:
|
4582 |
-
#: dist/blocks.build.js:
|
4583 |
msgid "Flip"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
-
#: dist/blocks.build.js:
|
4587 |
-
#: dist/blocks.build.js:
|
4588 |
msgid "Bring To Front"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#: dist/blocks.build.js:
|
4592 |
msgid "Select a variation to start with."
|
4593 |
msgstr ""
|
4594 |
|
4595 |
-
#: dist/blocks.build.js:
|
4596 |
msgid "Note: Choose on what breakpoint the columns will stack."
|
4597 |
msgstr ""
|
4598 |
|
4599 |
-
#: dist/blocks.build.js:
|
4600 |
msgid "Container Width"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
-
#: dist/blocks.build.js:
|
4604 |
msgid "Theme Container Width"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#: dist/blocks.build.js:
|
4608 |
msgid "Custom"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
-
#: dist/blocks.build.js:
|
4612 |
msgid "Default (10px)"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
-
#: dist/blocks.build.js:
|
4616 |
msgid "No Gap (0px)"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
#. translators: abbreviation for small size
|
4620 |
-
#: dist/blocks.build.js:
|
4621 |
-
#: dist/blocks.build.js:
|
4622 |
msgid "S"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: dist/blocks.build.js:
|
4626 |
msgid "Narrow (5px)"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
#. translators: abbreviation for medium size
|
4630 |
-
#: dist/blocks.build.js:
|
4631 |
-
#: dist/blocks.build.js:
|
4632 |
msgid "M"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
-
#: dist/blocks.build.js:
|
4636 |
msgid "Extended (15px)"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
#. translators: abbreviation for large size
|
4640 |
-
#: dist/blocks.build.js:
|
4641 |
-
#: dist/blocks.build.js:
|
4642 |
msgid "L"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: dist/blocks.build.js:
|
4646 |
msgid "Wide (20px)"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
#. translators: abbreviation for extra large size
|
4650 |
-
#: dist/blocks.build.js:
|
4651 |
-
#: dist/blocks.build.js:
|
4652 |
msgid "XL"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#: dist/blocks.build.js:
|
4656 |
msgid "Wider (30px)"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
-
#: dist/blocks.build.js:
|
4660 |
msgid "Note: The individual Column Gap can be managed from Column Settings."
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: dist/blocks.build.js:
|
4664 |
msgid "Reverse Columns (Tablet)"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#: dist/blocks.build.js:
|
4668 |
msgid "Reverse Columns (Mobile)"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#: dist/blocks.build.js:
|
4672 |
msgid "Remove Video"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: dist/blocks.build.js:
|
4676 |
msgid "Video Overlay Color"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: dist/blocks.build.js:
|
4680 |
msgid "Shape Dividers"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: dist/blocks.build.js:
|
4684 |
msgid "Small"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: dist/blocks.build.js:
|
4688 |
msgid "Extra Large"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#: dist/blocks.build.js:
|
4692 |
msgid "CF7 styler"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: dist/blocks.build.js:
|
4696 |
msgid "contact form styler"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: dist/blocks.build.js:
|
4700 |
-
#: dist/blocks.build.js:
|
4701 |
msgid "Field Style & Border"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: dist/blocks.build.js:
|
4705 |
-
#: dist/blocks.build.js:
|
4706 |
msgid "Field Style"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: dist/blocks.build.js:
|
4710 |
-
#: dist/blocks.build.js:
|
4711 |
msgid "Box"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: dist/blocks.build.js:
|
4715 |
-
#: dist/blocks.build.js:
|
4716 |
msgid "Underline"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#: dist/blocks.build.js:
|
4720 |
-
#: dist/blocks.build.js:
|
4721 |
-
#: dist/blocks.build.js:
|
4722 |
-
#: dist/blocks.build.js:
|
4723 |
-
#: dist/blocks.build.js:
|
4724 |
-
#: dist/blocks.build.js:
|
4725 |
msgid "Border Width (px)"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
-
#: dist/blocks.build.js:
|
4729 |
-
#: dist/blocks.build.js:
|
4730 |
msgid "Active Border Color"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: dist/blocks.build.js:
|
4734 |
-
#: dist/blocks.build.js:
|
4735 |
-
#: dist/blocks.build.js:
|
4736 |
msgid "Label"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#: dist/blocks.build.js:
|
4740 |
-
#: dist/blocks.build.js:
|
4741 |
msgid "Input"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: dist/blocks.build.js:
|
4745 |
-
#: dist/blocks.build.js:
|
4746 |
msgid "Field Background Color"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: dist/blocks.build.js:
|
4750 |
msgid "Select a Contact Form 7"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: dist/blocks.build.js:
|
4754 |
-
#: dist/blocks.build.js:
|
4755 |
msgid "Submit Button"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: dist/blocks.build.js:
|
4759 |
-
#: dist/blocks.build.js:
|
4760 |
msgid "Button Alignment"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#: dist/blocks.build.js:
|
4764 |
-
#: dist/blocks.build.js:
|
4765 |
msgid "Justified"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: dist/blocks.build.js:
|
4769 |
-
#: dist/blocks.build.js:
|
4770 |
msgid "Button Font"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: dist/blocks.build.js:
|
4774 |
-
#: dist/blocks.build.js:
|
4775 |
msgid "Label & Input Space"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: dist/blocks.build.js:
|
4779 |
-
#: dist/blocks.build.js:
|
4780 |
msgid "Fields Space"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#: dist/blocks.build.js:
|
4784 |
-
#: dist/blocks.build.js:
|
4785 |
msgid "Field Padding (px)"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: dist/blocks.build.js:
|
4789 |
-
#: dist/blocks.build.js:
|
4790 |
msgid "Radio & Checkbox"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: dist/blocks.build.js:
|
4794 |
-
#: dist/blocks.build.js:
|
4795 |
msgid "Override Current Style"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: dist/blocks.build.js:
|
4799 |
-
#: dist/blocks.build.js:
|
4800 |
msgid "Radio & Checkbox Label"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#: dist/blocks.build.js:
|
4804 |
-
#: dist/blocks.build.js:
|
4805 |
msgid "Label Color"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: dist/blocks.build.js:
|
4809 |
-
#: dist/blocks.build.js:
|
4810 |
msgid "Selected Color"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: dist/blocks.build.js:
|
4814 |
-
#: dist/blocks.build.js:
|
4815 |
msgid "Success / Error Message"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
-
#: dist/blocks.build.js:
|
4819 |
msgid "Note: This styling can be only seen at frontend"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: dist/blocks.build.js:
|
4823 |
-
#: dist/blocks.build.js:
|
4824 |
msgid "Field Validation"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
-
#: dist/blocks.build.js:
|
4828 |
msgid "Validation Message Position"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: dist/blocks.build.js:
|
4832 |
msgid "Bottom Right Side of Field"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
-
#: dist/blocks.build.js:
|
4836 |
msgid "Validation Font"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
-
#: dist/blocks.build.js:
|
4840 |
msgid "Validation Message Color"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#: dist/blocks.build.js:
|
4844 |
-
#: dist/blocks.build.js:
|
4845 |
-
#: dist/blocks.build.js:
|
4846 |
msgid "Message Background Color"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
-
#: dist/blocks.build.js:
|
4850 |
msgid "Highlight Borders"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: dist/blocks.build.js:
|
4854 |
-
#: dist/blocks.build.js:
|
4855 |
msgid "Highlight Border Color"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
#: dist/blocks.build.js:
|
4859 |
msgid "Form Success / Error Validation"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: dist/blocks.build.js:
|
4863 |
msgid "Success Message"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: dist/blocks.build.js:
|
4867 |
-
#: dist/blocks.build.js:
|
4868 |
-
#: dist/blocks.build.js:
|
4869 |
msgid "Message Color"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: dist/blocks.build.js:
|
4873 |
-
#: dist/blocks.build.js:
|
4874 |
msgid "Message Border Color"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: dist/blocks.build.js:
|
4878 |
msgid "Error Message"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: dist/blocks.build.js:
|
4882 |
-
#: dist/blocks.build.js:
|
4883 |
msgid "Message Border Width (px)"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: dist/blocks.build.js:
|
4887 |
-
#: dist/blocks.build.js:
|
4888 |
msgid "Message Border Radius"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
#: dist/blocks.build.js:
|
4892 |
-
#: dist/blocks.build.js:
|
4893 |
msgid "Message Padding (px)"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#: dist/blocks.build.js:
|
4897 |
-
#: dist/blocks.build.js:
|
4898 |
msgid "Loading"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: dist/blocks.build.js:
|
4902 |
msgid "GF styler"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: dist/blocks.build.js:
|
4906 |
msgid "gravity form styler"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: dist/blocks.build.js:
|
4910 |
msgid "TextArea Height"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
-
#: dist/blocks.build.js:
|
4914 |
msgid "Tab Index"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: dist/blocks.build.js:
|
4918 |
msgid "Form Title & Description"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: dist/blocks.build.js:
|
4922 |
msgid "Show"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: dist/blocks.build.js:
|
4926 |
msgid "Hide"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
-
#: dist/blocks.build.js:
|
4930 |
msgid "Form Title & Description Alignment"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
-
#: dist/blocks.build.js:
|
4934 |
msgid "Select a Gravity Form"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
-
#: dist/blocks.build.js:
|
4938 |
msgid "Note: This styling can be only seen on frontend"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
-
#: dist/blocks.build.js:
|
4942 |
msgid "Advanced Settings"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
-
#: dist/blocks.build.js:
|
4946 |
msgid "Form Error Validation"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: dist/blocks.build.js:
|
4950 |
msgid "Error Message Color"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
-
#: dist/blocks.build.js:
|
4954 |
msgid "Error Message Background Color"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: dist/blocks.build.js:
|
4958 |
msgid "Form Success Validation"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: dist/blocks.build.js:
|
4962 |
msgid "Success Message Color"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: dist/blocks.build.js:
|
4966 |
msgid "Success Message Typography"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: dist/blocks.build.js:
|
4970 |
msgid "blockquote"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: dist/blocks.build.js:
|
4974 |
msgid "quote"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
-
#: dist/blocks.build.js:
|
4978 |
msgid "uagb"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: dist/blocks.build.js:
|
4982 |
msgid "Modern Layout - Styling"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
-
#: dist/blocks.build.js:
|
4986 |
msgid "Quote Border Style"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
-
#: dist/blocks.build.js:
|
4990 |
msgid "Quotation Layout - Styling"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
-
#: dist/blocks.build.js:
|
4994 |
-
#: dist/blocks.build.js:
|
4995 |
-
#: dist/blocks.build.js:
|
4996 |
msgid "Quote Icon Size"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: dist/blocks.build.js:
|
5000 |
msgid "Quote Icon Border Radius (%)"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#: dist/blocks.build.js:
|
5004 |
-
#: dist/blocks.build.js:
|
5005 |
msgid "Modern"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#: dist/blocks.build.js:
|
5009 |
msgid "Quotation"
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#: dist/blocks.build.js:
|
5013 |
msgid "Quote Icon Colors"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#: dist/blocks.build.js:
|
5017 |
msgid "Note: Choose on what breakpoint the elements will stack."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: dist/blocks.build.js:
|
5021 |
msgid "Author Image"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#: dist/blocks.build.js:
|
5025 |
msgid "Author Image Position"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#: dist/blocks.build.js:
|
5029 |
msgid "Author Image Size"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: dist/blocks.build.js:
|
5033 |
msgid "Author Image Width"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: dist/blocks.build.js:
|
5037 |
msgid "Author Image Rounded Corners"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: dist/blocks.build.js:
|
5041 |
msgid "Quote"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#: dist/blocks.build.js:
|
5045 |
msgid "Quote Color"
|
5046 |
msgstr ""
|
5047 |
|
5048 |
-
#: dist/blocks.build.js:
|
5049 |
-
#: dist/blocks.build.js:
|
5050 |
msgid "Tweet Color"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: dist/blocks.build.js:
|
5054 |
msgid "Tweet Background Color"
|
5055 |
msgstr ""
|
5056 |
|
5057 |
-
#: dist/blocks.build.js:
|
5058 |
-
#: dist/blocks.build.js:
|
5059 |
msgid "Tweet Hover Color"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
-
#: dist/blocks.build.js:
|
5063 |
msgid "Tweet Background Hover Color"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
-
#: dist/blocks.build.js:
|
5067 |
msgid "Quote Icon Margin (px)"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: dist/blocks.build.js:
|
5071 |
msgid "Gap Between Border and Quote"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: dist/blocks.build.js:
|
5075 |
msgid "Quote Bottom Spacing"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
-
#: dist/blocks.build.js:
|
5079 |
msgid "Vertical Padding"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
-
#: dist/blocks.build.js:
|
5083 |
msgid "Twitter Icon"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
-
#: dist/blocks.build.js:
|
5087 |
msgid "Enable Twitter Icon"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
-
#: dist/blocks.build.js:
|
5091 |
msgid "Icon View"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
-
#: dist/blocks.build.js:
|
5095 |
msgid "Icon & Text"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: dist/blocks.build.js:
|
5099 |
msgid "Icon Style"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
-
#: dist/blocks.build.js:
|
5103 |
-
#: dist/blocks.build.js:
|
5104 |
msgid "Classic"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: dist/blocks.build.js:
|
5108 |
msgid "Bubble"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#: dist/blocks.build.js:
|
5112 |
msgid "Target URL"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
-
#: dist/blocks.build.js:
|
5116 |
msgid "Current Page"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#: dist/blocks.build.js:
|
5120 |
msgid "Custom URL"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#: dist/blocks.build.js:
|
5124 |
msgid "Space between Tweet Icon and Text"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: dist/blocks.build.js:
|
5128 |
msgid "Normal Quote"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
-
#: dist/blocks.build.js:
|
5132 |
msgid "Inline Quote"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: dist/blocks.build.js:
|
5136 |
-
#: dist/blocks.build.js:
|
5137 |
msgid "Twitter Username"
|
5138 |
msgstr ""
|
5139 |
|
5140 |
-
#: dist/blocks.build.js:
|
5141 |
msgid "Username"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
-
#: dist/blocks.build.js:
|
5145 |
msgid "marketing button"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
-
#: dist/blocks.build.js:
|
5149 |
msgid "Text Alignment"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
-
#: dist/blocks.build.js:
|
5153 |
msgid "Title Hover Color"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
-
#: dist/blocks.build.js:
|
5157 |
msgid "Description Hover Color"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
-
#: dist/blocks.build.js:
|
5161 |
msgid "Button Background"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
-
#: dist/blocks.build.js:
|
5165 |
msgid "Transparent"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
-
#: dist/blocks.build.js:
|
5169 |
msgid "Add Button Title…"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
-
#: dist/blocks.build.js:
|
5173 |
msgid "Add Button Description…"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
-
#: dist/blocks.build.js:
|
5177 |
msgid "table of contents"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
-
#: dist/blocks.build.js:
|
5181 |
msgid "table"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: dist/blocks.build.js:
|
5185 |
msgid "Select the heading to consider when generating the table"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: dist/blocks.build.js:
|
5189 |
msgid "Smooth Scroll"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
-
#: dist/blocks.build.js:
|
5193 |
msgid "This will be in Action only in Front End."
|
5194 |
msgstr ""
|
5195 |
|
5196 |
-
#: dist/blocks.build.js:
|
5197 |
msgid "Smooth Scroll Offset (px)"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
#: dist/blocks.build.js:
|
5201 |
msgid "Scroll Animation Delay (ms)"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
-
#: dist/blocks.build.js:
|
5205 |
msgid "Show Scroll To Top"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
-
#: dist/blocks.build.js:
|
5209 |
msgid "This will add a Scroll to Top arrow at the bottom of page."
|
5210 |
msgstr ""
|
5211 |
|
5212 |
-
#: dist/blocks.build.js:
|
5213 |
msgid "Bottom Space"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
-
#: dist/blocks.build.js:
|
5217 |
msgid "Collapsible"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: dist/blocks.build.js:
|
5221 |
msgid "Make Content Collapsible"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
-
#: dist/blocks.build.js:
|
5225 |
msgid "Keep Collapsed Initially"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
-
#: dist/blocks.build.js:
|
5229 |
msgid "Disable Bullet Points"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
-
#: dist/blocks.build.js:
|
5233 |
msgid "Bullet Points Color"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
-
#: dist/blocks.build.js:
|
5237 |
-
#: dist/blocks.build.js:
|
5238 |
-
#: dist/blocks.build.js:
|
5239 |
msgid "Gap Between Lists"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: dist/blocks.build.js:
|
5243 |
msgid "Content Hover Color"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: dist/blocks.build.js:
|
5247 |
msgid "Table's width will be auto if this is kept off."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: dist/blocks.build.js:
|
5251 |
-
#: dist/blocks.build.js:
|
5252 |
-
#: dist/blocks.build.js:
|
5253 |
msgid "List Margin"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
-
#: dist/blocks.build.js:
|
5257 |
msgid "Table Of Contents"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
-
#: dist/blocks.build.js:
|
5261 |
msgid "how to"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: dist/blocks.build.js:
|
5265 |
-
#: dist/blocks.build.js:
|
5266 |
-
#: dist/blocks.build.js:
|
5267 |
msgid "schema"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: dist/blocks.build.js:
|
5271 |
-
#: dist/blocks.build.js:
|
5272 |
msgid "Primary Heading"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: dist/blocks.build.js:
|
5276 |
msgid "Show Total Time"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: dist/blocks.build.js:
|
5280 |
msgid "Note: Time is recommended field for schema. It should be ON"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: dist/blocks.build.js:
|
5284 |
msgid "Time"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
-
#: dist/blocks.build.js:
|
5288 |
-
#: dist/blocks.build.js:
|
5289 |
msgid "Years"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: dist/blocks.build.js:
|
5293 |
msgid "Months"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: dist/blocks.build.js:
|
5297 |
msgid "Days"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: dist/blocks.build.js:
|
5301 |
msgid "Hours"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: dist/blocks.build.js:
|
5305 |
msgid "Minutes"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: dist/blocks.build.js:
|
5309 |
msgid "Show Estimated Cost"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: dist/blocks.build.js:
|
5313 |
msgid "Note: Cost is recommended field for schema.It should be ON"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: dist/blocks.build.js:
|
5317 |
msgid "Click here to find your countrys ISO code."
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: dist/blocks.build.js:
|
5321 |
msgid "Show Tools"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: dist/blocks.build.js:
|
5325 |
-
#: dist/blocks.build.js:
|
5326 |
msgid "Note: This is recommended field for schema.It should be ON"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: dist/blocks.build.js:
|
5330 |
msgid "Number of Tools"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: dist/blocks.build.js:
|
5334 |
msgid "Show Materials"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: dist/blocks.build.js:
|
5338 |
msgid "Number of Materials"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: dist/blocks.build.js:
|
5342 |
-
#: dist/blocks.build.js:
|
5343 |
msgid "Secondary Heading"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: dist/blocks.build.js:
|
5347 |
msgid "Time Margin"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: dist/blocks.build.js:
|
5351 |
msgid "Cost Margin"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#: dist/blocks.build.js:
|
5355 |
msgid "Gap Between Steps"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: dist/blocks.build.js:
|
5359 |
msgid "Year"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#: dist/blocks.build.js:
|
5363 |
msgid " Months "
|
5364 |
msgstr ""
|
5365 |
|
5366 |
-
#: dist/blocks.build.js:
|
5367 |
msgid " Month "
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: dist/blocks.build.js:
|
5371 |
msgid " Days "
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: dist/blocks.build.js:
|
5375 |
msgid " Day "
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: dist/blocks.build.js:
|
5379 |
msgid "Hours "
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: dist/blocks.build.js:
|
5383 |
msgid " Hour "
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: dist/blocks.build.js:
|
5387 |
msgid " Minutes "
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: dist/blocks.build.js:
|
5391 |
msgid " Minute "
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: dist/blocks.build.js:
|
5395 |
msgid "How to configure HowTo Schema in UAG?"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: dist/blocks.build.js:
|
5399 |
msgid "So to get started, you will just need to drag-n-drop the How-to Schema block in the Gutenberg editor. The How-to Schema block can be used on pages which contain a How-to in their title and describe steps to achieve certain requirements."
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: dist/blocks.build.js:
|
5403 |
msgid "Total Time Needed ( Minutes ):"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: dist/blocks.build.js:
|
5407 |
msgid "30"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: dist/blocks.build.js:
|
5411 |
msgid "USD"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: dist/blocks.build.js:
|
5415 |
msgid "requirements tools:"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: dist/blocks.build.js:
|
5419 |
msgid "Requirements Tools:"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: dist/blocks.build.js:
|
5423 |
msgid "requirements materials:"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: dist/blocks.build.js:
|
5427 |
msgid "Requirements Materials:"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: dist/blocks.build.js:
|
5431 |
msgid "requirements Steps:"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: dist/blocks.build.js:
|
5435 |
msgid "faq"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: dist/blocks.build.js:
|
5439 |
msgid "accordion"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: dist/blocks.build.js:
|
5443 |
msgid "Accordion"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: dist/blocks.build.js:
|
5447 |
-
#: dist/blocks.build.js:
|
5448 |
msgid "Grid"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: dist/blocks.build.js:
|
5452 |
msgid "Collapse other items"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: dist/blocks.build.js:
|
5456 |
msgid "Expand First Item"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: dist/blocks.build.js:
|
5460 |
msgid "Enable Toggle"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: dist/blocks.build.js:
|
5464 |
msgid "Enable Schema Support"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: dist/blocks.build.js:
|
5468 |
-
#: dist/blocks.build.js:
|
5469 |
msgid "Mobile Columns"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: dist/blocks.build.js:
|
5473 |
-
#: dist/blocks.build.js:
|
5474 |
msgid "Tab Columns"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: dist/blocks.build.js:
|
5478 |
-
#: dist/blocks.build.js:
|
5479 |
msgid "Desktop Columns"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: dist/blocks.build.js:
|
5483 |
msgid "Rows Gap (px)"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: dist/blocks.build.js:
|
5487 |
msgid "Columns Gap (px)"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: dist/blocks.build.js:
|
5491 |
msgid "Enable Separator"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: dist/blocks.build.js:
|
5495 |
msgid "Gap between Icon and Question"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: dist/blocks.build.js:
|
5499 |
msgid "Expand Color"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: dist/blocks.build.js:
|
5503 |
msgid "Collapse Color"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: dist/blocks.build.js:
|
5507 |
msgid "Expand"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: dist/blocks.build.js:
|
5511 |
msgid "Collapse"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: dist/blocks.build.js:
|
5515 |
msgid "Question"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: dist/blocks.build.js:
|
5519 |
msgid "Question Tag"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: dist/blocks.build.js:
|
5523 |
msgid "Span"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: dist/blocks.build.js:
|
5527 |
msgid "Text Active/Hover Color"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: dist/blocks.build.js:
|
5531 |
msgid "Answer"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
-
#: dist/blocks.build.js:
|
5535 |
msgid "inline notice"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
-
#: dist/blocks.build.js:
|
5539 |
msgid "notice"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
-
#: dist/blocks.build.js:
|
5543 |
msgid "Allow Always"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: dist/blocks.build.js:
|
5547 |
msgid "Allow to Dismiss"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: dist/blocks.build.js:
|
5551 |
msgid "Highlight width"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: dist/blocks.build.js:
|
5555 |
msgid "Notice Display"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: dist/blocks.build.js:
|
5559 |
msgid "Enable Cookies"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: dist/blocks.build.js:
|
5563 |
msgid "Show Closed Notice After (Days)"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: dist/blocks.build.js:
|
5567 |
msgid "Highlight Color"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: dist/blocks.build.js:
|
5571 |
msgid "Content Background Color"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: dist/blocks.build.js:
|
5575 |
msgid "Dismiss Icon Color"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
-
#: dist/blocks.build.js:
|
5579 |
msgid "Title Padding (px)"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: dist/blocks.build.js:
|
5583 |
msgid "Content Padding (px)"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: dist/blocks.build.js:
|
5587 |
msgid "Notice Title"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: dist/blocks.build.js:
|
5591 |
msgid "Add notice text..."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: dist/blocks.build.js:
|
5595 |
msgid "search"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: dist/blocks.build.js:
|
5599 |
msgid "wp"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: dist/blocks.build.js:
|
5603 |
msgid "Minimal"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: dist/blocks.build.js:
|
5607 |
msgid "Placeholder"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: dist/blocks.build.js:
|
5611 |
msgid "Input Width"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: dist/blocks.build.js:
|
5615 |
msgid "Input Box"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: dist/blocks.build.js:
|
5619 |
msgid "Search"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: dist/blocks.build.js:
|
5623 |
msgid "ratings"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: dist/blocks.build.js:
|
5627 |
msgid "review"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
-
#: dist/blocks.build.js:
|
5631 |
msgid "Audio book"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
-
#: dist/blocks.build.js:
|
5635 |
msgid "Individual Product"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: dist/blocks.build.js:
|
5639 |
msgid "Product Collection"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: dist/blocks.build.js:
|
5643 |
msgid "Product Group"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: dist/blocks.build.js:
|
5647 |
msgid "Product Model"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: dist/blocks.build.js:
|
5651 |
msgid "Some Products"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: dist/blocks.build.js:
|
5655 |
msgid "Vehicle"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: dist/blocks.build.js:
|
5659 |
msgid "Mobile Application"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: dist/blocks.build.js:
|
5663 |
msgid "Video Game"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: dist/blocks.build.js:
|
5667 |
msgid "Web Application"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
-
#: dist/blocks.build.js:
|
5671 |
msgid "ISBN"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#: dist/blocks.build.js:
|
5675 |
-
#: dist/blocks.build.js:
|
5676 |
-
#: dist/blocks.build.js:
|
5677 |
-
#: dist/blocks.build.js:
|
5678 |
msgid "Note: This is a mandatory field for the Review schema"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: dist/blocks.build.js:
|
5682 |
msgid "Book author name"
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: dist/blocks.build.js:
|
5686 |
msgid "Provider"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: dist/blocks.build.js:
|
5690 |
msgid "Application Category"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: dist/blocks.build.js:
|
5694 |
msgid "Operating System"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
-
#: dist/blocks.build.js:
|
5698 |
msgid "Director Name"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
-
#: dist/blocks.build.js:
|
5702 |
msgid "Title Typography"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#: dist/blocks.build.js:
|
5706 |
msgid "Description Typography"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
-
#: dist/blocks.build.js:
|
5710 |
msgid "Summary Typography"
|
5711 |
msgstr ""
|
5712 |
|
5713 |
-
#: dist/blocks.build.js:
|
5714 |
msgid "Summary Color"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
-
#: dist/blocks.build.js:
|
5718 |
msgid "Active Star Color"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
-
#: dist/blocks.build.js:
|
5722 |
msgid "Inactive Star Color"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#: dist/blocks.build.js:
|
5726 |
msgid "Star Outline Color"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: dist/blocks.build.js:
|
5730 |
msgid "Overall Padding (px)"
|
5731 |
msgstr ""
|
5732 |
|
5733 |
-
#: dist/blocks.build.js:
|
5734 |
msgid "Schema"
|
5735 |
msgstr ""
|
5736 |
|
5737 |
-
#: dist/blocks.build.js:
|
5738 |
msgid "Item type"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: dist/blocks.build.js:
|
5742 |
msgid "Course"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: dist/blocks.build.js:
|
5746 |
msgid "Movie"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: dist/blocks.build.js:
|
5750 |
msgid "Product"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: dist/blocks.build.js:
|
5754 |
msgid "Software Application"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
-
#: dist/blocks.build.js:
|
5758 |
msgid "Item subtype"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
-
#: dist/blocks.build.js:
|
5762 |
msgid "Review publisher"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: dist/blocks.build.js:
|
5766 |
msgid "Date of publish"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
-
#: dist/blocks.build.js:
|
5770 |
msgid "Brand"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: dist/blocks.build.js:
|
5774 |
msgid "SKU"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: dist/blocks.build.js:
|
5778 |
msgid "Identifier"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: dist/blocks.build.js:
|
5782 |
msgid "Identifier type"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: dist/blocks.build.js:
|
5786 |
msgid "Offer Currency"
|
5787 |
msgstr ""
|
5788 |
|
5789 |
-
#: dist/blocks.build.js:
|
5790 |
msgid "Offer Price"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
-
#: dist/blocks.build.js:
|
5794 |
msgid "Discontinued"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#: dist/blocks.build.js:
|
5798 |
msgid "In Stock"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
-
#: dist/blocks.build.js:
|
5802 |
msgid "In Store Only"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: dist/blocks.build.js:
|
5806 |
msgid "Limited Availability"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
-
#: dist/blocks.build.js:
|
5810 |
msgid "Online Only"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
-
#: dist/blocks.build.js:
|
5814 |
msgid "Out Of Stock"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
-
#: dist/blocks.build.js:
|
5818 |
msgid "Pre Order"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
-
#: dist/blocks.build.js:
|
5822 |
msgid "Pre Sale"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: dist/blocks.build.js:
|
5826 |
msgid "Sold Out"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: dist/blocks.build.js:
|
5830 |
msgid "Price Valid Until"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: dist/blocks.build.js:
|
5834 |
msgid "Review Title"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: dist/blocks.build.js:
|
5838 |
msgid "Open in new window"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: dist/blocks.build.js:
|
5842 |
msgid "Show review description"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#: dist/blocks.build.js:
|
5846 |
-
#: dist/blocks.build.js:
|
5847 |
-
#: dist/blocks.build.js:
|
5848 |
msgid "Note: This is a mandatory field for the Review schema."
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: dist/blocks.build.js:
|
5852 |
msgid "Show review author"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: dist/blocks.build.js:
|
5856 |
msgid "Show review image"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: dist/blocks.build.js:
|
5860 |
msgid "Show ratings"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: dist/blocks.build.js:
|
5864 |
msgid "Note: Add feature/section ratings separately."
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: dist/blocks.build.js:
|
5868 |
msgid "Enable schema support"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: dist/blocks.build.js:
|
5872 |
msgid "Missing merchant-specific identifier for product ( SKU )"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: dist/blocks.build.js:
|
5876 |
msgid "Missing brand of the product"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: dist/blocks.build.js:
|
5880 |
msgid "Missing offer Type"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: dist/blocks.build.js:
|
5884 |
msgid "Missing offer currency of a product"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: dist/blocks.build.js:
|
5888 |
msgid "Missing offer price of a product"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: dist/blocks.build.js:
|
5892 |
msgid "Missing offer expiry of a product"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: dist/blocks.build.js:
|
5896 |
msgid "Missing global identifiers"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: dist/blocks.build.js:
|
5900 |
msgid "Missing ISBN number of a book"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: dist/blocks.build.js:
|
5904 |
msgid "Missing author of the book"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#: dist/blocks.build.js:
|
5908 |
msgid "Missing released date of the movie"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#: dist/blocks.build.js:
|
5912 |
msgid "Missing director name of the movie"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: dist/blocks.build.js:
|
5916 |
msgid "Missing provider of the course"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: dist/blocks.build.js:
|
5920 |
msgid "Missing type of application (Application Category)"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: dist/blocks.build.js:
|
5924 |
msgid "Missing operating system(s) required"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: dist/blocks.build.js:
|
5928 |
msgid "Missing Offer Type"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: dist/blocks.build.js:
|
5932 |
msgid "Missing offer price of the application"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#: dist/blocks.build.js:
|
5936 |
msgid "Missing offer currency of the application"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: dist/blocks.build.js:
|
5940 |
msgid "Missing title of the review"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#: dist/blocks.build.js:
|
5944 |
msgid "Missing review description"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: dist/blocks.build.js:
|
5948 |
msgid "Missing review Image"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
-
#: dist/blocks.build.js:
|
5952 |
msgid "Missing url field"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: dist/blocks.build.js:
|
5956 |
msgid "Missing review author name"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: dist/blocks.build.js:
|
5960 |
msgid "Missing review publisher"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: dist/blocks.build.js:
|
5964 |
msgid "Missing date of publish"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: dist/blocks.build.js:
|
5968 |
msgid "It seems that the following fields are empty. This may generate Schema errors / warnings for your Page, we recommend you to fill these fields."
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: dist/blocks.build.js:
|
5972 |
msgid "P.S. Note that this notice is visible only in the editor. This will not be visible in frontend. Also, once the required fields are added, this notice will go away."
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: dist/blocks.build.js:
|
5976 |
msgid "Read more."
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: dist/blocks.build.js:
|
5980 |
msgid "taxonomy"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: dist/blocks.build.js:
|
5984 |
msgid "Select Taxonomy"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: dist/blocks.build.js:
|
5988 |
msgid "Bullet/Numbers Color"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
-
#: dist/blocks.build.js:
|
5992 |
msgid "Bullet/Numbers Hover Color"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
-
#: dist/blocks.build.js:
|
5996 |
msgid "List"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
-
#: dist/blocks.build.js:
|
6000 |
msgid "If Taxonomy Not Found"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: dist/blocks.build.js:
|
6004 |
msgid "Display Style"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#: dist/blocks.build.js:
|
6008 |
msgid "Show Empty Taxonomy"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#: dist/blocks.build.js:
|
6012 |
msgid "Show Posts Count"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: dist/blocks.build.js:
|
6016 |
msgid "Show Count of taxonomy "
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#: dist/blocks.build.js:
|
6020 |
msgid "Show Hierarchy"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: dist/blocks.build.js:
|
6024 |
msgid "Show Hierarchy of taxonomy "
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: dist/blocks.build.js:
|
6028 |
msgid "List Style"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
-
#: dist/blocks.build.js:
|
6032 |
msgid "Count Color"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
-
#: dist/blocks.build.js:
|
6036 |
msgid "Mobile Content Padding"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: dist/blocks.build.js:
|
6040 |
msgid "Tab Content Padding"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: dist/blocks.build.js:
|
6044 |
msgid "Bottom Margin"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: dist/blocks.build.js:
|
6048 |
msgid "Title "
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: dist/blocks.build.js:
|
6052 |
msgid "Count "
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: dist/blocks.build.js:
|
6056 |
msgid "Border Thickness"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: dist/blocks.build.js:
|
6060 |
msgid "Separator Style"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: dist/blocks.build.js:
|
6064 |
msgid "Separator Width (%)"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#: dist/blocks.build.js:
|
6068 |
msgid "Separator Thickness"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: dist/blocks.build.js:
|
6072 |
msgid "List "
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#: dist/blocks.build.js:
|
6076 |
msgid "Below setting will only take effect once you are on the live page, and not while you're editing."
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: dist/blocks.build.js:
|
6080 |
-
#: dist/blocks.build.js:
|
6081 |
msgid "tabs"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: dist/blocks.build.js:
|
6085 |
-
#: dist/blocks.build.js:
|
6086 |
msgid "Tab 1"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: dist/blocks.build.js:
|
6090 |
-
#: dist/blocks.build.js:
|
6091 |
msgid "Tab 2"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: dist/blocks.build.js:
|
6095 |
-
#: dist/blocks.build.js:
|
6096 |
msgid "Tab 3"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#: dist/blocks.build.js:
|
6100 |
msgid "Tabs Style"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#: dist/blocks.build.js:
|
6104 |
msgid "Mobile Style"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#: dist/blocks.build.js:
|
6108 |
-
#: dist/blocks.build.js:
|
6109 |
-
#: dist/blocks.build.js:
|
6110 |
msgid "Horizontal Style 1"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: dist/blocks.build.js:
|
6114 |
-
#: dist/blocks.build.js:
|
6115 |
-
#: dist/blocks.build.js:
|
6116 |
msgid "Horizontal Style 2"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
-
#: dist/blocks.build.js:
|
6120 |
-
#: dist/blocks.build.js:
|
6121 |
-
#: dist/blocks.build.js:
|
6122 |
msgid "Horizontal Style 3"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: dist/blocks.build.js:
|
6126 |
-
#: dist/blocks.build.js:
|
6127 |
-
#: dist/blocks.build.js:
|
6128 |
msgid "Horizontal Style 4"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
-
#: dist/blocks.build.js:
|
6132 |
-
#: dist/blocks.build.js:
|
6133 |
-
#: dist/blocks.build.js:
|
6134 |
msgid "Horizontal Style 5"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: dist/blocks.build.js:
|
6138 |
-
#: dist/blocks.build.js:
|
6139 |
-
#: dist/blocks.build.js:
|
6140 |
msgid "Vertical Style 6"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
-
#: dist/blocks.build.js:
|
6144 |
-
#: dist/blocks.build.js:
|
6145 |
-
#: dist/blocks.build.js:
|
6146 |
msgid "Vertical Style 7"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: dist/blocks.build.js:
|
6150 |
-
#: dist/blocks.build.js:
|
6151 |
-
#: dist/blocks.build.js:
|
6152 |
msgid "Vertical Style 8"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
-
#: dist/blocks.build.js:
|
6156 |
-
#: dist/blocks.build.js:
|
6157 |
-
#: dist/blocks.build.js:
|
6158 |
msgid "Vertical Style 9"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: dist/blocks.build.js:
|
6162 |
-
#: dist/blocks.build.js:
|
6163 |
-
#: dist/blocks.build.js:
|
6164 |
msgid "Vertical Style 10"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
-
#: dist/blocks.build.js:
|
6168 |
msgid "Stack Style 11"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
-
#: dist/blocks.build.js:
|
6172 |
msgid "Stack Style 12"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: dist/blocks.build.js:
|
6176 |
msgid "Stack Style 13"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
-
#: dist/blocks.build.js:
|
6180 |
msgid "Stack Style 14"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
-
#: dist/blocks.build.js:
|
6184 |
msgid "Tablet Style"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
#: dist/blocks.build.js:
|
6188 |
msgid "Desktop Style"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
-
#: dist/blocks.build.js:
|
6192 |
msgid "Tabs Title Settings"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
-
#: dist/blocks.build.js:
|
6196 |
msgid "Initial Open Tab"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
-
#: dist/blocks.build.js:
|
6200 |
msgid "Enable Icon"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
-
#: dist/blocks.build.js:
|
6204 |
msgid "Active Icon Color"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: dist/blocks.build.js:
|
6208 |
msgid "Tab Title Margin (px)"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
-
#: dist/blocks.build.js:
|
6212 |
msgid "Title Padding"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#: dist/blocks.build.js:
|
6216 |
msgid "Title Background Color"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
-
#: dist/blocks.build.js:
|
6220 |
msgid "Title Text Color"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#: dist/blocks.build.js:
|
6224 |
msgid "Active Tab Background Color"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: dist/blocks.build.js:
|
6228 |
msgid "Active Tab Text Color"
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: dist/blocks.build.js:
|
6232 |
msgid "Tabs Body Settings"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
-
#: dist/blocks.build.js:
|
6236 |
msgid "Body Background Color"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
-
#: dist/blocks.build.js:
|
6240 |
msgid "Body Text Color"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
-
#: dist/blocks.build.js:
|
6244 |
msgid "Tab Body Margin (px)"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
-
#: dist/blocks.build.js:
|
6248 |
msgid "Body Padding"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
-
#: dist/blocks.build.js:
|
6252 |
msgid "Border Settings"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#: dist/blocks.build.js:
|
6256 |
msgid "Border width"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
-
#: dist/blocks.build.js:
|
6260 |
msgid "Title…"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
-
#: dist/blocks.build.js:
|
6264 |
msgid "Remove tab"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
-
#: dist/blocks.build.js:
|
6268 |
msgid "Add tab"
|
6269 |
msgstr ""
|
6270 |
|
6271 |
-
#: dist/blocks.build.js:
|
6272 |
msgid "lottie"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
-
#: dist/blocks.build.js:
|
6276 |
msgid "animation"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
-
#: dist/blocks.build.js:
|
6280 |
msgid "Controls"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
-
#: dist/blocks.build.js:
|
6284 |
msgid "Play On"
|
6285 |
msgstr ""
|
6286 |
|
6287 |
-
#: dist/blocks.build.js:
|
6288 |
msgid "On Hover"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: dist/blocks.build.js:
|
6292 |
msgid "On Click"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: dist/blocks.build.js:
|
6296 |
msgid "Viewport"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: dist/blocks.build.js:
|
6300 |
msgid "This setting will only take effect once you are on the live page, and not while you're editing."
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: dist/blocks.build.js:
|
6304 |
msgid "Loop"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: dist/blocks.build.js:
|
6308 |
msgid "Speed"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#: dist/blocks.build.js:
|
6312 |
msgid "Reverse"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#: dist/blocks.build.js:
|
6316 |
msgid "Direction of animation."
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: dist/blocks.build.js:
|
6320 |
msgid "Lottie block requires the file type JSON to be uploaded to media files. Seems like your website has disabled this file type. Please refer"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: dist/blocks.build.js:
|
6324 |
msgid "Allows you to add fancy animation i.e Lottie to your website. You can see sample Lottie animations"
|
6325 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Ultimate Addons for Gutenberg plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Ultimate Addons for Gutenberg 1.21.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2021-03-15T08:36:15+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0-alpha-59d879d\n"
|
15 |
"X-Domain: ultimate-addons-for-gutenberg\n"
|
335 |
msgstr ""
|
336 |
|
337 |
#: classes/class-uagb-config.php:350
|
338 |
+
#: dist/blocks.build.js:84119
|
339 |
msgid "Call To Action"
|
340 |
msgstr ""
|
341 |
|
352 |
msgstr ""
|
353 |
|
354 |
#: classes/class-uagb-config.php:560
|
355 |
+
#: dist/blocks.build.js:96564
|
356 |
+
#: dist/blocks.build.js:98234
|
357 |
msgid "Content Timeline"
|
358 |
msgstr ""
|
359 |
|
412 |
|
413 |
#: classes/class-uagb-config.php:1011
|
414 |
#: classes/class-uagb-config.php:1065
|
415 |
+
#: classes/class-uagb-config.php:2167
|
416 |
msgid "This block allows you to place an image or icon in a list format."
|
417 |
msgstr ""
|
418 |
|
421 |
msgstr ""
|
422 |
|
423 |
#: classes/class-uagb-config.php:1064
|
424 |
+
#: dist/blocks.build.js:84875
|
425 |
+
#: dist/blocks.build.js:89156
|
426 |
+
#: dist/blocks.build.js:89188
|
427 |
+
#: dist/blocks.build.js:89220
|
428 |
+
#: dist/blocks.build.js:89252
|
429 |
+
#: dist/blocks.build.js:91758
|
430 |
+
#: dist/blocks.build.js:91769
|
431 |
+
#: dist/blocks.build.js:94214
|
432 |
+
#: dist/blocks.build.js:94225
|
433 |
+
#: dist/blocks.build.js:112996
|
434 |
+
#: dist/blocks.build.js:121038
|
435 |
+
#: dist/blocks.build.js:121234
|
436 |
+
#: dist/blocks.build.js:123289
|
437 |
+
#: dist/blocks.build.js:124575
|
438 |
+
#: dist/blocks.build.js:124700
|
439 |
+
#: dist/blocks.build.js:124759
|
440 |
+
#: dist/blocks.build.js:130053
|
441 |
msgid "Icon"
|
442 |
msgstr ""
|
443 |
|
474 |
msgstr ""
|
475 |
|
476 |
#: classes/class-uagb-config.php:1336
|
477 |
+
#: dist/blocks.build.js:64871
|
478 |
+
#: dist/blocks.build.js:84126
|
479 |
+
#: dist/blocks.build.js:101151
|
480 |
+
#: dist/blocks.build.js:101158
|
481 |
+
#: dist/blocks.build.js:124565
|
482 |
msgid "Button"
|
483 |
msgstr ""
|
484 |
|
494 |
msgid "This block fetches the blog posts you may have on your website and displays them in a carousel layout."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: classes/class-uagb-config.php:1458
|
498 |
+
#: classes/class-uagb-config.php:1554
|
499 |
+
#: classes/class-uagb-config.php:1668
|
500 |
#: dist/blocks/post-timeline/class-uagb-post-timeline.php:447
|
501 |
+
#: dist/blocks/post/class-uagb-post.php:445
|
502 |
+
#: dist/blocks/post/class-uagb-post.php:1458
|
503 |
msgid "Read More"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: classes/class-uagb-config.php:1476
|
507 |
msgid "Post Grid"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: classes/class-uagb-config.php:1477
|
511 |
msgid "This block fetches the blog posts you may have on your website and displays them in a grid layout."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: classes/class-uagb-config.php:1588
|
515 |
msgid "Post Masonry"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: classes/class-uagb-config.php:1589
|
519 |
msgid "This block fetches the blog posts you may have on your website and displays them in a masonry layout."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: classes/class-uagb-config.php:1709
|
523 |
msgid "Post Title"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: classes/class-uagb-config.php:1710
|
527 |
msgid "This block fetches the blog title."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: classes/class-uagb-config.php:1716
|
531 |
msgid "Post Button"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: classes/class-uagb-config.php:1717
|
535 |
msgid "This block display's a call to action button which links to the blogs page."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: classes/class-uagb-config.php:1723
|
539 |
msgid "Post Excerpt"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: classes/class-uagb-config.php:1724
|
543 |
msgid "This block fetches short description about a post."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: classes/class-uagb-config.php:1730
|
547 |
msgid "Post Meta"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: classes/class-uagb-config.php:1731
|
551 |
msgid "This block fetches post comments, author, publish date and categories data."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: classes/class-uagb-config.php:1737
|
555 |
msgid "Post Image"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: classes/class-uagb-config.php:1738
|
559 |
msgid "This block fetches posts feature image."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: classes/class-uagb-config.php:1744
|
563 |
msgid "Post Timeline"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: classes/class-uagb-config.php:1745
|
567 |
msgid "The Timeline block lets you create beautiful timelines of Posts on your website."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: classes/class-uagb-config.php:1846
|
571 |
msgid "Price List"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: classes/class-uagb-config.php:1847
|
575 |
+
#: classes/class-uagb-config.php:2016
|
576 |
msgid "This block allows you to add attractive Price List."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: classes/class-uagb-config.php:1920
|
580 |
msgid "Review Schema"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: classes/class-uagb-config.php:1921
|
584 |
msgid "This block helps you to add a review for various items with schema support."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: classes/class-uagb-config.php:2015
|
588 |
msgid "Price List-Child"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: classes/class-uagb-config.php:2046
|
592 |
msgid "Section"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: classes/class-uagb-config.php:2047
|
596 |
msgid "This block is an outer wrap section that allows you to add other blocks within it."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: classes/class-uagb-config.php:2129
|
600 |
msgid "Social Share"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: classes/class-uagb-config.php:2130
|
604 |
msgid "This block allows you to let users share your content across various social networking sites."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: classes/class-uagb-config.php:2166
|
608 |
msgid "Social Share Child"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: classes/class-uagb-config.php:2184
|
612 |
msgid "Tabs"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: classes/class-uagb-config.php:2185
|
616 |
+
#: classes/class-uagb-config.php:2242
|
617 |
msgid "This block allows you to display your content in tabs layout."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: classes/class-uagb-config.php:2241
|
621 |
msgid "Tabs child"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: classes/class-uagb-config.php:2256
|
625 |
msgid "Table of Contents"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: classes/class-uagb-config.php:2257
|
629 |
msgid "This block allows you to place a Table of Contents for Pages/Posts."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: classes/class-uagb-config.php:2356
|
633 |
msgid "Team"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: classes/class-uagb-config.php:2357
|
637 |
msgid "This block allows you to display your team. Add their picture, name, what they do and links to their social profiles."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: classes/class-uagb-config.php:2429
|
641 |
+
#: dist/blocks.build.js:86989
|
642 |
msgid "Testimonial"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: classes/class-uagb-config.php:2430
|
646 |
msgid "This block helps your display some amazing client feedback within your website."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: classes/class-uagb-config.php:2515
|
650 |
msgid "WP - Search"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: classes/class-uagb-config.php:2516
|
654 |
msgid "This block helps you add a Search field."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: classes/class-uagb-config.php:2584
|
658 |
msgid "Taxonomy List"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: classes/class-uagb-config.php:2585
|
662 |
msgid "This block helps you to display content categorization for various post types"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: classes/class-uagb-config.php:2665
|
666 |
#: dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php:113
|
667 |
msgid "Taxonomy Not Available."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: classes/class-uagb-config.php:2674
|
671 |
msgid "Condition Block"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: classes/class-uagb-config.php:2675
|
675 |
msgid "This block helps you add a Condition field in the Advanced Tab."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: classes/class-uagb-config.php:2682
|
679 |
+
#: dist/blocks.build.js:131491
|
680 |
msgid "Lottie"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: classes/class-uagb-config.php:2683
|
684 |
msgid "This block helps you add Lottie animation and customize it as required."
|
685 |
msgstr ""
|
686 |
|
703 |
#: classes/class-uagb-init-blocks.php:513
|
704 |
#: dist/blocks.build.js:25852
|
705 |
#: dist/blocks.build.js:62582
|
706 |
+
#: dist/blocks.build.js:64654
|
707 |
+
#: dist/blocks.build.js:64863
|
708 |
+
#: dist/blocks.build.js:65102
|
709 |
+
#: dist/blocks.build.js:74307
|
710 |
+
#: dist/blocks.build.js:80014
|
711 |
+
#: dist/blocks.build.js:80299
|
712 |
+
#: dist/blocks.build.js:81044
|
713 |
+
#: dist/blocks.build.js:82011
|
714 |
+
#: dist/blocks.build.js:84051
|
715 |
+
#: dist/blocks.build.js:84126
|
716 |
+
#: dist/blocks.build.js:84267
|
717 |
+
#: dist/blocks.build.js:84862
|
718 |
+
#: dist/blocks.build.js:87174
|
719 |
+
#: dist/blocks.build.js:87296
|
720 |
+
#: dist/blocks.build.js:87668
|
721 |
+
#: dist/blocks.build.js:89084
|
722 |
+
#: dist/blocks.build.js:90684
|
723 |
+
#: dist/blocks.build.js:92702
|
724 |
+
#: dist/blocks.build.js:97771
|
725 |
+
#: dist/blocks.build.js:99486
|
726 |
+
#: dist/blocks.build.js:101158
|
727 |
+
#: dist/blocks.build.js:101287
|
728 |
+
#: dist/blocks.build.js:101693
|
729 |
+
#: dist/blocks.build.js:102920
|
730 |
+
#: dist/blocks.build.js:103539
|
731 |
+
#: dist/blocks.build.js:104612
|
732 |
+
#: dist/blocks.build.js:104946
|
733 |
+
#: dist/blocks.build.js:104994
|
734 |
+
#: dist/blocks.build.js:105459
|
735 |
+
#: dist/blocks.build.js:105683
|
736 |
+
#: dist/blocks.build.js:105865
|
737 |
+
#: dist/blocks.build.js:105866
|
738 |
+
#: dist/blocks.build.js:107963
|
739 |
+
#: dist/blocks.build.js:108185
|
740 |
+
#: dist/blocks.build.js:109934
|
741 |
+
#: dist/blocks.build.js:110217
|
742 |
+
#: dist/blocks.build.js:112187
|
743 |
+
#: dist/blocks.build.js:112440
|
744 |
+
#: dist/blocks.build.js:114899
|
745 |
+
#: dist/blocks.build.js:116826
|
746 |
+
#: dist/blocks.build.js:120991
|
747 |
+
#: dist/blocks.build.js:124305
|
748 |
+
#: dist/blocks.build.js:126640
|
749 |
+
#: dist/blocks.build.js:128699
|
750 |
+
#: dist/blocks.build.js:128752
|
751 |
+
#: dist/blocks.build.js:131253
|
752 |
msgid "None"
|
753 |
msgstr ""
|
754 |
|
755 |
#: classes/class-uagb-init-blocks.php:542
|
756 |
#: classes/class-uagb-init-blocks.php:575
|
757 |
+
#: dist/blocks.build.js:108149
|
758 |
+
#: dist/blocks.build.js:110140
|
759 |
msgid "Select Form"
|
760 |
msgstr ""
|
761 |
|
811 |
#: dist/blocks.build.js:706
|
812 |
#: dist/blocks.build.js:707
|
813 |
#: dist/blocks.build.js:708
|
814 |
+
#: dist/blocks.build.js:82266
|
815 |
+
#: dist/blocks.build.js:82315
|
816 |
+
#: dist/blocks.build.js:82365
|
817 |
msgid "Line Height"
|
818 |
msgstr ""
|
819 |
|
824 |
msgstr ""
|
825 |
|
826 |
#: dist/blocks.build.js:4199
|
827 |
+
#: dist/blocks.build.js:80299
|
828 |
+
#: dist/blocks.build.js:87296
|
829 |
+
#: dist/blocks.build.js:102920
|
830 |
+
#: dist/blocks.build.js:105683
|
831 |
+
#: dist/blocks.build.js:107963
|
832 |
+
#: dist/blocks.build.js:108185
|
833 |
+
#: dist/blocks.build.js:109934
|
834 |
+
#: dist/blocks.build.js:110217
|
835 |
+
#: dist/blocks.build.js:112187
|
836 |
+
#: dist/blocks.build.js:114899
|
837 |
+
#: dist/blocks.build.js:116826
|
838 |
+
#: dist/blocks.build.js:128699
|
839 |
+
#: dist/blocks.build.js:128752
|
840 |
msgid "Inset"
|
841 |
msgstr ""
|
842 |
|
843 |
#: dist/blocks.build.js:4199
|
844 |
+
#: dist/blocks.build.js:80299
|
845 |
+
#: dist/blocks.build.js:87296
|
846 |
+
#: dist/blocks.build.js:102920
|
847 |
+
#: dist/blocks.build.js:105683
|
848 |
+
#: dist/blocks.build.js:107963
|
849 |
+
#: dist/blocks.build.js:108185
|
850 |
+
#: dist/blocks.build.js:109934
|
851 |
+
#: dist/blocks.build.js:110217
|
852 |
+
#: dist/blocks.build.js:112187
|
853 |
+
#: dist/blocks.build.js:114899
|
854 |
+
#: dist/blocks.build.js:116826
|
855 |
+
#: dist/blocks.build.js:128699
|
856 |
+
#: dist/blocks.build.js:128752
|
857 |
msgid "Outset"
|
858 |
msgstr ""
|
859 |
|
860 |
#: dist/blocks.build.js:6991
|
861 |
+
#: dist/blocks.build.js:87056
|
862 |
+
#: dist/blocks.build.js:89381
|
863 |
+
#: dist/blocks.build.js:97555
|
864 |
+
#: dist/blocks.build.js:97583
|
865 |
+
#: dist/blocks.build.js:97681
|
866 |
+
#: dist/blocks.build.js:99171
|
867 |
+
#: dist/blocks.build.js:99201
|
868 |
+
#: dist/blocks.build.js:99264
|
869 |
+
#: dist/blocks.build.js:103658
|
870 |
+
#: dist/blocks.build.js:114792
|
871 |
msgid "Color Settings"
|
872 |
msgstr ""
|
873 |
|
892 |
msgstr ""
|
893 |
|
894 |
#: dist/blocks.build.js:8799
|
895 |
+
#: dist/blocks.build.js:99674
|
896 |
+
#: dist/blocks.build.js:112697
|
897 |
msgid "Author"
|
898 |
msgstr ""
|
899 |
|
928 |
msgstr ""
|
929 |
|
930 |
#: dist/blocks.build.js:23885
|
931 |
+
#: dist/blocks.build.js:119009
|
932 |
msgid "Total Cost:"
|
933 |
msgstr ""
|
934 |
|
982 |
|
983 |
#: dist/blocks.build.js:25446
|
984 |
#: dist/blocks.build.js:61362
|
985 |
+
#: dist/blocks.build.js:63698
|
986 |
+
#: dist/blocks.build.js:73249
|
987 |
+
#: dist/blocks.build.js:79122
|
988 |
+
#: dist/blocks.build.js:80829
|
989 |
+
#: dist/blocks.build.js:83552
|
990 |
+
#: dist/blocks.build.js:86597
|
991 |
+
#: dist/blocks.build.js:88629
|
992 |
+
#: dist/blocks.build.js:90385
|
993 |
+
#: dist/blocks.build.js:91363
|
994 |
+
#: dist/blocks.build.js:92222
|
995 |
+
#: dist/blocks.build.js:92445
|
996 |
+
#: dist/blocks.build.js:96564
|
997 |
+
#: dist/blocks.build.js:98234
|
998 |
+
#: dist/blocks.build.js:98782
|
999 |
+
#: dist/blocks.build.js:100906
|
1000 |
+
#: dist/blocks.build.js:104188
|
1001 |
+
#: dist/blocks.build.js:107618
|
1002 |
+
#: dist/blocks.build.js:109571
|
1003 |
+
#: dist/blocks.build.js:114007
|
1004 |
+
#: dist/blocks.build.js:115486
|
1005 |
+
#: dist/blocks.build.js:117981
|
1006 |
+
#: dist/blocks.build.js:120390
|
1007 |
+
#: dist/blocks.build.js:122835
|
1008 |
+
#: dist/blocks.build.js:123863
|
1009 |
+
#: dist/blocks.build.js:125404
|
1010 |
+
#: dist/blocks.build.js:127817
|
1011 |
+
#: dist/blocks.build.js:129442
|
1012 |
+
#: dist/blocks.build.js:130840
|
1013 |
+
#: dist/blocks.build.js:131063
|
1014 |
msgid "uag"
|
1015 |
msgstr ""
|
1016 |
|
1020 |
|
1021 |
#: dist/blocks.build.js:25452
|
1022 |
#: dist/blocks.build.js:25958
|
1023 |
+
#: dist/blocks.build.js:98560
|
1024 |
msgid "Write a Heading"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: dist/blocks.build.js:25453
|
1028 |
#: dist/blocks.build.js:25985
|
1029 |
+
#: dist/blocks.build.js:88949
|
1030 |
+
#: dist/blocks.build.js:88955
|
1031 |
+
#: dist/blocks.build.js:98582
|
1032 |
msgid "Write a Description"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: dist/blocks.build.js:25758
|
1036 |
+
#: dist/blocks.build.js:97808
|
1037 |
+
#: dist/blocks.build.js:99586
|
1038 |
+
#: dist/blocks.build.js:101543
|
1039 |
+
#: dist/blocks.build.js:115910
|
1040 |
+
#: dist/blocks.build.js:118662
|
1041 |
+
#: dist/blocks.build.js:118717
|
1042 |
msgid "Heading"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
#: dist/blocks.build.js:25761
|
1046 |
+
#: dist/blocks.build.js:99589
|
1047 |
msgid "Heading Tag"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: dist/blocks.build.js:25766
|
1051 |
#: dist/blocks.build.js:62682
|
1052 |
+
#: dist/blocks.build.js:65197
|
1053 |
+
#: dist/blocks.build.js:74402
|
1054 |
+
#: dist/blocks.build.js:89291
|
1055 |
+
#: dist/blocks.build.js:97655
|
1056 |
+
#: dist/blocks.build.js:99594
|
1057 |
+
#: dist/blocks.build.js:101551
|
1058 |
+
#: dist/blocks.build.js:114388
|
1059 |
+
#: dist/blocks.build.js:118477
|
1060 |
+
#: dist/blocks.build.js:121312
|
1061 |
+
#: dist/blocks.build.js:123271
|
1062 |
msgid "H1"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: dist/blocks.build.js:25766
|
1066 |
#: dist/blocks.build.js:62682
|
1067 |
+
#: dist/blocks.build.js:65197
|
1068 |
+
#: dist/blocks.build.js:74402
|
1069 |
+
#: dist/blocks.build.js:89291
|
1070 |
+
#: dist/blocks.build.js:97655
|
1071 |
+
#: dist/blocks.build.js:99594
|
1072 |
+
#: dist/blocks.build.js:101551
|
1073 |
+
#: dist/blocks.build.js:114388
|
1074 |
+
#: dist/blocks.build.js:118477
|
1075 |
+
#: dist/blocks.build.js:121312
|
1076 |
+
#: dist/blocks.build.js:123271
|
1077 |
msgid "H2"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: dist/blocks.build.js:25766
|
1081 |
#: dist/blocks.build.js:62682
|
1082 |
+
#: dist/blocks.build.js:65197
|
1083 |
+
#: dist/blocks.build.js:74402
|
1084 |
+
#: dist/blocks.build.js:89291
|
1085 |
+
#: dist/blocks.build.js:97655
|
1086 |
+
#: dist/blocks.build.js:99594
|
1087 |
+
#: dist/blocks.build.js:101551
|
1088 |
+
#: dist/blocks.build.js:114388
|
1089 |
+
#: dist/blocks.build.js:118477
|
1090 |
+
#: dist/blocks.build.js:121312
|
1091 |
+
#: dist/blocks.build.js:123271
|
1092 |
msgid "H3"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: dist/blocks.build.js:25766
|
1096 |
#: dist/blocks.build.js:62682
|
1097 |
+
#: dist/blocks.build.js:65197
|
1098 |
+
#: dist/blocks.build.js:74402
|
1099 |
+
#: dist/blocks.build.js:89291
|
1100 |
+
#: dist/blocks.build.js:97655
|
1101 |
+
#: dist/blocks.build.js:99594
|
1102 |
+
#: dist/blocks.build.js:101551
|
1103 |
+
#: dist/blocks.build.js:114388
|
1104 |
+
#: dist/blocks.build.js:118477
|
1105 |
+
#: dist/blocks.build.js:121312
|
1106 |
+
#: dist/blocks.build.js:123271
|
1107 |
msgid "H4"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: dist/blocks.build.js:25766
|
1111 |
#: dist/blocks.build.js:62682
|
1112 |
+
#: dist/blocks.build.js:65197
|
1113 |
+
#: dist/blocks.build.js:74402
|
1114 |
+
#: dist/blocks.build.js:89291
|
1115 |
+
#: dist/blocks.build.js:97655
|
1116 |
+
#: dist/blocks.build.js:99594
|
1117 |
+
#: dist/blocks.build.js:101551
|
1118 |
+
#: dist/blocks.build.js:114388
|
1119 |
+
#: dist/blocks.build.js:118477
|
1120 |
+
#: dist/blocks.build.js:121312
|
1121 |
+
#: dist/blocks.build.js:123271
|
1122 |
msgid "H5"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: dist/blocks.build.js:25766
|
1126 |
#: dist/blocks.build.js:62682
|
1127 |
+
#: dist/blocks.build.js:65197
|
1128 |
+
#: dist/blocks.build.js:74402
|
1129 |
+
#: dist/blocks.build.js:89291
|
1130 |
+
#: dist/blocks.build.js:97655
|
1131 |
+
#: dist/blocks.build.js:99594
|
1132 |
+
#: dist/blocks.build.js:101551
|
1133 |
+
#: dist/blocks.build.js:114388
|
1134 |
+
#: dist/blocks.build.js:118477
|
1135 |
+
#: dist/blocks.build.js:121312
|
1136 |
+
#: dist/blocks.build.js:123271
|
1137 |
msgid "H6"
|
1138 |
msgstr ""
|
1139 |
|
1144 |
#: dist/blocks.build.js:62688
|
1145 |
#: dist/blocks.build.js:62714
|
1146 |
#: dist/blocks.build.js:62741
|
1147 |
+
#: dist/blocks.build.js:65074
|
1148 |
+
#: dist/blocks.build.js:65190
|
1149 |
+
#: dist/blocks.build.js:65203
|
1150 |
+
#: dist/blocks.build.js:65229
|
1151 |
+
#: dist/blocks.build.js:65256
|
1152 |
+
#: dist/blocks.build.js:74395
|
1153 |
+
#: dist/blocks.build.js:74408
|
1154 |
+
#: dist/blocks.build.js:74434
|
1155 |
+
#: dist/blocks.build.js:74461
|
1156 |
+
#: dist/blocks.build.js:81054
|
1157 |
+
#: dist/blocks.build.js:81057
|
|
|
1158 |
#: dist/blocks.build.js:84146
|
1159 |
+
#: dist/blocks.build.js:84160
|
1160 |
+
#: dist/blocks.build.js:84528
|
1161 |
+
#: dist/blocks.build.js:84582
|
1162 |
+
#: dist/blocks.build.js:84628
|
1163 |
+
#: dist/blocks.build.js:86985
|
1164 |
+
#: dist/blocks.build.js:86992
|
1165 |
+
#: dist/blocks.build.js:87015
|
1166 |
+
#: dist/blocks.build.js:87038
|
1167 |
+
#: dist/blocks.build.js:89283
|
1168 |
+
#: dist/blocks.build.js:89300
|
1169 |
+
#: dist/blocks.build.js:89323
|
1170 |
+
#: dist/blocks.build.js:89346
|
1171 |
+
#: dist/blocks.build.js:89369
|
1172 |
+
#: dist/blocks.build.js:92827
|
1173 |
+
#: dist/blocks.build.js:97650
|
1174 |
+
#: dist/blocks.build.js:97811
|
1175 |
+
#: dist/blocks.build.js:97860
|
1176 |
+
#: dist/blocks.build.js:99597
|
1177 |
+
#: dist/blocks.build.js:99623
|
1178 |
+
#: dist/blocks.build.js:99650
|
1179 |
+
#: dist/blocks.build.js:99677
|
1180 |
+
#: dist/blocks.build.js:99704
|
1181 |
+
#: dist/blocks.build.js:101178
|
1182 |
+
#: dist/blocks.build.js:101554
|
1183 |
+
#: dist/blocks.build.js:101594
|
1184 |
+
#: dist/blocks.build.js:108052
|
1185 |
+
#: dist/blocks.build.js:108092
|
1186 |
+
#: dist/blocks.build.js:108364
|
1187 |
+
#: dist/blocks.build.js:108523
|
1188 |
+
#: dist/blocks.build.js:108687
|
1189 |
+
#: dist/blocks.build.js:108777
|
1190 |
+
#: dist/blocks.build.js:110033
|
1191 |
+
#: dist/blocks.build.js:110396
|
1192 |
+
#: dist/blocks.build.js:110555
|
1193 |
+
#: dist/blocks.build.js:110911
|
1194 |
+
#: dist/blocks.build.js:112660
|
1195 |
+
#: dist/blocks.build.js:112700
|
1196 |
+
#: dist/blocks.build.js:113023
|
1197 |
+
#: dist/blocks.build.js:114397
|
1198 |
+
#: dist/blocks.build.js:114420
|
1199 |
+
#: dist/blocks.build.js:115931
|
1200 |
+
#: dist/blocks.build.js:116184
|
1201 |
+
#: dist/blocks.build.js:118714
|
1202 |
+
#: dist/blocks.build.js:121315
|
1203 |
+
#: dist/blocks.build.js:121621
|
1204 |
+
#: dist/blocks.build.js:123418
|
1205 |
+
#: dist/blocks.build.js:124530
|
1206 |
+
#: dist/blocks.build.js:124591
|
1207 |
+
#: dist/blocks.build.js:128638
|
1208 |
+
#: dist/blocks.build.js:128664
|
1209 |
+
#: dist/blocks.build.js:128806
|
1210 |
+
#: dist/blocks.build.js:130253
|
1211 |
msgid "Typography"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
#: dist/blocks.build.js:25788
|
1215 |
+
#: dist/blocks.build.js:97688
|
1216 |
+
#: dist/blocks.build.js:99299
|
1217 |
+
#: dist/blocks.build.js:115950
|
1218 |
msgid "Heading Color"
|
1219 |
msgstr ""
|
1220 |
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: dist/blocks.build.js:25845
|
1230 |
+
#: dist/blocks.build.js:84035
|
1231 |
msgid "Separator"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: dist/blocks.build.js:25847
|
1235 |
#: dist/blocks.build.js:62577
|
1236 |
+
#: dist/blocks.build.js:64652
|
1237 |
+
#: dist/blocks.build.js:65097
|
1238 |
+
#: dist/blocks.build.js:82009
|
1239 |
+
#: dist/blocks.build.js:84262
|
1240 |
+
#: dist/blocks.build.js:116237
|
1241 |
+
#: dist/blocks.build.js:118653
|
1242 |
+
#: dist/blocks.build.js:120925
|
1243 |
+
#: dist/blocks.build.js:120989
|
1244 |
+
#: dist/blocks.build.js:124303
|
1245 |
+
#: dist/blocks.build.js:126379
|
1246 |
+
#: dist/blocks.build.js:128628
|
1247 |
+
#: dist/blocks.build.js:131283
|
1248 |
msgid "Style"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
#: dist/blocks.build.js:25852
|
1252 |
#: dist/blocks.build.js:62582
|
1253 |
+
#: dist/blocks.build.js:64654
|
1254 |
+
#: dist/blocks.build.js:65102
|
1255 |
+
#: dist/blocks.build.js:74307
|
1256 |
+
#: dist/blocks.build.js:80299
|
1257 |
+
#: dist/blocks.build.js:82011
|
1258 |
+
#: dist/blocks.build.js:84051
|
1259 |
+
#: dist/blocks.build.js:84267
|
1260 |
+
#: dist/blocks.build.js:87296
|
1261 |
+
#: dist/blocks.build.js:101287
|
1262 |
+
#: dist/blocks.build.js:102920
|
1263 |
+
#: dist/blocks.build.js:105683
|
1264 |
+
#: dist/blocks.build.js:107963
|
1265 |
+
#: dist/blocks.build.js:108185
|
1266 |
+
#: dist/blocks.build.js:109934
|
1267 |
+
#: dist/blocks.build.js:110217
|
1268 |
+
#: dist/blocks.build.js:112187
|
1269 |
+
#: dist/blocks.build.js:114899
|
1270 |
+
#: dist/blocks.build.js:116826
|
1271 |
+
#: dist/blocks.build.js:120991
|
1272 |
+
#: dist/blocks.build.js:124305
|
1273 |
+
#: dist/blocks.build.js:128699
|
1274 |
+
#: dist/blocks.build.js:128752
|
1275 |
msgid "Solid"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: dist/blocks.build.js:25852
|
1279 |
#: dist/blocks.build.js:62582
|
1280 |
+
#: dist/blocks.build.js:64654
|
1281 |
+
#: dist/blocks.build.js:65102
|
1282 |
+
#: dist/blocks.build.js:74307
|
1283 |
+
#: dist/blocks.build.js:80299
|
1284 |
+
#: dist/blocks.build.js:82011
|
1285 |
+
#: dist/blocks.build.js:84051
|
1286 |
+
#: dist/blocks.build.js:84267
|
1287 |
+
#: dist/blocks.build.js:87296
|
1288 |
+
#: dist/blocks.build.js:101287
|
1289 |
+
#: dist/blocks.build.js:102920
|
1290 |
+
#: dist/blocks.build.js:105683
|
1291 |
+
#: dist/blocks.build.js:107963
|
1292 |
+
#: dist/blocks.build.js:108185
|
1293 |
+
#: dist/blocks.build.js:109934
|
1294 |
+
#: dist/blocks.build.js:110217
|
1295 |
+
#: dist/blocks.build.js:112187
|
1296 |
+
#: dist/blocks.build.js:114899
|
1297 |
+
#: dist/blocks.build.js:116826
|
1298 |
+
#: dist/blocks.build.js:120991
|
1299 |
+
#: dist/blocks.build.js:124305
|
1300 |
+
#: dist/blocks.build.js:128699
|
1301 |
+
#: dist/blocks.build.js:128752
|
1302 |
msgid "Double"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
#: dist/blocks.build.js:25852
|
1306 |
#: dist/blocks.build.js:62582
|
1307 |
+
#: dist/blocks.build.js:64654
|
1308 |
+
#: dist/blocks.build.js:65102
|
1309 |
+
#: dist/blocks.build.js:74307
|
1310 |
+
#: dist/blocks.build.js:80299
|
1311 |
+
#: dist/blocks.build.js:82011
|
1312 |
+
#: dist/blocks.build.js:84051
|
1313 |
+
#: dist/blocks.build.js:84267
|
1314 |
+
#: dist/blocks.build.js:87296
|
1315 |
+
#: dist/blocks.build.js:101287
|
1316 |
+
#: dist/blocks.build.js:102920
|
1317 |
+
#: dist/blocks.build.js:105683
|
1318 |
+
#: dist/blocks.build.js:107963
|
1319 |
+
#: dist/blocks.build.js:108185
|
1320 |
+
#: dist/blocks.build.js:109934
|
1321 |
+
#: dist/blocks.build.js:110217
|
1322 |
+
#: dist/blocks.build.js:112187
|
1323 |
+
#: dist/blocks.build.js:114899
|
1324 |
+
#: dist/blocks.build.js:116826
|
1325 |
+
#: dist/blocks.build.js:120991
|
1326 |
+
#: dist/blocks.build.js:124305
|
1327 |
+
#: dist/blocks.build.js:128699
|
1328 |
+
#: dist/blocks.build.js:128752
|
1329 |
msgid "Dashed"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
#: dist/blocks.build.js:25852
|
1333 |
#: dist/blocks.build.js:62582
|
1334 |
+
#: dist/blocks.build.js:64654
|
1335 |
+
#: dist/blocks.build.js:65102
|
1336 |
+
#: dist/blocks.build.js:74307
|
1337 |
+
#: dist/blocks.build.js:80299
|
1338 |
+
#: dist/blocks.build.js:82011
|
1339 |
+
#: dist/blocks.build.js:84051
|
1340 |
+
#: dist/blocks.build.js:84267
|
1341 |
+
#: dist/blocks.build.js:87296
|
1342 |
+
#: dist/blocks.build.js:101287
|
1343 |
+
#: dist/blocks.build.js:102920
|
1344 |
+
#: dist/blocks.build.js:105683
|
1345 |
+
#: dist/blocks.build.js:107963
|
1346 |
+
#: dist/blocks.build.js:108185
|
1347 |
+
#: dist/blocks.build.js:109934
|
1348 |
+
#: dist/blocks.build.js:110217
|
1349 |
+
#: dist/blocks.build.js:112187
|
1350 |
+
#: dist/blocks.build.js:114899
|
1351 |
+
#: dist/blocks.build.js:116826
|
1352 |
+
#: dist/blocks.build.js:120991
|
1353 |
+
#: dist/blocks.build.js:124305
|
1354 |
+
#: dist/blocks.build.js:128699
|
1355 |
+
#: dist/blocks.build.js:128752
|
1356 |
msgid "Dotted"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
#: dist/blocks.build.js:25858
|
1360 |
+
#: dist/blocks.build.js:64663
|
1361 |
+
#: dist/blocks.build.js:112190
|
1362 |
+
#: dist/blocks.build.js:120997
|
1363 |
+
#: dist/blocks.build.js:124314
|
1364 |
msgid "Thickness (px)"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
#: dist/blocks.build.js:25871
|
1368 |
#: dist/blocks.build.js:60956
|
1369 |
+
#: dist/blocks.build.js:64393
|
1370 |
+
#: dist/blocks.build.js:64443
|
1371 |
+
#: dist/blocks.build.js:64493
|
1372 |
+
#: dist/blocks.build.js:79477
|
1373 |
+
#: dist/blocks.build.js:79540
|
1374 |
+
#: dist/blocks.build.js:79612
|
1375 |
+
#: dist/blocks.build.js:79684
|
1376 |
+
#: dist/blocks.build.js:79785
|
1377 |
+
#: dist/blocks.build.js:79857
|
1378 |
+
#: dist/blocks.build.js:79929
|
1379 |
+
#: dist/blocks.build.js:82060
|
1380 |
+
#: dist/blocks.build.js:82235
|
1381 |
+
#: dist/blocks.build.js:82284
|
1382 |
+
#: dist/blocks.build.js:82334
|
1383 |
+
#: dist/blocks.build.js:84069
|
1384 |
+
#: dist/blocks.build.js:90600
|
1385 |
+
#: dist/blocks.build.js:90623
|
1386 |
+
#: dist/blocks.build.js:92641
|
1387 |
+
#: dist/blocks.build.js:103137
|
1388 |
+
#: dist/blocks.build.js:103209
|
1389 |
+
#: dist/blocks.build.js:103310
|
1390 |
+
#: dist/blocks.build.js:104965
|
1391 |
+
#: dist/blocks.build.js:105051
|
1392 |
+
#: dist/blocks.build.js:105123
|
1393 |
+
#: dist/blocks.build.js:105195
|
1394 |
+
#: dist/blocks.build.js:105296
|
1395 |
+
#: dist/blocks.build.js:105346
|
1396 |
+
#: dist/blocks.build.js:107977
|
1397 |
+
#: dist/blocks.build.js:108199
|
1398 |
+
#: dist/blocks.build.js:108612
|
1399 |
+
#: dist/blocks.build.js:108920
|
1400 |
+
#: dist/blocks.build.js:109948
|
1401 |
+
#: dist/blocks.build.js:110231
|
1402 |
+
#: dist/blocks.build.js:110644
|
1403 |
+
#: dist/blocks.build.js:112117
|
1404 |
+
#: dist/blocks.build.js:112140
|
1405 |
+
#: dist/blocks.build.js:114606
|
1406 |
+
#: dist/blocks.build.js:114654
|
1407 |
+
#: dist/blocks.build.js:114702
|
1408 |
+
#: dist/blocks.build.js:116066
|
1409 |
+
#: dist/blocks.build.js:116104
|
1410 |
+
#: dist/blocks.build.js:116142
|
1411 |
+
#: dist/blocks.build.js:116294
|
1412 |
+
#: dist/blocks.build.js:116328
|
1413 |
+
#: dist/blocks.build.js:116362
|
1414 |
+
#: dist/blocks.build.js:116483
|
1415 |
+
#: dist/blocks.build.js:116533
|
1416 |
+
#: dist/blocks.build.js:116583
|
1417 |
+
#: dist/blocks.build.js:116661
|
1418 |
+
#: dist/blocks.build.js:116711
|
1419 |
+
#: dist/blocks.build.js:116761
|
1420 |
+
#: dist/blocks.build.js:121065
|
1421 |
+
#: dist/blocks.build.js:121102
|
1422 |
+
#: dist/blocks.build.js:121139
|
1423 |
+
#: dist/blocks.build.js:121390
|
1424 |
+
#: dist/blocks.build.js:121462
|
1425 |
+
#: dist/blocks.build.js:121534
|
1426 |
+
#: dist/blocks.build.js:121679
|
1427 |
+
#: dist/blocks.build.js:121729
|
1428 |
+
#: dist/blocks.build.js:121779
|
1429 |
+
#: dist/blocks.build.js:124225
|
1430 |
+
#: dist/blocks.build.js:124375
|
1431 |
+
#: dist/blocks.build.js:124425
|
1432 |
+
#: dist/blocks.build.js:124475
|
1433 |
msgid "Size Type"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
#: dist/blocks.build.js:25888
|
1437 |
#: dist/blocks.build.js:62585
|
1438 |
+
#: dist/blocks.build.js:65105
|
1439 |
+
#: dist/blocks.build.js:74310
|
1440 |
+
#: dist/blocks.build.js:79457
|
1441 |
+
#: dist/blocks.build.js:84086
|
1442 |
+
#: dist/blocks.build.js:84273
|
1443 |
+
#: dist/blocks.build.js:87692
|
1444 |
+
#: dist/blocks.build.js:89118
|
1445 |
+
#: dist/blocks.build.js:101293
|
1446 |
+
#: dist/blocks.build.js:104656
|
1447 |
+
#: dist/blocks.build.js:104785
|
1448 |
+
#: dist/blocks.build.js:116311
|
1449 |
+
#: dist/blocks.build.js:116345
|
1450 |
+
#: dist/blocks.build.js:116379
|
1451 |
+
#: dist/blocks.build.js:124609
|
1452 |
+
#: dist/blocks.build.js:131306
|
1453 |
+
#: dist/blocks.build.js:131317
|
1454 |
+
#: dist/blocks.build.js:131328
|
1455 |
msgid "Width"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: dist/blocks.build.js:25905
|
1459 |
+
#: dist/blocks.build.js:84099
|
1460 |
+
#: dist/blocks.build.js:128783
|
1461 |
msgid "Separator Color"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
#: dist/blocks.build.js:25924
|
1465 |
#: dist/blocks.build.js:62364
|
1466 |
#: dist/blocks.build.js:62841
|
1467 |
+
#: dist/blocks.build.js:65356
|
1468 |
+
#: dist/blocks.build.js:74578
|
1469 |
+
#: dist/blocks.build.js:79514
|
1470 |
+
#: dist/blocks.build.js:81028
|
1471 |
+
#: dist/blocks.build.js:84667
|
1472 |
+
#: dist/blocks.build.js:87089
|
1473 |
+
#: dist/blocks.build.js:89418
|
1474 |
+
#: dist/blocks.build.js:97903
|
1475 |
+
#: dist/blocks.build.js:99783
|
1476 |
+
#: dist/blocks.build.js:101632
|
1477 |
+
#: dist/blocks.build.js:103039
|
1478 |
+
#: dist/blocks.build.js:108442
|
1479 |
+
#: dist/blocks.build.js:110474
|
1480 |
+
#: dist/blocks.build.js:112867
|
1481 |
+
#: dist/blocks.build.js:118771
|
1482 |
+
#: dist/blocks.build.js:128516
|
1483 |
msgid "Spacing"
|
1484 |
msgstr ""
|
1485 |
|
1492 |
msgstr ""
|
1493 |
|
1494 |
#: dist/blocks.build.js:26178
|
1495 |
+
#: dist/blocks.build.js:104994
|
1496 |
+
#: dist/blocks.build.js:108679
|
1497 |
+
#: dist/blocks.build.js:123248
|
1498 |
msgid "Default"
|
1499 |
msgstr ""
|
1500 |
|
1511 |
msgstr ""
|
1512 |
|
1513 |
#: dist/blocks.build.js:60951
|
1514 |
+
#: dist/blocks.build.js:90596
|
1515 |
+
#: dist/blocks.build.js:92637
|
1516 |
+
#: dist/blocks.build.js:99107
|
1517 |
+
#: dist/blocks.build.js:112076
|
1518 |
msgid "px"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
#: dist/blocks.build.js:60951
|
1522 |
+
#: dist/blocks.build.js:90596
|
1523 |
+
#: dist/blocks.build.js:92637
|
1524 |
+
#: dist/blocks.build.js:99107
|
1525 |
+
#: dist/blocks.build.js:112076
|
1526 |
msgid "em"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
#: dist/blocks.build.js:61362
|
1530 |
+
#: dist/blocks.build.js:63698
|
1531 |
+
#: dist/blocks.build.js:73249
|
1532 |
+
#: dist/blocks.build.js:98782
|
1533 |
+
#: dist/blocks.build.js:127817
|
1534 |
msgid "post"
|
1535 |
msgstr ""
|
1536 |
|
1539 |
msgstr ""
|
1540 |
|
1541 |
#: dist/blocks.build.js:61850
|
1542 |
+
#: dist/blocks.build.js:64133
|
1543 |
+
#: dist/blocks.build.js:73698
|
1544 |
+
#: dist/blocks.build.js:112614
|
1545 |
+
#: dist/blocks.build.js:124731
|
1546 |
msgid "Hover Color"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
#: dist/blocks.build.js:61867
|
1550 |
+
#: dist/blocks.build.js:64150
|
1551 |
+
#: dist/blocks.build.js:73715
|
1552 |
+
#: dist/blocks.build.js:81937
|
1553 |
+
#: dist/blocks.build.js:84476
|
1554 |
+
#: dist/blocks.build.js:101455
|
1555 |
+
#: dist/blocks.build.js:108310
|
1556 |
+
#: dist/blocks.build.js:110342
|
1557 |
+
#: dist/blocks.build.js:112631
|
1558 |
+
#: dist/blocks.build.js:114863
|
1559 |
+
#: dist/blocks.build.js:124640
|
1560 |
+
#: dist/blocks.build.js:131427
|
1561 |
msgid "Background Hover Color"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
#: dist/blocks.build.js:61884
|
1565 |
+
#: dist/blocks.build.js:64167
|
1566 |
+
#: dist/blocks.build.js:73732
|
1567 |
+
#: dist/blocks.build.js:81954
|
1568 |
+
#: dist/blocks.build.js:84496
|
1569 |
+
#: dist/blocks.build.js:101475
|
1570 |
+
#: dist/blocks.build.js:108330
|
1571 |
+
#: dist/blocks.build.js:110362
|
1572 |
+
#: dist/blocks.build.js:112593
|
1573 |
+
#: dist/blocks.build.js:114944
|
1574 |
msgid "Border Hover Color"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
#: dist/blocks.build.js:61906
|
1578 |
+
#: dist/blocks.build.js:64189
|
1579 |
+
#: dist/blocks.build.js:64683
|
1580 |
+
#: dist/blocks.build.js:73754
|
1581 |
+
#: dist/blocks.build.js:80014
|
1582 |
+
#: dist/blocks.build.js:80106
|
1583 |
+
#: dist/blocks.build.js:80345
|
1584 |
+
#: dist/blocks.build.js:87174
|
1585 |
+
#: dist/blocks.build.js:101573
|
1586 |
+
#: dist/blocks.build.js:101613
|
1587 |
+
#: dist/blocks.build.js:103539
|
1588 |
+
#: dist/blocks.build.js:103631
|
1589 |
+
#: dist/blocks.build.js:104631
|
1590 |
+
#: dist/blocks.build.js:104760
|
1591 |
+
#: dist/blocks.build.js:105459
|
1592 |
+
#: dist/blocks.build.js:105729
|
1593 |
+
#: dist/blocks.build.js:108071
|
1594 |
+
#: dist/blocks.build.js:108111
|
1595 |
+
#: dist/blocks.build.js:110052
|
1596 |
+
#: dist/blocks.build.js:110093
|
1597 |
+
#: dist/blocks.build.js:114765
|
1598 |
+
#: dist/blocks.build.js:121017
|
1599 |
+
#: dist/blocks.build.js:124334
|
1600 |
+
#: dist/blocks.build.js:124549
|
1601 |
+
#: dist/blocks.build.js:124714
|
1602 |
+
#: dist/blocks.build.js:124778
|
1603 |
+
#: dist/blocks.build.js:128426
|
1604 |
+
#: dist/blocks.build.js:128685
|
1605 |
msgid "Color"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
#: dist/blocks.build.js:61923
|
1609 |
#: dist/blocks.build.js:62246
|
1610 |
+
#: dist/blocks.build.js:64206
|
1611 |
+
#: dist/blocks.build.js:64586
|
1612 |
+
#: dist/blocks.build.js:64625
|
1613 |
+
#: dist/blocks.build.js:73771
|
1614 |
+
#: dist/blocks.build.js:80022
|
1615 |
+
#: dist/blocks.build.js:81881
|
1616 |
+
#: dist/blocks.build.js:84416
|
1617 |
+
#: dist/blocks.build.js:87182
|
1618 |
+
#: dist/blocks.build.js:97573
|
1619 |
+
#: dist/blocks.build.js:97601
|
1620 |
+
#: dist/blocks.build.js:97700
|
1621 |
+
#: dist/blocks.build.js:99190
|
1622 |
+
#: dist/blocks.build.js:99220
|
1623 |
+
#: dist/blocks.build.js:99270
|
1624 |
+
#: dist/blocks.build.js:101395
|
1625 |
+
#: dist/blocks.build.js:103547
|
1626 |
+
#: dist/blocks.build.js:105467
|
1627 |
+
#: dist/blocks.build.js:108250
|
1628 |
+
#: dist/blocks.build.js:108560
|
1629 |
+
#: dist/blocks.build.js:110110
|
1630 |
+
#: dist/blocks.build.js:110282
|
1631 |
+
#: dist/blocks.build.js:110592
|
1632 |
+
#: dist/blocks.build.js:114773
|
1633 |
+
#: dist/blocks.build.js:115888
|
1634 |
+
#: dist/blocks.build.js:116246
|
1635 |
+
#: dist/blocks.build.js:120932
|
1636 |
+
#: dist/blocks.build.js:124282
|
1637 |
+
#: dist/blocks.build.js:124623
|
1638 |
+
#: dist/blocks.build.js:128433
|
1639 |
+
#: dist/blocks.build.js:131410
|
1640 |
msgid "Background Color"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
#: dist/blocks.build.js:61940
|
1644 |
#: dist/blocks.build.js:62300
|
1645 |
+
#: dist/blocks.build.js:64223
|
1646 |
+
#: dist/blocks.build.js:73788
|
1647 |
+
#: dist/blocks.build.js:80327
|
1648 |
+
#: dist/blocks.build.js:81898
|
1649 |
+
#: dist/blocks.build.js:84436
|
1650 |
+
#: dist/blocks.build.js:87317
|
1651 |
+
#: dist/blocks.build.js:97579
|
1652 |
+
#: dist/blocks.build.js:97607
|
1653 |
+
#: dist/blocks.build.js:99196
|
1654 |
+
#: dist/blocks.build.js:99226
|
1655 |
+
#: dist/blocks.build.js:101415
|
1656 |
+
#: dist/blocks.build.js:102948
|
1657 |
+
#: dist/blocks.build.js:105711
|
1658 |
+
#: dist/blocks.build.js:108009
|
1659 |
+
#: dist/blocks.build.js:108270
|
1660 |
+
#: dist/blocks.build.js:108641
|
1661 |
+
#: dist/blocks.build.js:109980
|
1662 |
+
#: dist/blocks.build.js:110302
|
1663 |
+
#: dist/blocks.build.js:110673
|
1664 |
+
#: dist/blocks.build.js:112529
|
1665 |
+
#: dist/blocks.build.js:114927
|
1666 |
+
#: dist/blocks.build.js:116854
|
1667 |
+
#: dist/blocks.build.js:128727
|
1668 |
+
#: dist/blocks.build.js:130381
|
1669 |
msgid "Border Color"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: dist/blocks.build.js:62007
|
1673 |
+
#: dist/blocks.build.js:64290
|
1674 |
+
#: dist/blocks.build.js:73855
|
1675 |
+
#: dist/blocks.build.js:99083
|
1676 |
msgid "All"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
#: dist/blocks.build.js:62027
|
1680 |
+
#: dist/blocks.build.js:64739
|
1681 |
+
#: dist/blocks.build.js:73874
|
1682 |
+
#: dist/blocks.build.js:81005
|
1683 |
+
#: dist/blocks.build.js:90669
|
1684 |
+
#: dist/blocks.build.js:92153
|
1685 |
+
#: dist/blocks.build.js:92687
|
1686 |
+
#: dist/blocks.build.js:97746
|
1687 |
+
#: dist/blocks.build.js:108147
|
1688 |
+
#: dist/blocks.build.js:110138
|
1689 |
+
#: dist/blocks.build.js:114306
|
1690 |
+
#: dist/blocks.build.js:115796
|
1691 |
+
#: dist/blocks.build.js:118426
|
1692 |
+
#: dist/blocks.build.js:120773
|
1693 |
+
#: dist/blocks.build.js:123241
|
1694 |
+
#: dist/blocks.build.js:124201
|
1695 |
+
#: dist/blocks.build.js:126761
|
1696 |
+
#: dist/blocks.build.js:128186
|
1697 |
msgid "General"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
#: dist/blocks.build.js:62029
|
1701 |
+
#: dist/blocks.build.js:64741
|
1702 |
+
#: dist/blocks.build.js:73876
|
1703 |
+
#: dist/blocks.build.js:99405
|
1704 |
+
#: dist/blocks.build.js:128255
|
1705 |
msgid "Post Type"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
#: dist/blocks.build.js:62038
|
1709 |
+
#: dist/blocks.build.js:64750
|
1710 |
+
#: dist/blocks.build.js:73885
|
1711 |
+
#: dist/blocks.build.js:99414
|
1712 |
+
#: dist/blocks.build.js:128263
|
1713 |
msgid "Taxonomy"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
#: dist/blocks.build.js:62059
|
1717 |
+
#: dist/blocks.build.js:64771
|
1718 |
+
#: dist/blocks.build.js:73906
|
1719 |
+
#: dist/blocks.build.js:99435
|
1720 |
msgid "Exclude Current Post"
|
1721 |
msgstr ""
|
1722 |
|
1725 |
msgstr ""
|
1726 |
|
1727 |
#: dist/blocks.build.js:62078
|
1728 |
+
#: dist/blocks.build.js:64789
|
1729 |
+
#: dist/blocks.build.js:73924
|
1730 |
+
#: dist/blocks.build.js:98494
|
1731 |
+
#: dist/blocks.build.js:99453
|
1732 |
+
#: dist/blocks.build.js:99647
|
1733 |
msgid "Date"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
#: dist/blocks.build.js:62078
|
1737 |
#: dist/blocks.build.js:62674
|
1738 |
+
#: dist/blocks.build.js:64789
|
1739 |
+
#: dist/blocks.build.js:73924
|
1740 |
+
#: dist/blocks.build.js:89297
|
1741 |
+
#: dist/blocks.build.js:99453
|
1742 |
+
#: dist/blocks.build.js:114394
|
1743 |
+
#: dist/blocks.build.js:123421
|
1744 |
msgid "Title"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
#: dist/blocks.build.js:62078
|
1748 |
+
#: dist/blocks.build.js:64789
|
1749 |
+
#: dist/blocks.build.js:73924
|
1750 |
+
#: dist/blocks.build.js:99453
|
1751 |
msgid "Random"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
#: dist/blocks.build.js:62078
|
1755 |
+
#: dist/blocks.build.js:64789
|
1756 |
+
#: dist/blocks.build.js:73924
|
1757 |
+
#: dist/blocks.build.js:99453
|
1758 |
msgid "Menu Order"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: dist/blocks.build.js:62086
|
1762 |
+
#: dist/blocks.build.js:64797
|
1763 |
+
#: dist/blocks.build.js:73932
|
1764 |
+
#: dist/blocks.build.js:99461
|
1765 |
msgid "Descending"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: dist/blocks.build.js:62086
|
1769 |
+
#: dist/blocks.build.js:64797
|
1770 |
+
#: dist/blocks.build.js:73932
|
1771 |
+
#: dist/blocks.build.js:99461
|
1772 |
msgid "Ascending"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: dist/blocks.build.js:62109
|
1776 |
#: dist/blocks.build.js:62119
|
1777 |
#: dist/blocks.build.js:62129
|
1778 |
+
#: dist/blocks.build.js:64820
|
1779 |
+
#: dist/blocks.build.js:64830
|
1780 |
+
#: dist/blocks.build.js:64840
|
1781 |
+
#: dist/blocks.build.js:73955
|
1782 |
+
#: dist/blocks.build.js:73965
|
1783 |
+
#: dist/blocks.build.js:73975
|
1784 |
+
#: dist/blocks.build.js:87594
|
1785 |
+
#: dist/blocks.build.js:87604
|
1786 |
+
#: dist/blocks.build.js:87614
|
1787 |
+
#: dist/blocks.build.js:104935
|
1788 |
+
#: dist/blocks.build.js:116420
|
1789 |
+
#: dist/blocks.build.js:116430
|
1790 |
+
#: dist/blocks.build.js:116440
|
1791 |
msgid "Columns"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
#: dist/blocks.build.js:62147
|
1795 |
+
#: dist/blocks.build.js:73993
|
1796 |
+
#: dist/blocks.build.js:120968
|
1797 |
msgid "Equal Height"
|
1798 |
msgstr ""
|
1799 |
|
1806 |
msgstr ""
|
1807 |
|
1808 |
#: dist/blocks.build.js:62169
|
1809 |
+
#: dist/blocks.build.js:64885
|
1810 |
+
#: dist/blocks.build.js:74003
|
1811 |
msgid "If Posts Not Found"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
#: dist/blocks.build.js:62173
|
1815 |
+
#: dist/blocks.build.js:64889
|
1816 |
+
#: dist/blocks.build.js:74007
|
1817 |
+
#: dist/blocks.build.js:128272
|
1818 |
msgid "Display Message"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
#: dist/blocks.build.js:62181
|
1822 |
+
#: dist/blocks.build.js:64897
|
1823 |
+
#: dist/blocks.build.js:74015
|
1824 |
msgid "Inherit Styling from Theme"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
#: dist/blocks.build.js:62186
|
1828 |
+
#: dist/blocks.build.js:64902
|
1829 |
+
#: dist/blocks.build.js:74020
|
1830 |
msgid "This will inherit all the Typography and colors for Title, Meta, Excerpt and Read More button from the theme."
|
1831 |
msgstr ""
|
1832 |
|
1833 |
#: dist/blocks.build.js:62191
|
1834 |
+
#: dist/blocks.build.js:64309
|
1835 |
+
#: dist/blocks.build.js:64858
|
1836 |
msgid "Pagination"
|
1837 |
msgstr ""
|
1838 |
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: dist/blocks.build.js:62201
|
1844 |
+
#: dist/blocks.build.js:64648
|
1845 |
+
#: dist/blocks.build.js:80292
|
1846 |
+
#: dist/blocks.build.js:82006
|
1847 |
+
#: dist/blocks.build.js:87289
|
1848 |
+
#: dist/blocks.build.js:92855
|
1849 |
+
#: dist/blocks.build.js:102913
|
1850 |
+
#: dist/blocks.build.js:105676
|
1851 |
+
#: dist/blocks.build.js:114892
|
1852 |
+
#: dist/blocks.build.js:116818
|
1853 |
+
#: dist/blocks.build.js:120986
|
1854 |
+
#: dist/blocks.build.js:124300
|
1855 |
msgid "Border"
|
1856 |
msgstr ""
|
1857 |
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#: dist/blocks.build.js:62289
|
1875 |
+
#: dist/blocks.build.js:80312
|
1876 |
+
#: dist/blocks.build.js:87334
|
1877 |
+
#: dist/blocks.build.js:90782
|
1878 |
+
#: dist/blocks.build.js:92865
|
1879 |
+
#: dist/blocks.build.js:102933
|
1880 |
+
#: dist/blocks.build.js:105696
|
1881 |
+
#: dist/blocks.build.js:107994
|
1882 |
+
#: dist/blocks.build.js:108216
|
1883 |
+
#: dist/blocks.build.js:108629
|
1884 |
+
#: dist/blocks.build.js:109965
|
1885 |
+
#: dist/blocks.build.js:110248
|
1886 |
+
#: dist/blocks.build.js:110661
|
1887 |
+
#: dist/blocks.build.js:114912
|
1888 |
+
#: dist/blocks.build.js:116839
|
1889 |
msgid "Border Radius"
|
1890 |
msgstr ""
|
1891 |
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: dist/blocks.build.js:62333
|
1897 |
+
#: dist/blocks.build.js:64569
|
1898 |
+
#: dist/blocks.build.js:64608
|
1899 |
+
#: dist/blocks.build.js:81864
|
1900 |
+
#: dist/blocks.build.js:84319
|
1901 |
+
#: dist/blocks.build.js:84399
|
1902 |
+
#: dist/blocks.build.js:93868
|
1903 |
+
#: dist/blocks.build.js:93980
|
1904 |
+
#: dist/blocks.build.js:101378
|
1905 |
+
#: dist/blocks.build.js:108233
|
1906 |
+
#: dist/blocks.build.js:110265
|
1907 |
+
#: dist/blocks.build.js:121334
|
1908 |
+
#: dist/blocks.build.js:121640
|
1909 |
+
#: dist/blocks.build.js:124265
|
1910 |
+
#: dist/blocks.build.js:124660
|
1911 |
+
#: dist/blocks.build.js:128100
|
1912 |
msgid "Text Color"
|
1913 |
msgstr ""
|
1914 |
|
1929 |
msgstr ""
|
1930 |
|
1931 |
#: dist/blocks.build.js:62388
|
1932 |
+
#: dist/blocks.build.js:64908
|
1933 |
+
#: dist/blocks.build.js:74113
|
1934 |
+
#: dist/blocks.build.js:80014
|
1935 |
+
#: dist/blocks.build.js:84779
|
1936 |
+
#: dist/blocks.build.js:84875
|
1937 |
+
#: dist/blocks.build.js:87174
|
1938 |
+
#: dist/blocks.build.js:87407
|
1939 |
+
#: dist/blocks.build.js:87636
|
1940 |
+
#: dist/blocks.build.js:91758
|
1941 |
+
#: dist/blocks.build.js:94214
|
1942 |
+
#: dist/blocks.build.js:99495
|
1943 |
+
#: dist/blocks.build.js:103539
|
1944 |
+
#: dist/blocks.build.js:105459
|
1945 |
+
#: dist/blocks.build.js:118430
|
1946 |
msgid "Image"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: dist/blocks.build.js:62390
|
1950 |
+
#: dist/blocks.build.js:64910
|
1951 |
+
#: dist/blocks.build.js:74115
|
1952 |
msgid "Show Featured Image"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: dist/blocks.build.js:62397
|
1956 |
+
#: dist/blocks.build.js:64917
|
1957 |
+
#: dist/blocks.build.js:74122
|
1958 |
msgid "Image Sizes"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
#: dist/blocks.build.js:62405
|
1962 |
+
#: dist/blocks.build.js:64925
|
1963 |
+
#: dist/blocks.build.js:74130
|
1964 |
+
#: dist/blocks.build.js:80069
|
1965 |
+
#: dist/blocks.build.js:87229
|
1966 |
+
#: dist/blocks.build.js:103594
|
1967 |
+
#: dist/blocks.build.js:105514
|
1968 |
msgid "Image Position"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: dist/blocks.build.js:62410
|
1972 |
+
#: dist/blocks.build.js:64930
|
1973 |
+
#: dist/blocks.build.js:74135
|
1974 |
+
#: dist/blocks.build.js:84883
|
1975 |
+
#: dist/blocks.build.js:87652
|
1976 |
+
#: dist/blocks.build.js:87663
|
1977 |
+
#: dist/blocks.build.js:89104
|
1978 |
+
#: dist/blocks.build.js:92740
|
1979 |
+
#: dist/blocks.build.js:97766
|
1980 |
+
#: dist/blocks.build.js:99481
|
1981 |
+
#: dist/blocks.build.js:101720
|
1982 |
+
#: dist/blocks.build.js:105652
|
1983 |
+
#: dist/blocks.build.js:112485
|
1984 |
+
#: dist/blocks.build.js:130069
|
1985 |
msgid "Top"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
#: dist/blocks.build.js:62410
|
1989 |
+
#: dist/blocks.build.js:64930
|
1990 |
+
#: dist/blocks.build.js:74135
|
1991 |
+
#: dist/blocks.build.js:80007
|
1992 |
+
#: dist/blocks.build.js:87167
|
1993 |
+
#: dist/blocks.build.js:103532
|
1994 |
+
#: dist/blocks.build.js:105452
|
1995 |
+
#: dist/blocks.build.js:114580
|
1996 |
+
#: dist/blocks.build.js:116241
|
1997 |
msgid "Background"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: dist/blocks.build.js:62418
|
2001 |
+
#: dist/blocks.build.js:64938
|
2002 |
+
#: dist/blocks.build.js:74143
|
2003 |
msgid "Background Overlay Color"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: dist/blocks.build.js:62433
|
2007 |
+
#: dist/blocks.build.js:64953
|
2008 |
+
#: dist/blocks.build.js:74158
|
2009 |
msgid "Overlay Opacity"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
#: dist/blocks.build.js:62443
|
2013 |
+
#: dist/blocks.build.js:64963
|
2014 |
+
#: dist/blocks.build.js:74168
|
2015 |
msgid "Link Complete Box"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
#: dist/blocks.build.js:62453
|
2019 |
+
#: dist/blocks.build.js:64973
|
2020 |
+
#: dist/blocks.build.js:74178
|
2021 |
+
#: dist/blocks.build.js:84516
|
2022 |
+
#: dist/blocks.build.js:97831
|
2023 |
+
#: dist/blocks.build.js:99514
|
2024 |
+
#: dist/blocks.build.js:99620
|
2025 |
+
#: dist/blocks.build.js:101539
|
2026 |
+
#: dist/blocks.build.js:108045
|
2027 |
+
#: dist/blocks.build.js:110016
|
2028 |
+
#: dist/blocks.build.js:112653
|
2029 |
+
#: dist/blocks.build.js:114381
|
2030 |
+
#: dist/blocks.build.js:115906
|
2031 |
+
#: dist/blocks.build.js:116011
|
2032 |
+
#: dist/blocks.build.js:123438
|
2033 |
msgid "Content"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
#: dist/blocks.build.js:62455
|
2037 |
+
#: dist/blocks.build.js:64975
|
2038 |
+
#: dist/blocks.build.js:74180
|
2039 |
msgid "Show Title"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
#: dist/blocks.build.js:62462
|
2043 |
+
#: dist/blocks.build.js:64982
|
2044 |
+
#: dist/blocks.build.js:74187
|
2045 |
msgid "Show Author"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
#: dist/blocks.build.js:62469
|
2049 |
+
#: dist/blocks.build.js:64989
|
2050 |
+
#: dist/blocks.build.js:74194
|
2051 |
msgid "Show Date"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
#: dist/blocks.build.js:62476
|
2055 |
+
#: dist/blocks.build.js:64996
|
2056 |
+
#: dist/blocks.build.js:74201
|
2057 |
msgid "Show Comment"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
#: dist/blocks.build.js:62483
|
2061 |
+
#: dist/blocks.build.js:65003
|
2062 |
+
#: dist/blocks.build.js:74208
|
2063 |
msgid "Show Taxonomy"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#: dist/blocks.build.js:62490
|
2067 |
+
#: dist/blocks.build.js:65010
|
2068 |
+
#: dist/blocks.build.js:74215
|
2069 |
msgid "Show Excerpt"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
#: dist/blocks.build.js:62497
|
2073 |
+
#: dist/blocks.build.js:65017
|
2074 |
+
#: dist/blocks.build.js:74222
|
2075 |
msgid "Show:"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
#: dist/blocks.build.js:62499
|
2079 |
#: dist/blocks.build.js:62738
|
2080 |
+
#: dist/blocks.build.js:65019
|
2081 |
+
#: dist/blocks.build.js:65253
|
2082 |
+
#: dist/blocks.build.js:74224
|
2083 |
+
#: dist/blocks.build.js:74458
|
2084 |
msgid "Excerpt"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
#: dist/blocks.build.js:62499
|
2088 |
+
#: dist/blocks.build.js:65019
|
2089 |
+
#: dist/blocks.build.js:74224
|
2090 |
msgid "Full post"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
#: dist/blocks.build.js:62507
|
2094 |
+
#: dist/blocks.build.js:65027
|
2095 |
+
#: dist/blocks.build.js:74232
|
2096 |
msgid "Max number of words in excerpt"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
#: dist/blocks.build.js:62519
|
2100 |
+
#: dist/blocks.build.js:65039
|
2101 |
+
#: dist/blocks.build.js:74244
|
2102 |
msgid "Read More Link"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
#: dist/blocks.build.js:62521
|
2106 |
+
#: dist/blocks.build.js:65041
|
2107 |
+
#: dist/blocks.build.js:74246
|
2108 |
msgid "Show Read More Link"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
#: dist/blocks.build.js:62528
|
2112 |
+
#: dist/blocks.build.js:65048
|
2113 |
+
#: dist/blocks.build.js:74253
|
2114 |
+
#: dist/blocks.build.js:99573
|
2115 |
msgid "Open links in New Tab"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
#: dist/blocks.build.js:62541
|
2119 |
+
#: dist/blocks.build.js:64875
|
2120 |
+
#: dist/blocks.build.js:65061
|
2121 |
+
#: dist/blocks.build.js:74266
|
2122 |
msgid "Button Text"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
#: dist/blocks.build.js:62544
|
2126 |
+
#: dist/blocks.build.js:65064
|
2127 |
+
#: dist/blocks.build.js:74269
|
2128 |
+
#: dist/blocks.build.js:84126
|
2129 |
+
#: dist/blocks.build.js:84132
|
2130 |
+
#: dist/blocks.build.js:101158
|
2131 |
+
#: dist/blocks.build.js:101164
|
2132 |
+
#: dist/blocks.build.js:112996
|
2133 |
+
#: dist/blocks.build.js:124575
|
2134 |
msgid "Text"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
#: dist/blocks.build.js:62574
|
2138 |
+
#: dist/blocks.build.js:65094
|
2139 |
+
#: dist/blocks.build.js:84259
|
2140 |
+
#: dist/blocks.build.js:101279
|
2141 |
msgid "Button Border"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
#: dist/blocks.build.js:62595
|
2145 |
+
#: dist/blocks.build.js:65115
|
2146 |
+
#: dist/blocks.build.js:74320
|
2147 |
+
#: dist/blocks.build.js:84285
|
2148 |
+
#: dist/blocks.build.js:101304
|
2149 |
msgid "Rounded Corner"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
#: dist/blocks.build.js:62608
|
2153 |
+
#: dist/blocks.build.js:65128
|
2154 |
+
#: dist/blocks.build.js:74333
|
2155 |
+
#: dist/blocks.build.js:101249
|
2156 |
+
#: dist/blocks.build.js:108414
|
2157 |
+
#: dist/blocks.build.js:110446
|
2158 |
+
#: dist/blocks.build.js:113062
|
2159 |
msgid "Button Padding (px)"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: dist/blocks.build.js:62636
|
2163 |
+
#: dist/blocks.build.js:65156
|
2164 |
msgid "Button Colors"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: dist/blocks.build.js:62644
|
2168 |
+
#: dist/blocks.build.js:64552
|
2169 |
+
#: dist/blocks.build.js:65164
|
2170 |
+
#: dist/blocks.build.js:74369
|
2171 |
+
#: dist/blocks.build.js:81848
|
2172 |
+
#: dist/blocks.build.js:83968
|
2173 |
+
#: dist/blocks.build.js:84303
|
2174 |
+
#: dist/blocks.build.js:84370
|
2175 |
+
#: dist/blocks.build.js:87681
|
2176 |
+
#: dist/blocks.build.js:89096
|
2177 |
+
#: dist/blocks.build.js:91682
|
2178 |
+
#: dist/blocks.build.js:94126
|
2179 |
+
#: dist/blocks.build.js:97620
|
2180 |
+
#: dist/blocks.build.js:99239
|
2181 |
+
#: dist/blocks.build.js:101322
|
2182 |
+
#: dist/blocks.build.js:101349
|
2183 |
+
#: dist/blocks.build.js:101688
|
2184 |
+
#: dist/blocks.build.js:108389
|
2185 |
+
#: dist/blocks.build.js:110421
|
2186 |
+
#: dist/blocks.build.js:112415
|
2187 |
+
#: dist/blocks.build.js:113115
|
2188 |
+
#: dist/blocks.build.js:114448
|
2189 |
+
#: dist/blocks.build.js:128492
|
2190 |
msgid "Normal"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
#: dist/blocks.build.js:62648
|
2194 |
+
#: dist/blocks.build.js:64556
|
2195 |
+
#: dist/blocks.build.js:65168
|
2196 |
+
#: dist/blocks.build.js:74373
|
2197 |
+
#: dist/blocks.build.js:81852
|
2198 |
+
#: dist/blocks.build.js:83972
|
2199 |
+
#: dist/blocks.build.js:84307
|
2200 |
+
#: dist/blocks.build.js:84374
|
2201 |
+
#: dist/blocks.build.js:91686
|
2202 |
+
#: dist/blocks.build.js:94130
|
2203 |
+
#: dist/blocks.build.js:101326
|
2204 |
+
#: dist/blocks.build.js:101353
|
2205 |
+
#: dist/blocks.build.js:108393
|
2206 |
+
#: dist/blocks.build.js:110425
|
2207 |
+
#: dist/blocks.build.js:112419
|
2208 |
+
#: dist/blocks.build.js:113119
|
2209 |
+
#: dist/blocks.build.js:114452
|
2210 |
+
#: dist/blocks.build.js:128496
|
2211 |
msgid "Hover"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
#: dist/blocks.build.js:62677
|
2215 |
+
#: dist/blocks.build.js:65192
|
2216 |
+
#: dist/blocks.build.js:84574
|
2217 |
+
#: dist/blocks.build.js:89286
|
2218 |
+
#: dist/blocks.build.js:114383
|
2219 |
msgid "Title Tag"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: dist/blocks.build.js:62682
|
2223 |
+
#: dist/blocks.build.js:65197
|
2224 |
+
#: dist/blocks.build.js:74402
|
2225 |
+
#: dist/blocks.build.js:114388
|
2226 |
+
#: dist/blocks.build.js:123271
|
2227 |
msgid "span"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
#: dist/blocks.build.js:62682
|
2231 |
+
#: dist/blocks.build.js:65197
|
2232 |
+
#: dist/blocks.build.js:74402
|
2233 |
+
#: dist/blocks.build.js:114388
|
2234 |
+
#: dist/blocks.build.js:123271
|
2235 |
msgid "p"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
#: dist/blocks.build.js:62711
|
2239 |
+
#: dist/blocks.build.js:65226
|
2240 |
+
#: dist/blocks.build.js:74431
|
2241 |
msgid "Meta"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
#: dist/blocks.build.js:62762
|
2245 |
+
#: dist/blocks.build.js:65277
|
2246 |
+
#: dist/blocks.build.js:74482
|
2247 |
+
#: dist/blocks.build.js:123323
|
2248 |
msgid "Colors"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
#: dist/blocks.build.js:62766
|
2252 |
+
#: dist/blocks.build.js:65281
|
2253 |
+
#: dist/blocks.build.js:74486
|
2254 |
msgid "Blog Background Color"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
#: dist/blocks.build.js:62786
|
2258 |
+
#: dist/blocks.build.js:65301
|
2259 |
+
#: dist/blocks.build.js:74506
|
2260 |
+
#: dist/blocks.build.js:84601
|
2261 |
+
#: dist/blocks.build.js:89388
|
2262 |
+
#: dist/blocks.build.js:114464
|
2263 |
+
#: dist/blocks.build.js:123328
|
2264 |
+
#: dist/blocks.build.js:126400
|
2265 |
+
#: dist/blocks.build.js:128450
|
2266 |
msgid "Title Color"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
#: dist/blocks.build.js:62803
|
2270 |
+
#: dist/blocks.build.js:65318
|
2271 |
+
#: dist/blocks.build.js:74523
|
2272 |
msgid "Meta Color"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
#: dist/blocks.build.js:62822
|
2276 |
+
#: dist/blocks.build.js:65337
|
2277 |
+
#: dist/blocks.build.js:74542
|
2278 |
msgid "Excerpt Color"
|
2279 |
msgstr ""
|
2280 |
|
2287 |
msgstr ""
|
2288 |
|
2289 |
#: dist/blocks.build.js:62864
|
2290 |
+
#: dist/blocks.build.js:65379
|
2291 |
+
#: dist/blocks.build.js:74601
|
2292 |
+
#: dist/blocks.build.js:87111
|
2293 |
+
#: dist/blocks.build.js:99796
|
2294 |
+
#: dist/blocks.build.js:128582
|
2295 |
msgid "Content Padding"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
#: dist/blocks.build.js:62874
|
2299 |
+
#: dist/blocks.build.js:65389
|
2300 |
+
#: dist/blocks.build.js:74611
|
2301 |
msgid "Content Padding (Mobile)"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
#: dist/blocks.build.js:62885
|
2305 |
+
#: dist/blocks.build.js:65400
|
2306 |
+
#: dist/blocks.build.js:74622
|
2307 |
msgid "Image Bottom Spacing"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
#: dist/blocks.build.js:62895
|
2311 |
+
#: dist/blocks.build.js:65410
|
2312 |
+
#: dist/blocks.build.js:74632
|
2313 |
+
#: dist/blocks.build.js:89421
|
2314 |
+
#: dist/blocks.build.js:114368
|
2315 |
+
#: dist/blocks.build.js:128604
|
2316 |
msgid "Title Bottom Spacing"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
#: dist/blocks.build.js:62905
|
2320 |
+
#: dist/blocks.build.js:65420
|
2321 |
+
#: dist/blocks.build.js:74642
|
2322 |
msgid "Meta Bottom Spacing"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
#: dist/blocks.build.js:62915
|
2326 |
+
#: dist/blocks.build.js:65430
|
2327 |
+
#: dist/blocks.build.js:74652
|
2328 |
msgid "Excerpt Bottom Spacing"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: dist/blocks.build.js:63698
|
2332 |
msgid "masonry"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: dist/blocks.build.js:64320
|
2336 |
+
#: dist/blocks.build.js:81012
|
2337 |
+
#: dist/blocks.build.js:115913
|
2338 |
+
#: dist/blocks.build.js:120883
|
2339 |
+
#: dist/blocks.build.js:128348
|
2340 |
+
#: dist/blocks.build.js:130028
|
2341 |
msgid "Alignment"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: dist/blocks.build.js:64356
|
2345 |
msgid "Font Size (px) "
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: dist/blocks.build.js:64412
|
2349 |
+
#: dist/blocks.build.js:64462
|
2350 |
+
#: dist/blocks.build.js:64512
|
2351 |
+
#: dist/blocks.build.js:79703
|
2352 |
+
#: dist/blocks.build.js:97669
|
2353 |
+
#: dist/blocks.build.js:103228
|
2354 |
+
#: dist/blocks.build.js:116502
|
2355 |
+
#: dist/blocks.build.js:116552
|
2356 |
+
#: dist/blocks.build.js:116602
|
2357 |
+
#: dist/blocks.build.js:121481
|
2358 |
+
#: dist/blocks.build.js:121553
|
2359 |
+
#: dist/blocks.build.js:121698
|
2360 |
+
#: dist/blocks.build.js:121748
|
2361 |
+
#: dist/blocks.build.js:124394
|
2362 |
+
#: dist/blocks.build.js:124444
|
2363 |
+
#: dist/blocks.build.js:124494
|
2364 |
msgid "Padding"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: dist/blocks.build.js:64672
|
2368 |
+
#: dist/blocks.build.js:84831
|
2369 |
+
#: dist/blocks.build.js:121006
|
2370 |
+
#: dist/blocks.build.js:124323
|
2371 |
+
#: dist/blocks.build.js:128715
|
2372 |
msgid "Rounded Corners (px)"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: dist/blocks.build.js:64705
|
2376 |
msgid " Loader Color"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: dist/blocks.build.js:64720
|
2380 |
msgid "Loader Size"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: dist/blocks.build.js:64784
|
2384 |
+
#: dist/blocks.build.js:99448
|
2385 |
msgid "Order By"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: dist/blocks.build.js:64792
|
2389 |
+
#: dist/blocks.build.js:73927
|
2390 |
+
#: dist/blocks.build.js:99456
|
2391 |
msgid "Order"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: dist/blocks.build.js:64863
|
2395 |
msgid "Infinite"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: dist/blocks.build.js:64866
|
2399 |
msgid "Infinite Load Event"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: dist/blocks.build.js:64871
|
2403 |
+
#: dist/blocks.build.js:80082
|
2404 |
+
#: dist/blocks.build.js:103607
|
2405 |
+
#: dist/blocks.build.js:105527
|
2406 |
+
#: dist/blocks.build.js:115825
|
2407 |
msgid "Scroll"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: dist/blocks.build.js:65358
|
2411 |
+
#: dist/blocks.build.js:74580
|
2412 |
+
#: dist/blocks.build.js:87101
|
2413 |
+
#: dist/blocks.build.js:118794
|
2414 |
+
#: dist/blocks.build.js:128521
|
2415 |
msgid "Row Gap"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: dist/blocks.build.js:65368
|
2419 |
+
#: dist/blocks.build.js:104992
|
2420 |
+
#: dist/blocks.build.js:128531
|
2421 |
msgid "Column Gap"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: dist/blocks.build.js:73249
|
2425 |
msgid "carousel"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: dist/blocks.build.js:74025
|
2429 |
+
#: dist/blocks.build.js:87446
|
2430 |
msgid "Carousel"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: dist/blocks.build.js:74027
|
2434 |
+
#: dist/blocks.build.js:87448
|
2435 |
msgid "Pause On Hover"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: dist/blocks.build.js:74034
|
2439 |
msgid "Autoplay"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: dist/blocks.build.js:74041
|
2443 |
+
#: dist/blocks.build.js:87458
|
2444 |
msgid "Autoplay Speed (ms)"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: dist/blocks.build.js:74050
|
2448 |
+
#: dist/blocks.build.js:87467
|
2449 |
msgid "Infinite Loop"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: dist/blocks.build.js:74057
|
2453 |
+
#: dist/blocks.build.js:87472
|
2454 |
msgid "Transition Speed (ms)"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: dist/blocks.build.js:74069
|
2458 |
msgid "Arrows & Dots"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: dist/blocks.build.js:74072
|
2462 |
+
#: dist/blocks.build.js:87481
|
2463 |
msgid "Show Arrows & Dots"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: dist/blocks.build.js:74077
|
2467 |
+
#: dist/blocks.build.js:87486
|
2468 |
msgid "Only Arrows"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: dist/blocks.build.js:74077
|
2472 |
+
#: dist/blocks.build.js:87486
|
2473 |
msgid "Only Dots"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: dist/blocks.build.js:74077
|
2477 |
+
#: dist/blocks.build.js:87486
|
2478 |
msgid "Both Arrows & Dots"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: dist/blocks.build.js:74083
|
2482 |
+
#: dist/blocks.build.js:87492
|
2483 |
msgid "Arrow Size"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: dist/blocks.build.js:74092
|
2487 |
+
#: dist/blocks.build.js:87501
|
2488 |
msgid "Arrow Border Size"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: dist/blocks.build.js:74101
|
2492 |
+
#: dist/blocks.build.js:87510
|
2493 |
msgid "Arrow Border Radius"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: dist/blocks.build.js:74279
|
2497 |
msgid "CTA Tag"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: dist/blocks.build.js:74561
|
2501 |
msgid "Arrows & Dots Color"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: dist/blocks.build.js:74590
|
2505 |
msgid "Gap Between Posts & Dots"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: dist/blocks.build.js:79122
|
2509 |
+
#: dist/blocks.build.js:79509
|
2510 |
+
#: dist/blocks.build.js:105006
|
2511 |
msgid "section"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: dist/blocks.build.js:79122
|
2515 |
msgid "wrapper"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: dist/blocks.build.js:79447
|
2519 |
+
#: dist/blocks.build.js:90671
|
2520 |
+
#: dist/blocks.build.js:92689
|
2521 |
+
#: dist/blocks.build.js:97750
|
2522 |
+
#: dist/blocks.build.js:99466
|
2523 |
+
#: dist/blocks.build.js:101681
|
2524 |
+
#: dist/blocks.build.js:102971
|
2525 |
+
#: dist/blocks.build.js:104933
|
2526 |
+
#: dist/blocks.build.js:112387
|
2527 |
+
#: dist/blocks.build.js:112389
|
2528 |
+
#: dist/blocks.build.js:120778
|
2529 |
+
#: dist/blocks.build.js:123243
|
2530 |
+
#: dist/blocks.build.js:124206
|
2531 |
+
#: dist/blocks.build.js:128188
|
2532 |
msgid "Layout"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: dist/blocks.build.js:79449
|
2536 |
msgid "Content Width"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: dist/blocks.build.js:79454
|
2540 |
msgid "Boxed"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: dist/blocks.build.js:79454
|
2544 |
msgid "Full Width"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: dist/blocks.build.js:79466
|
2548 |
msgid "Inherit Inner Width from Theme"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: dist/blocks.build.js:79494
|
2552 |
+
#: dist/blocks.build.js:104982
|
2553 |
msgid "Inner Width"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: dist/blocks.build.js:79504
|
2557 |
+
#: dist/blocks.build.js:105001
|
2558 |
msgid "HTML Tag"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: dist/blocks.build.js:79509
|
2562 |
+
#: dist/blocks.build.js:105006
|
2563 |
msgid "div"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: dist/blocks.build.js:79509
|
2567 |
+
#: dist/blocks.build.js:105006
|
2568 |
msgid "header"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: dist/blocks.build.js:79509
|
2572 |
+
#: dist/blocks.build.js:105006
|
2573 |
msgid "footer"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: dist/blocks.build.js:79509
|
2577 |
+
#: dist/blocks.build.js:105006
|
2578 |
msgid "main"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: dist/blocks.build.js:79509
|
2582 |
+
#: dist/blocks.build.js:105006
|
2583 |
msgid "article"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: dist/blocks.build.js:79509
|
2587 |
+
#: dist/blocks.build.js:105006
|
2588 |
msgid "aside"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: dist/blocks.build.js:79509
|
2592 |
+
#: dist/blocks.build.js:105006
|
2593 |
msgid "nav"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: dist/blocks.build.js:79631
|
2597 |
+
#: dist/blocks.build.js:103156
|
2598 |
+
#: dist/blocks.build.js:105142
|
2599 |
msgid "Padding Tablet"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: dist/blocks.build.js:79804
|
2603 |
+
#: dist/blocks.build.js:103329
|
2604 |
+
#: dist/blocks.build.js:105315
|
2605 |
msgid "Margin Mobile"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: dist/blocks.build.js:79876
|
2609 |
+
#: dist/blocks.build.js:103401
|
2610 |
+
#: dist/blocks.build.js:105365
|
2611 |
msgid "Margin Tablet"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: dist/blocks.build.js:79948
|
2615 |
+
#: dist/blocks.build.js:103473
|
2616 |
+
#: dist/blocks.build.js:105415
|
2617 |
msgid "Margin"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: dist/blocks.build.js:80009
|
2621 |
+
#: dist/blocks.build.js:87169
|
2622 |
+
#: dist/blocks.build.js:103534
|
2623 |
+
#: dist/blocks.build.js:105454
|
2624 |
+
#: dist/blocks.build.js:114760
|
2625 |
msgid "Background Type"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: dist/blocks.build.js:80014
|
2629 |
+
#: dist/blocks.build.js:80106
|
2630 |
+
#: dist/blocks.build.js:103539
|
2631 |
+
#: dist/blocks.build.js:103631
|
2632 |
+
#: dist/blocks.build.js:105459
|
2633 |
+
#: dist/blocks.build.js:114765
|
2634 |
msgid "Gradient"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: dist/blocks.build.js:80014
|
2638 |
+
#: dist/blocks.build.js:105459
|
2639 |
msgid "Video"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: dist/blocks.build.js:80044
|
2643 |
+
#: dist/blocks.build.js:87204
|
2644 |
+
#: dist/blocks.build.js:103569
|
2645 |
+
#: dist/blocks.build.js:105489
|
2646 |
msgid "Background Image"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: dist/blocks.build.js:80046
|
2650 |
+
#: dist/blocks.build.js:80055
|
2651 |
+
#: dist/blocks.build.js:87206
|
2652 |
+
#: dist/blocks.build.js:87215
|
2653 |
+
#: dist/blocks.build.js:103571
|
2654 |
+
#: dist/blocks.build.js:103580
|
2655 |
+
#: dist/blocks.build.js:105491
|
2656 |
+
#: dist/blocks.build.js:105500
|
2657 |
msgid "Select Background Image"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: dist/blocks.build.js:80055
|
2661 |
+
#: dist/blocks.build.js:87215
|
2662 |
+
#: dist/blocks.build.js:89063
|
2663 |
+
#: dist/blocks.build.js:91798
|
2664 |
+
#: dist/blocks.build.js:103580
|
2665 |
+
#: dist/blocks.build.js:105500
|
2666 |
+
#: dist/blocks.build.js:118444
|
2667 |
+
#: dist/blocks.build.js:126835
|
2668 |
msgid "Replace image"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: dist/blocks.build.js:80074
|
2672 |
+
#: dist/blocks.build.js:80210
|
2673 |
+
#: dist/blocks.build.js:87234
|
2674 |
+
#: dist/blocks.build.js:103599
|
2675 |
+
#: dist/blocks.build.js:105519
|
2676 |
msgid "Top Left"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: dist/blocks.build.js:80074
|
2680 |
+
#: dist/blocks.build.js:80210
|
2681 |
+
#: dist/blocks.build.js:87234
|
2682 |
+
#: dist/blocks.build.js:103599
|
2683 |
+
#: dist/blocks.build.js:105519
|
2684 |
msgid "Top Center"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: dist/blocks.build.js:80074
|
2688 |
+
#: dist/blocks.build.js:80210
|
2689 |
+
#: dist/blocks.build.js:87234
|
2690 |
+
#: dist/blocks.build.js:103599
|
2691 |
+
#: dist/blocks.build.js:105519
|
2692 |
msgid "Top Right"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: dist/blocks.build.js:80074
|
2696 |
+
#: dist/blocks.build.js:80210
|
2697 |
+
#: dist/blocks.build.js:87234
|
2698 |
+
#: dist/blocks.build.js:103599
|
2699 |
+
#: dist/blocks.build.js:105519
|
2700 |
msgid "Center Left"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: dist/blocks.build.js:80074
|
2704 |
+
#: dist/blocks.build.js:80210
|
2705 |
+
#: dist/blocks.build.js:87234
|
2706 |
+
#: dist/blocks.build.js:103599
|
2707 |
+
#: dist/blocks.build.js:105519
|
2708 |
msgid "Center Center"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: dist/blocks.build.js:80074
|
2712 |
+
#: dist/blocks.build.js:80210
|
2713 |
+
#: dist/blocks.build.js:87234
|
2714 |
+
#: dist/blocks.build.js:103599
|
2715 |
+
#: dist/blocks.build.js:105519
|
2716 |
msgid "Center Right"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: dist/blocks.build.js:80074
|
2720 |
+
#: dist/blocks.build.js:80210
|
2721 |
+
#: dist/blocks.build.js:87234
|
2722 |
+
#: dist/blocks.build.js:103599
|
2723 |
+
#: dist/blocks.build.js:105519
|
2724 |
msgid "Bottom Left"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: dist/blocks.build.js:80074
|
2728 |
+
#: dist/blocks.build.js:80210
|
2729 |
+
#: dist/blocks.build.js:87234
|
2730 |
+
#: dist/blocks.build.js:103599
|
2731 |
+
#: dist/blocks.build.js:105519
|
2732 |
msgid "Bottom Center"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: dist/blocks.build.js:80074
|
2736 |
+
#: dist/blocks.build.js:80210
|
2737 |
+
#: dist/blocks.build.js:87234
|
2738 |
+
#: dist/blocks.build.js:103599
|
2739 |
+
#: dist/blocks.build.js:105519
|
2740 |
msgid "Bottom Right"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: dist/blocks.build.js:80077
|
2744 |
+
#: dist/blocks.build.js:103602
|
2745 |
+
#: dist/blocks.build.js:105522
|
2746 |
msgid "Attachment"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: dist/blocks.build.js:80082
|
2750 |
+
#: dist/blocks.build.js:103607
|
2751 |
+
#: dist/blocks.build.js:105527
|
2752 |
msgid "Fixed"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: dist/blocks.build.js:80085
|
2756 |
+
#: dist/blocks.build.js:80090
|
2757 |
+
#: dist/blocks.build.js:87237
|
2758 |
+
#: dist/blocks.build.js:87242
|
2759 |
+
#: dist/blocks.build.js:103610
|
2760 |
+
#: dist/blocks.build.js:103615
|
2761 |
+
#: dist/blocks.build.js:105530
|
2762 |
+
#: dist/blocks.build.js:105535
|
2763 |
msgid "Repeat"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: dist/blocks.build.js:80090
|
2767 |
+
#: dist/blocks.build.js:87242
|
2768 |
+
#: dist/blocks.build.js:103615
|
2769 |
+
#: dist/blocks.build.js:105535
|
2770 |
msgid "No Repeat"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: dist/blocks.build.js:80090
|
2774 |
+
#: dist/blocks.build.js:87242
|
2775 |
+
#: dist/blocks.build.js:103615
|
2776 |
+
#: dist/blocks.build.js:105535
|
2777 |
msgid "Repeat-x"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: dist/blocks.build.js:80090
|
2781 |
+
#: dist/blocks.build.js:87242
|
2782 |
+
#: dist/blocks.build.js:103615
|
2783 |
+
#: dist/blocks.build.js:105535
|
2784 |
msgid "Repeat-y"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: dist/blocks.build.js:80093
|
2788 |
+
#: dist/blocks.build.js:89110
|
2789 |
+
#: dist/blocks.build.js:90717
|
2790 |
+
#: dist/blocks.build.js:90734
|
2791 |
+
#: dist/blocks.build.js:90751
|
2792 |
+
#: dist/blocks.build.js:92771
|
2793 |
+
#: dist/blocks.build.js:92788
|
2794 |
+
#: dist/blocks.build.js:103618
|
2795 |
+
#: dist/blocks.build.js:105538
|
2796 |
+
#: dist/blocks.build.js:108507
|
2797 |
+
#: dist/blocks.build.js:110539
|
2798 |
+
#: dist/blocks.build.js:118459
|
2799 |
+
#: dist/blocks.build.js:124703
|
2800 |
+
#: dist/blocks.build.js:124767
|
2801 |
+
#: dist/blocks.build.js:126850
|
2802 |
msgid "Size"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
+
#: dist/blocks.build.js:80098
|
2806 |
+
#: dist/blocks.build.js:87250
|
2807 |
+
#: dist/blocks.build.js:103623
|
2808 |
+
#: dist/blocks.build.js:105543
|
2809 |
msgid "Auto"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: dist/blocks.build.js:80098
|
2813 |
+
#: dist/blocks.build.js:87250
|
2814 |
+
#: dist/blocks.build.js:103623
|
2815 |
+
#: dist/blocks.build.js:105543
|
2816 |
msgid "Cover"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: dist/blocks.build.js:80098
|
2820 |
+
#: dist/blocks.build.js:87250
|
2821 |
+
#: dist/blocks.build.js:103623
|
2822 |
+
#: dist/blocks.build.js:105543
|
2823 |
msgid "Contain"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: dist/blocks.build.js:80101
|
2827 |
+
#: dist/blocks.build.js:103626
|
2828 |
msgid "Image Overlay Type"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: dist/blocks.build.js:80114
|
2832 |
+
#: dist/blocks.build.js:87258
|
2833 |
+
#: dist/blocks.build.js:103639
|
2834 |
+
#: dist/blocks.build.js:105551
|
2835 |
msgid "Image Overlay Color"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: dist/blocks.build.js:80135
|
2839 |
+
#: dist/blocks.build.js:103664
|
2840 |
+
#: dist/blocks.build.js:114798
|
2841 |
msgid "Color 1"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: dist/blocks.build.js:80150
|
2845 |
+
#: dist/blocks.build.js:103682
|
2846 |
+
#: dist/blocks.build.js:114816
|
2847 |
msgid "Location 1"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: dist/blocks.build.js:80162
|
2851 |
+
#: dist/blocks.build.js:103670
|
2852 |
+
#: dist/blocks.build.js:114804
|
2853 |
msgid "Color 2"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: dist/blocks.build.js:80177
|
2857 |
+
#: dist/blocks.build.js:103692
|
2858 |
+
#: dist/blocks.build.js:114826
|
2859 |
msgid "Location 2"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: dist/blocks.build.js:80187
|
2863 |
+
#: dist/blocks.build.js:80205
|
2864 |
+
#: dist/blocks.build.js:84121
|
2865 |
+
#: dist/blocks.build.js:101153
|
2866 |
+
#: dist/blocks.build.js:103674
|
2867 |
+
#: dist/blocks.build.js:104618
|
2868 |
+
#: dist/blocks.build.js:104747
|
2869 |
+
#: dist/blocks.build.js:114808
|
2870 |
+
#: dist/blocks.build.js:124573
|
2871 |
msgid "Type"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: dist/blocks.build.js:80192
|
2875 |
+
#: dist/blocks.build.js:103679
|
2876 |
+
#: dist/blocks.build.js:114813
|
2877 |
msgid "Linear"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: dist/blocks.build.js:80192
|
2881 |
+
#: dist/blocks.build.js:103679
|
2882 |
+
#: dist/blocks.build.js:114813
|
2883 |
msgid "Radial"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: dist/blocks.build.js:80195
|
2887 |
+
#: dist/blocks.build.js:103702
|
2888 |
+
#: dist/blocks.build.js:114836
|
2889 |
msgid "Angle"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: dist/blocks.build.js:80224
|
2893 |
+
#: dist/blocks.build.js:105577
|
2894 |
msgid "Background Video"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: dist/blocks.build.js:80227
|
2898 |
+
#: dist/blocks.build.js:80236
|
2899 |
+
#: dist/blocks.build.js:105580
|
2900 |
+
#: dist/blocks.build.js:105589
|
2901 |
msgid "Select Background Video"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: dist/blocks.build.js:80236
|
2905 |
+
#: dist/blocks.build.js:105589
|
2906 |
msgid "Replace Video"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: dist/blocks.build.js:80247
|
2910 |
+
#: dist/blocks.build.js:80279
|
2911 |
+
#: dist/blocks.build.js:87276
|
2912 |
+
#: dist/blocks.build.js:104646
|
2913 |
+
#: dist/blocks.build.js:104775
|
2914 |
+
#: dist/blocks.build.js:105600
|
2915 |
+
#: dist/blocks.build.js:105632
|
2916 |
+
#: dist/blocks.build.js:114847
|
2917 |
+
#: dist/blocks.build.js:114878
|
2918 |
msgid "Opacity"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
#: dist/blocks.build.js:80294
|
2922 |
+
#: dist/blocks.build.js:87291
|
2923 |
+
#: dist/blocks.build.js:102915
|
2924 |
+
#: dist/blocks.build.js:105678
|
2925 |
+
#: dist/blocks.build.js:107958
|
2926 |
+
#: dist/blocks.build.js:108180
|
2927 |
+
#: dist/blocks.build.js:109929
|
2928 |
+
#: dist/blocks.build.js:110212
|
2929 |
+
#: dist/blocks.build.js:114894
|
2930 |
+
#: dist/blocks.build.js:116821
|
2931 |
+
#: dist/blocks.build.js:128694
|
2932 |
msgid "Border Style"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: dist/blocks.build.js:80299
|
2936 |
+
#: dist/blocks.build.js:87296
|
2937 |
+
#: dist/blocks.build.js:102920
|
2938 |
+
#: dist/blocks.build.js:105683
|
2939 |
+
#: dist/blocks.build.js:107963
|
2940 |
+
#: dist/blocks.build.js:108185
|
2941 |
+
#: dist/blocks.build.js:109934
|
2942 |
+
#: dist/blocks.build.js:110217
|
2943 |
+
#: dist/blocks.build.js:112187
|
2944 |
+
#: dist/blocks.build.js:114899
|
2945 |
+
#: dist/blocks.build.js:116826
|
2946 |
+
#: dist/blocks.build.js:128699
|
2947 |
+
#: dist/blocks.build.js:128752
|
2948 |
msgid "Groove"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: dist/blocks.build.js:80299
|
2952 |
+
#: dist/blocks.build.js:87296
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2953 |
#: dist/blocks.build.js:102920
|
2954 |
#: dist/blocks.build.js:105683
|
2955 |
+
#: dist/blocks.build.js:107963
|
2956 |
+
#: dist/blocks.build.js:108185
|
2957 |
+
#: dist/blocks.build.js:109934
|
2958 |
+
#: dist/blocks.build.js:110217
|
2959 |
+
#: dist/blocks.build.js:112187
|
2960 |
#: dist/blocks.build.js:114899
|
2961 |
#: dist/blocks.build.js:116826
|
2962 |
+
#: dist/blocks.build.js:128699
|
2963 |
+
#: dist/blocks.build.js:128752
|
2964 |
+
msgid "Ridge"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: dist/blocks.build.js:80302
|
2968 |
+
#: dist/blocks.build.js:87302
|
2969 |
+
#: dist/blocks.build.js:97956
|
2970 |
+
#: dist/blocks.build.js:99759
|
2971 |
+
#: dist/blocks.build.js:102923
|
2972 |
+
#: dist/blocks.build.js:105686
|
2973 |
+
#: dist/blocks.build.js:114902
|
2974 |
+
#: dist/blocks.build.js:116829
|
2975 |
+
msgid "Border Width"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: dist/blocks.build.js:80344
|
2979 |
+
#: dist/blocks.build.js:105728
|
|
|
|
|
2980 |
#: dist/blocks.build.js:124548
|
2981 |
#: dist/blocks.build.js:128684
|
2982 |
+
msgid "Box Shadow"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: dist/blocks.build.js:80346
|
2986 |
+
#: dist/blocks.build.js:90673
|
2987 |
+
#: dist/blocks.build.js:92691
|
2988 |
+
#: dist/blocks.build.js:105730
|
2989 |
#: dist/blocks.build.js:124550
|
2990 |
#: dist/blocks.build.js:128686
|
2991 |
+
msgid "Horizontal"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: dist/blocks.build.js:80347
|
2995 |
+
#: dist/blocks.build.js:90673
|
2996 |
+
#: dist/blocks.build.js:92691
|
2997 |
+
#: dist/blocks.build.js:105731
|
2998 |
#: dist/blocks.build.js:124551
|
2999 |
#: dist/blocks.build.js:128687
|
3000 |
+
msgid "Vertical"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: dist/blocks.build.js:80348
|
3004 |
+
#: dist/blocks.build.js:105732
|
|
|
|
|
3005 |
#: dist/blocks.build.js:124552
|
3006 |
#: dist/blocks.build.js:128688
|
3007 |
+
msgid "Blur"
|
3008 |
+
msgstr ""
|
3009 |
+
|
3010 |
+
#: dist/blocks.build.js:80349
|
3011 |
+
#: dist/blocks.build.js:105733
|
3012 |
+
#: dist/blocks.build.js:124553
|
3013 |
+
#: dist/blocks.build.js:128689
|
3014 |
+
msgid "Spread"
|
3015 |
+
msgstr ""
|
3016 |
+
|
3017 |
+
#: dist/blocks.build.js:80350
|
3018 |
+
#: dist/blocks.build.js:84038
|
3019 |
+
#: dist/blocks.build.js:89074
|
3020 |
+
#: dist/blocks.build.js:105734
|
3021 |
+
#: dist/blocks.build.js:124554
|
3022 |
+
#: dist/blocks.build.js:128690
|
3023 |
msgid "Position"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: dist/blocks.build.js:80829
|
3027 |
msgid "buttons"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: dist/blocks.build.js:80829
|
3031 |
msgid "multi buttons"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: dist/blocks.build.js:81031
|
3035 |
msgid "Gap Between Buttons"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: dist/blocks.build.js:81036
|
3039 |
msgid "Note: The gap between the buttons will seem larger in the editor, for better user edit experience. But at frontend the gap will be exactly what is set from here."
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: dist/blocks.build.js:81042
|
3043 |
+
#: dist/blocks.build.js:84860
|
3044 |
+
#: dist/blocks.build.js:87666
|
3045 |
+
#: dist/blocks.build.js:89082
|
3046 |
+
#: dist/blocks.build.js:90682
|
3047 |
+
#: dist/blocks.build.js:97769
|
3048 |
+
#: dist/blocks.build.js:99484
|
3049 |
+
#: dist/blocks.build.js:101691
|
3050 |
+
#: dist/blocks.build.js:104944
|
3051 |
+
#: dist/blocks.build.js:112438
|
3052 |
msgid "Stack on"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: dist/blocks.build.js:81044
|
3056 |
+
#: dist/blocks.build.js:90684
|
3057 |
msgid "Desktop"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: dist/blocks.build.js:81044
|
3061 |
+
#: dist/blocks.build.js:84862
|
3062 |
+
#: dist/blocks.build.js:87668
|
3063 |
+
#: dist/blocks.build.js:89084
|
3064 |
+
#: dist/blocks.build.js:90684
|
3065 |
+
#: dist/blocks.build.js:92702
|
3066 |
+
#: dist/blocks.build.js:97771
|
3067 |
+
#: dist/blocks.build.js:99486
|
3068 |
+
#: dist/blocks.build.js:101693
|
3069 |
+
#: dist/blocks.build.js:104946
|
3070 |
+
#: dist/blocks.build.js:112440
|
3071 |
msgid "Tablet"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: dist/blocks.build.js:81044
|
3075 |
+
#: dist/blocks.build.js:84862
|
3076 |
+
#: dist/blocks.build.js:87668
|
3077 |
+
#: dist/blocks.build.js:89084
|
3078 |
+
#: dist/blocks.build.js:90684
|
3079 |
+
#: dist/blocks.build.js:92702
|
3080 |
+
#: dist/blocks.build.js:97771
|
3081 |
+
#: dist/blocks.build.js:99486
|
3082 |
+
#: dist/blocks.build.js:101693
|
3083 |
+
#: dist/blocks.build.js:104946
|
3084 |
+
#: dist/blocks.build.js:112440
|
3085 |
msgid "Mobile"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: dist/blocks.build.js:81048
|
3089 |
msgid "Note: Choose on what breakpoint the buttons will stack."
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: dist/blocks.build.js:81764
|
3093 |
+
#: dist/blocks.build.js:83881
|
3094 |
+
#: dist/blocks.build.js:83890
|
3095 |
+
#: dist/blocks.build.js:89167
|
3096 |
+
#: dist/blocks.build.js:89199
|
3097 |
+
#: dist/blocks.build.js:89225
|
3098 |
+
#: dist/blocks.build.js:89257
|
3099 |
+
#: dist/blocks.build.js:91780
|
3100 |
+
#: dist/blocks.build.js:94236
|
3101 |
+
#: dist/blocks.build.js:97552
|
3102 |
+
#: dist/blocks.build.js:99104
|
3103 |
+
#: dist/blocks.build.js:101146
|
3104 |
+
#: dist/blocks.build.js:114329
|
3105 |
+
#: dist/blocks.build.js:115764
|
3106 |
+
#: dist/blocks.build.js:121251
|
3107 |
+
#: dist/blocks.build.js:121267
|
3108 |
+
#: dist/blocks.build.js:123300
|
3109 |
+
#: dist/blocks.build.js:130064
|
3110 |
msgid "Select Icon"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: dist/blocks.build.js:81794
|
3114 |
msgid "Button Settings"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: dist/blocks.build.js:81799
|
3118 |
+
#: dist/blocks.build.js:84139
|
3119 |
+
#: dist/blocks.build.js:101171
|
3120 |
msgid "Inherit from Theme"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: dist/blocks.build.js:81808
|
3124 |
+
#: dist/blocks.build.js:84197
|
3125 |
msgid "Button Icon"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: dist/blocks.build.js:81815
|
3129 |
+
#: dist/blocks.build.js:84204
|
3130 |
+
#: dist/blocks.build.js:101222
|
3131 |
+
#: dist/blocks.build.js:114335
|
3132 |
+
#: dist/blocks.build.js:130067
|
3133 |
msgid "Icon Position"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: dist/blocks.build.js:81820
|
3137 |
+
#: dist/blocks.build.js:84209
|
3138 |
+
#: dist/blocks.build.js:101227
|
3139 |
+
#: dist/blocks.build.js:114340
|
3140 |
msgid "Before Text"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: dist/blocks.build.js:81820
|
3144 |
+
#: dist/blocks.build.js:84209
|
3145 |
+
#: dist/blocks.build.js:101227
|
3146 |
+
#: dist/blocks.build.js:114340
|
3147 |
msgid "After Text"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: dist/blocks.build.js:81823
|
3151 |
+
#: dist/blocks.build.js:84212
|
3152 |
+
#: dist/blocks.build.js:101230
|
3153 |
+
#: dist/blocks.build.js:114343
|
3154 |
+
#: dist/blocks.build.js:130077
|
3155 |
msgid "Icon Spacing"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: dist/blocks.build.js:81840
|
3159 |
msgid " Color Settings"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: dist/blocks.build.js:81920
|
3163 |
+
#: dist/blocks.build.js:84341
|
3164 |
+
#: dist/blocks.build.js:84459
|
3165 |
+
#: dist/blocks.build.js:93923
|
3166 |
+
#: dist/blocks.build.js:94052
|
3167 |
+
#: dist/blocks.build.js:101438
|
3168 |
+
#: dist/blocks.build.js:108293
|
3169 |
+
#: dist/blocks.build.js:110325
|
3170 |
+
#: dist/blocks.build.js:124677
|
3171 |
+
#: dist/blocks.build.js:128143
|
3172 |
msgid "Text Hover Color"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: dist/blocks.build.js:81981
|
3176 |
msgid "Padding (px)"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: dist/blocks.build.js:82017
|
3180 |
+
#: dist/blocks.build.js:84057
|
3181 |
msgid "Thickness"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: dist/blocks.build.js:82026
|
3185 |
+
#: dist/blocks.build.js:97658
|
3186 |
+
#: dist/blocks.build.js:99723
|
3187 |
msgid "Rounded Corners"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: dist/blocks.build.js:83552
|
3191 |
msgid "info box"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: dist/blocks.build.js:83652
|
3195 |
+
#: dist/blocks.build.js:87347
|
3196 |
+
#: dist/blocks.build.js:88713
|
3197 |
+
#: dist/blocks.build.js:112171
|
3198 |
+
#: dist/blocks.build.js:118105
|
3199 |
+
#: dist/blocks.build.js:125960
|
3200 |
msgid "Thumbnail"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: dist/blocks.build.js:83652
|
3204 |
+
#: dist/blocks.build.js:87347
|
3205 |
+
#: dist/blocks.build.js:88713
|
3206 |
+
#: dist/blocks.build.js:105850
|
3207 |
+
#: dist/blocks.build.js:112171
|
3208 |
+
#: dist/blocks.build.js:118105
|
3209 |
+
#: dist/blocks.build.js:125960
|
3210 |
msgid "Medium"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: dist/blocks.build.js:83652
|
3214 |
+
#: dist/blocks.build.js:87347
|
3215 |
+
#: dist/blocks.build.js:88713
|
3216 |
+
#: dist/blocks.build.js:105855
|
3217 |
+
#: dist/blocks.build.js:112171
|
3218 |
+
#: dist/blocks.build.js:118105
|
3219 |
+
#: dist/blocks.build.js:125960
|
3220 |
msgid "Large"
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: dist/blocks.build.js:83952
|
3224 |
+
#: dist/blocks.build.js:92805
|
3225 |
+
#: dist/blocks.build.js:97940
|
3226 |
+
#: dist/blocks.build.js:99739
|
3227 |
+
#: dist/blocks.build.js:114354
|
3228 |
+
#: dist/blocks.build.js:115989
|
3229 |
+
#: dist/blocks.build.js:130116
|
3230 |
msgid "Icon Size"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: dist/blocks.build.js:83984
|
3234 |
+
#: dist/blocks.build.js:93997
|
3235 |
+
#: dist/blocks.build.js:97567
|
3236 |
+
#: dist/blocks.build.js:97595
|
3237 |
+
#: dist/blocks.build.js:99184
|
3238 |
+
#: dist/blocks.build.js:99214
|
3239 |
+
#: dist/blocks.build.js:112550
|
3240 |
+
#: dist/blocks.build.js:114481
|
3241 |
+
#: dist/blocks.build.js:115871
|
3242 |
+
#: dist/blocks.build.js:130092
|
3243 |
msgid "Icon Color"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: dist/blocks.build.js:84006
|
3247 |
+
#: dist/blocks.build.js:91642
|
3248 |
+
#: dist/blocks.build.js:94069
|
3249 |
+
#: dist/blocks.build.js:114537
|
3250 |
msgid "Icon Hover Color"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: dist/blocks.build.js:84043
|
3254 |
msgid "After Icon/Image"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: dist/blocks.build.js:84043
|
3258 |
msgid "After Prefix"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: dist/blocks.build.js:84043
|
3262 |
msgid "After Title"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: dist/blocks.build.js:84043
|
3266 |
msgid "After Description"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: dist/blocks.build.js:84126
|
3270 |
+
#: dist/blocks.build.js:101158
|
3271 |
msgid "Complete Box"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: dist/blocks.build.js:84178
|
3275 |
+
#: dist/blocks.build.js:101196
|
3276 |
+
#: dist/blocks.build.js:113004
|
3277 |
+
#: dist/blocks.build.js:114295
|
3278 |
msgid "Link"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: dist/blocks.build.js:84185
|
3282 |
+
#: dist/blocks.build.js:101203
|
3283 |
msgid "Open in new Window"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: dist/blocks.build.js:84231
|
3287 |
+
#: dist/blocks.build.js:114625
|
3288 |
+
#: dist/blocks.build.js:114673
|
3289 |
+
#: dist/blocks.build.js:114721
|
3290 |
msgid "Button Padding"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: dist/blocks.build.js:84518
|
3294 |
msgid "Enable Prefix"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: dist/blocks.build.js:84547
|
3298 |
msgid "Prefix Color"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: dist/blocks.build.js:84564
|
3302 |
msgid "Enable Title"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: dist/blocks.build.js:84618
|
3306 |
msgid "Enable Description"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: dist/blocks.build.js:84647
|
3310 |
+
#: dist/blocks.build.js:89400
|
3311 |
+
#: dist/blocks.build.js:114498
|
3312 |
+
#: dist/blocks.build.js:126438
|
3313 |
msgid "Description Color"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: dist/blocks.build.js:84669
|
3317 |
msgid "Prefix Bottom Margin"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: dist/blocks.build.js:84680
|
3321 |
msgid "Title Bottom Margin"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: dist/blocks.build.js:84691
|
3325 |
msgid "Separator Bottom Margin"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: dist/blocks.build.js:84702
|
3329 |
+
#: dist/blocks.build.js:101645
|
3330 |
msgid "Description Bottom Margin"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: dist/blocks.build.js:84716
|
3334 |
msgid "Image/Icon Margin (px)"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: dist/blocks.build.js:84764
|
|
|
3338 |
#: dist/blocks.build.js:84767
|
3339 |
+
#: dist/blocks.build.js:84781
|
3340 |
+
#: dist/blocks.build.js:86775
|
3341 |
+
#: dist/blocks.build.js:86778
|
3342 |
+
#: dist/blocks.build.js:89054
|
3343 |
+
#: dist/blocks.build.js:89063
|
3344 |
+
#: dist/blocks.build.js:91787
|
3345 |
+
#: dist/blocks.build.js:91798
|
3346 |
+
#: dist/blocks.build.js:94243
|
3347 |
#: dist/blocks.build.js:112161
|
3348 |
+
#: dist/blocks.build.js:112164
|
3349 |
+
#: dist/blocks.build.js:112457
|
3350 |
+
#: dist/blocks.build.js:118433
|
3351 |
+
#: dist/blocks.build.js:118444
|
3352 |
+
#: dist/blocks.build.js:126824
|
3353 |
+
#: dist/blocks.build.js:126835
|
3354 |
msgid "Select Image"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: dist/blocks.build.js:84769
|
3358 |
+
#: dist/blocks.build.js:86780
|
3359 |
+
#: dist/blocks.build.js:112166
|
3360 |
msgid "Replace Image"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: dist/blocks.build.js:84797
|
3364 |
+
#: dist/blocks.build.js:87222
|
3365 |
+
#: dist/blocks.build.js:89070
|
3366 |
+
#: dist/blocks.build.js:91810
|
3367 |
+
#: dist/blocks.build.js:94259
|
3368 |
+
#: dist/blocks.build.js:103587
|
3369 |
+
#: dist/blocks.build.js:105507
|
3370 |
+
#: dist/blocks.build.js:112473
|
3371 |
+
#: dist/blocks.build.js:118456
|
3372 |
+
#: dist/blocks.build.js:126847
|
3373 |
msgid "Remove Image"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: dist/blocks.build.js:84804
|
3377 |
+
#: dist/blocks.build.js:87684
|
3378 |
msgid "Image Size"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: dist/blocks.build.js:84812
|
3382 |
+
#: dist/blocks.build.js:116262
|
3383 |
msgid "Custom Width"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: dist/blocks.build.js:84817
|
3387 |
msgid "Turn this off to inherit the natural width of Image."
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: dist/blocks.build.js:84820
|
3391 |
msgid "Width (px)"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: dist/blocks.build.js:84850
|
3395 |
msgid "Image/Icon"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: dist/blocks.build.js:84852
|
3399 |
msgid "Select Position"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: dist/blocks.build.js:84857
|
3403 |
msgid "Above Title"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: dist/blocks.build.js:84857
|
3407 |
msgid "Below Title"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: dist/blocks.build.js:84857
|
3411 |
msgid "Left of Title"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: dist/blocks.build.js:84857
|
3415 |
msgid "Right of Title"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: dist/blocks.build.js:84857
|
3419 |
msgid "Left of Text and Title"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: dist/blocks.build.js:84857
|
3423 |
msgid "Right of Text and Title"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: dist/blocks.build.js:84863
|
3427 |
+
#: dist/blocks.build.js:87669
|
3428 |
msgid "Note: Choose on what breakpoint the Info Box will stack."
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: dist/blocks.build.js:84870
|
3432 |
msgid "Select Source"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: dist/blocks.build.js:84878
|
3436 |
+
#: dist/blocks.build.js:89099
|
3437 |
msgid "Vertical Alignment"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: dist/blocks.build.js:84883
|
3441 |
+
#: dist/blocks.build.js:87663
|
3442 |
+
#: dist/blocks.build.js:89104
|
3443 |
+
#: dist/blocks.build.js:92740
|
3444 |
+
#: dist/blocks.build.js:101720
|
3445 |
msgid "Middle"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: dist/blocks.build.js:86597
|
3449 |
msgid "testimonial"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: dist/blocks.build.js:87012
|
3453 |
msgid "Name"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: dist/blocks.build.js:87035
|
3457 |
msgid "Company"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: dist/blocks.build.js:87063
|
3461 |
msgid "Testimonial Color"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: dist/blocks.build.js:87069
|
3465 |
msgid "Name Color"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: dist/blocks.build.js:87075
|
3469 |
msgid "Company Color"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: dist/blocks.build.js:87081
|
3473 |
msgid "Arrow & Dots Color"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: dist/blocks.build.js:87091
|
3477 |
msgid "Gap Between Content & Dots"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: dist/blocks.build.js:87121
|
3481 |
msgid "Testimonial Bottom Margin"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: dist/blocks.build.js:87131
|
3485 |
msgid "Name Bottom Margin"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: dist/blocks.build.js:87141
|
3489 |
msgid "Image Horizontal Padding"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: dist/blocks.build.js:87151
|
3493 |
msgid "Image Vertical Padding"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: dist/blocks.build.js:87407
|
3497 |
msgid "Settings"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: dist/blocks.build.js:87540
|
3501 |
msgid "Number of Testimonials"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: dist/blocks.build.js:87652
|
3505 |
+
#: dist/blocks.build.js:97766
|
3506 |
+
#: dist/blocks.build.js:99481
|
3507 |
+
#: dist/blocks.build.js:105656
|
3508 |
+
#: dist/blocks.build.js:130069
|
3509 |
msgid "Bottom"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: dist/blocks.build.js:87652
|
3513 |
+
#: dist/blocks.build.js:89079
|
3514 |
+
#: dist/blocks.build.js:97758
|
3515 |
+
#: dist/blocks.build.js:99473
|
3516 |
+
#: dist/blocks.build.js:108356
|
3517 |
+
#: dist/blocks.build.js:110184
|
3518 |
+
#: dist/blocks.build.js:110388
|
3519 |
+
#: dist/blocks.build.js:112485
|
3520 |
+
#: dist/blocks.build.js:114313
|
3521 |
+
#: dist/blocks.build.js:115918
|
3522 |
+
#: dist/blocks.build.js:130069
|
3523 |
msgid "Left"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: dist/blocks.build.js:87652
|
3527 |
+
#: dist/blocks.build.js:89079
|
3528 |
+
#: dist/blocks.build.js:97758
|
3529 |
+
#: dist/blocks.build.js:99473
|
3530 |
+
#: dist/blocks.build.js:108356
|
3531 |
+
#: dist/blocks.build.js:110184
|
3532 |
+
#: dist/blocks.build.js:110388
|
3533 |
+
#: dist/blocks.build.js:112485
|
3534 |
+
#: dist/blocks.build.js:114313
|
3535 |
+
#: dist/blocks.build.js:115918
|
3536 |
+
#: dist/blocks.build.js:130069
|
3537 |
msgid "Right"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: dist/blocks.build.js:87658
|
3541 |
msgid "Vertical ALignment"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: dist/blocks.build.js:87676
|
3545 |
+
#: dist/blocks.build.js:89091
|
3546 |
msgid "Image Style"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: dist/blocks.build.js:87681
|
3550 |
+
#: dist/blocks.build.js:89096
|
3551 |
msgid "Circle"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
#: dist/blocks.build.js:87681
|
3555 |
+
#: dist/blocks.build.js:89096
|
3556 |
msgid "Square"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: dist/blocks.build.js:88629
|
3560 |
msgid "team"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: dist/blocks.build.js:88629
|
3564 |
msgid "members"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: dist/blocks.build.js:88992
|
3568 |
msgid "Write a Title"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: dist/blocks.build.js:89009
|
3572 |
msgid "Enter Prefix"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: dist/blocks.build.js:89015
|
3576 |
msgid "Write a Designation"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: dist/blocks.build.js:89052
|
3580 |
msgid "Team Member Image"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: dist/blocks.build.js:89079
|
3584 |
msgid "Above"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: dist/blocks.build.js:89131
|
3588 |
msgid "Social Links"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: dist/blocks.build.js:89134
|
3592 |
msgid "Enable Social Links"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: dist/blocks.build.js:89144
|
3596 |
msgid "Open Links in New Window"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: dist/blocks.build.js:89152
|
3600 |
+
#: dist/blocks.build.js:91752
|
3601 |
msgid "Twitter"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: dist/blocks.build.js:89172
|
3605 |
+
#: dist/blocks.build.js:89204
|
3606 |
+
#: dist/blocks.build.js:89236
|
3607 |
+
#: dist/blocks.build.js:89268
|
3608 |
+
#: dist/blocks.build.js:94281
|
3609 |
+
#: dist/blocks.build.js:113048
|
3610 |
msgid "URL"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: dist/blocks.build.js:89179
|
3614 |
msgid "Enter Twitter URL"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: dist/blocks.build.js:89184
|
3618 |
+
#: dist/blocks.build.js:91752
|
3619 |
msgid "Facebook"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: dist/blocks.build.js:89211
|
3623 |
msgid "Enter Facebook URL"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: dist/blocks.build.js:89216
|
3627 |
+
#: dist/blocks.build.js:91752
|
3628 |
msgid "LinkedIn"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: dist/blocks.build.js:89243
|
3632 |
msgid "Enter LinkedIn URL"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: dist/blocks.build.js:89248
|
3636 |
+
#: dist/blocks.build.js:91752
|
3637 |
msgid "Pinterest"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: dist/blocks.build.js:89275
|
3641 |
msgid "Enter Pinterest URL"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: dist/blocks.build.js:89320
|
3645 |
msgid "Prefix"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: dist/blocks.build.js:89343
|
3649 |
+
#: dist/blocks.build.js:101591
|
3650 |
+
#: dist/blocks.build.js:114417
|
3651 |
+
#: dist/blocks.build.js:118696
|
3652 |
+
#: dist/blocks.build.js:118751
|
3653 |
+
#: dist/blocks.build.js:119090
|
3654 |
+
#: dist/blocks.build.js:119136
|
3655 |
msgid "Description"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: dist/blocks.build.js:89366
|
3659 |
msgid "Social Icons"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: dist/blocks.build.js:89394
|
3663 |
msgid "Designation Color"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: dist/blocks.build.js:89406
|
3667 |
msgid "Social Icon Color"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: dist/blocks.build.js:89412
|
3671 |
msgid "Social Icon Hover Color"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: dist/blocks.build.js:89432
|
3675 |
msgid "Designation Bottom Spacing"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: dist/blocks.build.js:89443
|
3679 |
msgid "Description Bottom Spacing"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: dist/blocks.build.js:89453
|
3683 |
msgid "Inter Social Icon Spacing"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: dist/blocks.build.js:89469
|
3687 |
msgid "Image Margin (px)"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: dist/blocks.build.js:90385
|
3691 |
+
#: dist/blocks.build.js:91363
|
3692 |
msgid "social share"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: dist/blocks.build.js:90385
|
3696 |
+
#: dist/blocks.build.js:91363
|
3697 |
msgid "icon"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: dist/blocks.build.js:90688
|
3701 |
+
#: dist/blocks.build.js:92706
|
3702 |
msgid "Note: Choose on what breakpoint the Icons will stack."
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
#: dist/blocks.build.js:90772
|
3706 |
+
#: dist/blocks.build.js:92845
|
3707 |
+
#: dist/blocks.build.js:112316
|
3708 |
+
#: dist/blocks.build.js:112334
|
3709 |
+
#: dist/blocks.build.js:112352
|
3710 |
msgid "Background Size"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: dist/blocks.build.js:90777
|
3714 |
+
#: dist/blocks.build.js:92850
|
3715 |
msgid "Note: Background Size option is useful when one adds background color to the icons."
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: dist/blocks.build.js:90787
|
3719 |
+
#: dist/blocks.build.js:92870
|
3720 |
msgid "Note: Border Radius option is useful when one adds background color to the icons."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: dist/blocks.build.js:90793
|
3724 |
+
#: dist/blocks.build.js:92718
|
3725 |
msgid "Gap between Items"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: dist/blocks.build.js:90798
|
3729 |
msgid "Note: The gap between the items will seem larger in the editor, for better user edit experience. But at frontend the gap will be exactly what is set from here."
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: dist/blocks.build.js:91560
|
3733 |
+
#: dist/blocks.build.js:93885
|
3734 |
msgid "Image Background Color"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#: dist/blocks.build.js:91581
|
3738 |
+
#: dist/blocks.build.js:93940
|
3739 |
msgid "Image Background Hover Color"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: dist/blocks.build.js:91621
|
3743 |
+
#: dist/blocks.build.js:94014
|
3744 |
+
#: dist/blocks.build.js:112567
|
3745 |
msgid "Icon Background Color"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: dist/blocks.build.js:91659
|
3749 |
+
#: dist/blocks.build.js:94086
|
3750 |
msgid "Icon Background Hover Color"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: dist/blocks.build.js:91748
|
3754 |
msgid "Social Share Settings"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: dist/blocks.build.js:91752
|
3758 |
msgid "Google Currents"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: dist/blocks.build.js:91752
|
3762 |
msgid "Digg"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: dist/blocks.build.js:91752
|
3766 |
msgid "Blogger"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: dist/blocks.build.js:91752
|
3770 |
msgid "Reddit"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: dist/blocks.build.js:91752
|
3774 |
msgid "StumbleUpon"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: dist/blocks.build.js:91752
|
3778 |
msgid "Tumblr"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: dist/blocks.build.js:91752
|
3782 |
msgid "Myspace"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: dist/blocks.build.js:91752
|
3786 |
msgid "Email"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: dist/blocks.build.js:91752
|
3790 |
msgid "Pocket"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: dist/blocks.build.js:91752
|
3794 |
msgid "VK"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: dist/blocks.build.js:91752
|
3798 |
msgid "Odnoklassniki"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
+
#: dist/blocks.build.js:91752
|
3802 |
msgid "Skype"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: dist/blocks.build.js:91752
|
3806 |
msgid "Telegram"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: dist/blocks.build.js:91752
|
3810 |
msgid "WhatsApp"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: dist/blocks.build.js:91752
|
3814 |
msgid "Xing"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
+
#: dist/blocks.build.js:91752
|
3818 |
msgid "Buffer"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
+
#: dist/blocks.build.js:91756
|
3822 |
+
#: dist/blocks.build.js:94212
|
3823 |
msgid "Image / Icon"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: dist/blocks.build.js:91817
|
3827 |
+
#: dist/blocks.build.js:94302
|
3828 |
msgid "Icon Color Settings"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: dist/blocks.build.js:92157
|
3832 |
msgid "This block uses Ultimate Addon for Gutenberg's API key to display the map. You don't need to create your own API key or worry about renewing it."
|
3833 |
msgstr ""
|
3834 |
|
3835 |
+
#: dist/blocks.build.js:92162
|
3836 |
msgid "Address"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: dist/blocks.build.js:92169
|
3840 |
msgid "Type the address"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: dist/blocks.build.js:92172
|
3844 |
msgid "Zoom"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: dist/blocks.build.js:92183
|
3848 |
+
#: dist/blocks.build.js:104686
|
3849 |
+
#: dist/blocks.build.js:104697
|
3850 |
+
#: dist/blocks.build.js:104708
|
3851 |
+
#: dist/blocks.build.js:104815
|
3852 |
+
#: dist/blocks.build.js:104826
|
3853 |
+
#: dist/blocks.build.js:104837
|
3854 |
+
#: dist/blocks.build.js:131367
|
3855 |
+
#: dist/blocks.build.js:131378
|
3856 |
+
#: dist/blocks.build.js:131389
|
3857 |
msgid "Height"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: dist/blocks.build.js:92193
|
3861 |
msgid "Language"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: dist/blocks.build.js:92198
|
3865 |
msgid "Afrikaans"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: dist/blocks.build.js:92198
|
3869 |
msgid "Albanian"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: dist/blocks.build.js:92198
|
3873 |
msgid "Amharic"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: dist/blocks.build.js:92198
|
3877 |
msgid "Arabic"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: dist/blocks.build.js:92198
|
3881 |
msgid "Armenian"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: dist/blocks.build.js:92198
|
3885 |
msgid "Azerbaijani"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: dist/blocks.build.js:92198
|
3889 |
msgid "Basque"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: dist/blocks.build.js:92198
|
3893 |
msgid "Belarusian"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: dist/blocks.build.js:92198
|
3897 |
msgid "Bengali"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: dist/blocks.build.js:92198
|
3901 |
msgid "Bosnian"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: dist/blocks.build.js:92198
|
3905 |
msgid "Bulgarian"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: dist/blocks.build.js:92198
|
3909 |
msgid "Burmese"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: dist/blocks.build.js:92198
|
3913 |
msgid "Catalan"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: dist/blocks.build.js:92198
|
3917 |
msgid "Chinese"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: dist/blocks.build.js:92198
|
3921 |
msgid "Croatian"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: dist/blocks.build.js:92198
|
3925 |
msgid "Czech"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: dist/blocks.build.js:92198
|
3929 |
msgid "Danish"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: dist/blocks.build.js:92198
|
3933 |
msgid "Dutch"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: dist/blocks.build.js:92198
|
3937 |
msgid "English"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: dist/blocks.build.js:92198
|
3941 |
msgid "Estonian"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: dist/blocks.build.js:92198
|
3945 |
msgid "Farsi"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: dist/blocks.build.js:92198
|
3949 |
msgid "Finnish"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: dist/blocks.build.js:92198
|
3953 |
msgid "French"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: dist/blocks.build.js:92198
|
3957 |
msgid "Galician"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: dist/blocks.build.js:92198
|
3961 |
msgid "Georgian"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: dist/blocks.build.js:92198
|
3965 |
msgid "German"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: dist/blocks.build.js:92198
|
3969 |
msgid "Greek"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: dist/blocks.build.js:92198
|
3973 |
msgid "Gujarati"
|
3974 |
msgstr ""
|
3975 |
|
3976 |
+
#: dist/blocks.build.js:92198
|
3977 |
msgid "Hebrew"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: dist/blocks.build.js:92198
|
3981 |
msgid "Hindi"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
+
#: dist/blocks.build.js:92198
|
3985 |
msgid "Hungarian"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: dist/blocks.build.js:92198
|
3989 |
msgid "Icelandic"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: dist/blocks.build.js:92198
|
3993 |
msgid "Indonesian"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: dist/blocks.build.js:92198
|
3997 |
msgid "Italian"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: dist/blocks.build.js:92198
|
4001 |
msgid "Japanese"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: dist/blocks.build.js:92198
|
4005 |
msgid "Kannada"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: dist/blocks.build.js:92198
|
4009 |
msgid "Kazakh"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: dist/blocks.build.js:92198
|
4013 |
msgid "Khmer"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: dist/blocks.build.js:92198
|
4017 |
msgid "Korean"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: dist/blocks.build.js:92198
|
4021 |
msgid "Kyrgyz"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: dist/blocks.build.js:92198
|
4025 |
msgid "Lao"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: dist/blocks.build.js:92198
|
4029 |
msgid "Latvian"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: dist/blocks.build.js:92198
|
4033 |
msgid "Lithuanian"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: dist/blocks.build.js:92198
|
4037 |
msgid "Macedonian"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: dist/blocks.build.js:92198
|
4041 |
msgid "Malay"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: dist/blocks.build.js:92198
|
4045 |
msgid "Malayalam"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: dist/blocks.build.js:92198
|
4049 |
msgid "Marathi"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: dist/blocks.build.js:92198
|
4053 |
msgid "Mongolian"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: dist/blocks.build.js:92198
|
4057 |
msgid "Nepali"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: dist/blocks.build.js:92198
|
4061 |
msgid "Norwegian"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: dist/blocks.build.js:92198
|
4065 |
msgid "Polish"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: dist/blocks.build.js:92198
|
4069 |
msgid "Portuguese"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: dist/blocks.build.js:92198
|
4073 |
msgid "Punjabi"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: dist/blocks.build.js:92198
|
4077 |
msgid "Romanian"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: dist/blocks.build.js:92198
|
4081 |
msgid "Russian"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: dist/blocks.build.js:92198
|
4085 |
msgid "Serbian"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: dist/blocks.build.js:92198
|
4089 |
msgid "Sinhalese"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: dist/blocks.build.js:92198
|
4093 |
msgid "Slovak"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: dist/blocks.build.js:92198
|
4097 |
msgid "Slovenian"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: dist/blocks.build.js:92198
|
4101 |
msgid "Spanish"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: dist/blocks.build.js:92198
|
4105 |
msgid "Swahili"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: dist/blocks.build.js:92198
|
4109 |
msgid "Swedish"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: dist/blocks.build.js:92198
|
4113 |
msgid "Tamil"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: dist/blocks.build.js:92198
|
4117 |
msgid "Telugu"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: dist/blocks.build.js:92198
|
4121 |
msgid "Thai"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: dist/blocks.build.js:92198
|
4125 |
msgid "Turkish"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: dist/blocks.build.js:92198
|
4129 |
msgid "Ukrainian"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: dist/blocks.build.js:92198
|
4133 |
msgid "Urdu"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
+
#: dist/blocks.build.js:92198
|
4137 |
msgid "Uzbek"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: dist/blocks.build.js:92198
|
4141 |
msgid "Vietnamese"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: dist/blocks.build.js:92198
|
4145 |
msgid "Zulu"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: dist/blocks.build.js:92222
|
4149 |
msgid "google map"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: dist/blocks.build.js:92222
|
4153 |
msgid "map"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: dist/blocks.build.js:92445
|
4157 |
msgid "icon list"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: dist/blocks.build.js:92445
|
4161 |
msgid "image list"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: dist/blocks.build.js:92710
|
4165 |
msgid "Hide Labels"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: dist/blocks.build.js:92723
|
4169 |
msgid "Note: For better editing experience, the gap between items might look larger than applied. Viewing in frontend will show the actual results."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: dist/blocks.build.js:92728
|
4173 |
msgid "Gap between Icon and Label"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: dist/blocks.build.js:92738
|
4177 |
+
#: dist/blocks.build.js:121273
|
4178 |
msgid "Icon Alignment"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: dist/blocks.build.js:92744
|
4182 |
msgid "Note: This manages the Icon Position with respect to the Label."
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: dist/blocks.build.js:92860
|
4186 |
msgid "Note: Border option is useful when one adds border color to the icons."
|
4187 |
msgstr ""
|
4188 |
|
4189 |
+
#: dist/blocks.build.js:93902
|
4190 |
msgid "Image Border Color"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: dist/blocks.build.js:93957
|
4194 |
msgid "Image Border Hover Color"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: dist/blocks.build.js:94031
|
4198 |
msgid "Icon Border Color"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: dist/blocks.build.js:94103
|
4202 |
msgid "Icon Border Hover Color"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: dist/blocks.build.js:94190
|
4206 |
msgid "Label Name"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: dist/blocks.build.js:94210
|
4210 |
msgid "Icon Settings"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: dist/blocks.build.js:94266
|
4214 |
msgid "List Item Link"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: dist/blocks.build.js:94269
|
4218 |
msgid "Disable Link"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: dist/blocks.build.js:94288
|
4222 |
msgid "Enter URL"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: dist/blocks.build.js:94291
|
4226 |
msgid "Open in New Tab"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: dist/blocks.build.js:96564
|
4230 |
+
#: dist/blocks.build.js:98234
|
4231 |
msgid "Timeline"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: dist/blocks.build.js:97561
|
4235 |
+
#: dist/blocks.build.js:97589
|
4236 |
+
#: dist/blocks.build.js:99178
|
4237 |
+
#: dist/blocks.build.js:99208
|
4238 |
msgid "Line Color"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: dist/blocks.build.js:97613
|
4242 |
+
#: dist/blocks.build.js:99232
|
4243 |
msgid "Connector Color Settings"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: dist/blocks.build.js:97624
|
4247 |
+
#: dist/blocks.build.js:99243
|
4248 |
msgid "Focus"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: dist/blocks.build.js:97648
|
4252 |
+
#: dist/blocks.build.js:98492
|
4253 |
+
#: dist/blocks.build.js:99582
|
4254 |
msgid "Timeline Item"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
+
#: dist/blocks.build.js:97655
|
4258 |
+
#: dist/blocks.build.js:99594
|
4259 |
+
#: dist/blocks.build.js:121312
|
4260 |
msgid "P"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: dist/blocks.build.js:97655
|
4264 |
+
#: dist/blocks.build.js:99594
|
4265 |
msgid "SPAN"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: dist/blocks.build.js:97694
|
4269 |
+
#: dist/blocks.build.js:99341
|
4270 |
+
#: dist/blocks.build.js:116203
|
4271 |
+
#: dist/blocks.build.js:123364
|
4272 |
+
#: dist/blocks.build.js:126482
|
4273 |
msgid "Content Color"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: dist/blocks.build.js:97753
|
4277 |
+
#: dist/blocks.build.js:99468
|
4278 |
msgid "Orientation"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: dist/blocks.build.js:97758
|
4282 |
+
#: dist/blocks.build.js:97766
|
4283 |
+
#: dist/blocks.build.js:99473
|
4284 |
+
#: dist/blocks.build.js:99481
|
4285 |
+
#: dist/blocks.build.js:108356
|
4286 |
+
#: dist/blocks.build.js:110184
|
4287 |
+
#: dist/blocks.build.js:110388
|
4288 |
+
#: dist/blocks.build.js:114313
|
4289 |
+
#: dist/blocks.build.js:115918
|
4290 |
msgid "Center"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: dist/blocks.build.js:97761
|
4294 |
+
#: dist/blocks.build.js:99476
|
4295 |
msgid "Arrow Alignment"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: dist/blocks.build.js:97772
|
4299 |
msgid "Note: Choose on what breakpoint the Content Timeline will stack."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: dist/blocks.build.js:97784
|
4303 |
msgid "Display Date"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: dist/blocks.build.js:97789
|
4307 |
+
#: dist/blocks.build.js:99530
|
4308 |
msgid "Date Format"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: dist/blocks.build.js:97792
|
4312 |
msgid "Normal Text"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: dist/blocks.build.js:97795
|
4316 |
+
#: dist/blocks.build.js:99862
|
4317 |
msgid "Date Bottom Spacing"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: dist/blocks.build.js:97834
|
4321 |
msgid "Content Tag"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: dist/blocks.build.js:97857
|
4325 |
msgid "Date Typography"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: dist/blocks.build.js:97880
|
4329 |
+
#: dist/blocks.build.js:99278
|
4330 |
msgid "Date Color"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: dist/blocks.build.js:97905
|
4334 |
+
#: dist/blocks.build.js:99807
|
4335 |
msgid "Horizontal Space"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: dist/blocks.build.js:97915
|
4339 |
+
#: dist/blocks.build.js:99818
|
4340 |
msgid "Vertical Space"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
+
#: dist/blocks.build.js:97925
|
4344 |
+
#: dist/blocks.build.js:99829
|
4345 |
msgid "Heading Bottom Spacing"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: dist/blocks.build.js:97937
|
4349 |
+
#: dist/blocks.build.js:99736
|
4350 |
msgid "Connector"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: dist/blocks.build.js:97948
|
4354 |
+
#: dist/blocks.build.js:99749
|
4355 |
msgid "Icon Background Size"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: dist/blocks.build.js:97964
|
4359 |
+
#: dist/blocks.build.js:99769
|
4360 |
msgid "Connector Width"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: dist/blocks.build.js:98782
|
4364 |
msgid "timeline"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
+
#: dist/blocks.build.js:99320
|
4368 |
+
#: dist/blocks.build.js:112719
|
4369 |
+
#: dist/blocks.build.js:126460
|
4370 |
msgid "Author Color"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: dist/blocks.build.js:99362
|
4374 |
msgid "CTA Color"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: dist/blocks.build.js:99379
|
4378 |
msgid "CTA Background Color"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: dist/blocks.build.js:99403
|
4382 |
msgid "Query"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: dist/blocks.build.js:99487
|
4386 |
msgid "Note: Choose on what breakpoint the Post Timeline will stack."
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: dist/blocks.build.js:99497
|
4390 |
msgid "Display Featured Image"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: dist/blocks.build.js:99504
|
4394 |
msgid "Featured Image Style"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: dist/blocks.build.js:99516
|
4398 |
msgid "Display Post Author"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: dist/blocks.build.js:99523
|
4402 |
msgid "Display Post Date"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: dist/blocks.build.js:99538
|
4406 |
msgid "Display Post Excerpt"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: dist/blocks.build.js:99545
|
4410 |
msgid "Excerpt Length"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: dist/blocks.build.js:99555
|
4414 |
msgid "Display Continue Reading Link"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: dist/blocks.build.js:99565
|
4418 |
msgid "CTA Text"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: dist/blocks.build.js:99701
|
4422 |
msgid "CTA"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: dist/blocks.build.js:99785
|
4426 |
msgid "Block Padding"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: dist/blocks.build.js:99840
|
4430 |
+
#: dist/blocks.build.js:112944
|
4431 |
msgid "Author Bottom Spacing"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: dist/blocks.build.js:99851
|
4435 |
msgid "Content Bottom Spacing"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: dist/blocks.build.js:100906
|
4439 |
+
#: dist/blocks.build.js:114007
|
4440 |
msgid "cta"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: dist/blocks.build.js:100906
|
4444 |
msgid "call to action"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
+
#: dist/blocks.build.js:101498
|
4448 |
msgid "CTA Text Color"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: dist/blocks.build.js:101520
|
4452 |
msgid "CTA Text Hover Color"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
+
#: dist/blocks.build.js:101546
|
4456 |
+
#: dist/blocks.build.js:126768
|
4457 |
msgid "Tag"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: dist/blocks.build.js:101634
|
4461 |
msgid "Heading Bottom Margin"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: dist/blocks.build.js:101656
|
4465 |
msgid "Content Left Margin"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: dist/blocks.build.js:101667
|
4469 |
msgid "Content Right Margin"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: dist/blocks.build.js:101683
|
4473 |
msgid "Button Position"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: dist/blocks.build.js:101688
|
4477 |
msgid "Stack"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: dist/blocks.build.js:101694
|
4481 |
msgid "Note: Choose on what breakpoint the CTA button will stack."
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: dist/blocks.build.js:101703
|
4485 |
+
#: dist/blocks.build.js:102993
|
4486 |
+
#: dist/blocks.build.js:103005
|
4487 |
+
#: dist/blocks.build.js:103017
|
4488 |
msgid "Content Width (%)"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: dist/blocks.build.js:101715
|
4492 |
msgid "Verticle Alignment"
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: dist/blocks.build.js:103084
|
4496 |
+
#: dist/blocks.build.js:105070
|
4497 |
msgid "Padding Mobile"
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: dist/blocks.build.js:104188
|
4501 |
msgid "columns"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: dist/blocks.build.js:104188
|
4505 |
msgid "rows"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: dist/blocks.build.js:104612
|
4509 |
msgid "Tilt"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: dist/blocks.build.js:104612
|
4513 |
msgid "Mountains"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
+
#: dist/blocks.build.js:104612
|
4517 |
msgid "Wave Brush"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
+
#: dist/blocks.build.js:104612
|
4521 |
msgid "Waves"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
+
#: dist/blocks.build.js:104612
|
4525 |
msgid "Waves Pattern"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
+
#: dist/blocks.build.js:104612
|
4529 |
msgid "Triangle"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
+
#: dist/blocks.build.js:104612
|
4533 |
msgid "Drops"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
+
#: dist/blocks.build.js:104612
|
4537 |
msgid "Clouds"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
+
#: dist/blocks.build.js:104612
|
4541 |
msgid "ZigZag"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
+
#: dist/blocks.build.js:104612
|
4545 |
msgid "Pyramids"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
+
#: dist/blocks.build.js:104612
|
4549 |
msgid "Triangle Asymmetrical"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
+
#: dist/blocks.build.js:104612
|
4553 |
msgid "Tilt Opacity"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
+
#: dist/blocks.build.js:104612
|
4557 |
msgid "Fan Opacity"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: dist/blocks.build.js:104612
|
4561 |
msgid "Curve"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
+
#: dist/blocks.build.js:104612
|
4565 |
msgid "Curve Asymmetrical"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
+
#: dist/blocks.build.js:104612
|
4569 |
msgid "Arrow"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: dist/blocks.build.js:104612
|
4573 |
msgid "Arrow Split"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: dist/blocks.build.js:104612
|
4577 |
+
#: dist/blocks.build.js:126636
|
4578 |
msgid "Book"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
+
#: dist/blocks.build.js:104727
|
4582 |
+
#: dist/blocks.build.js:104856
|
4583 |
msgid "Flip"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: dist/blocks.build.js:104734
|
4587 |
+
#: dist/blocks.build.js:104863
|
4588 |
msgid "Bring To Front"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
+
#: dist/blocks.build.js:104898
|
4592 |
msgid "Select a variation to start with."
|
4593 |
msgstr ""
|
4594 |
|
4595 |
+
#: dist/blocks.build.js:104950
|
4596 |
msgid "Note: Choose on what breakpoint the columns will stack."
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: dist/blocks.build.js:104953
|
4600 |
msgid "Container Width"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: dist/blocks.build.js:104958
|
4604 |
msgid "Theme Container Width"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
#: dist/blocks.build.js:104958
|
4608 |
msgid "Custom"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
+
#: dist/blocks.build.js:104994
|
4612 |
msgid "Default (10px)"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
+
#: dist/blocks.build.js:104994
|
4616 |
msgid "No Gap (0px)"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
#. translators: abbreviation for small size
|
4620 |
+
#: dist/blocks.build.js:104994
|
4621 |
+
#: dist/blocks.build.js:105844
|
4622 |
msgid "S"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: dist/blocks.build.js:104994
|
4626 |
msgid "Narrow (5px)"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
#. translators: abbreviation for medium size
|
4630 |
+
#: dist/blocks.build.js:104994
|
4631 |
+
#: dist/blocks.build.js:105849
|
4632 |
msgid "M"
|
4633 |
msgstr ""
|
4634 |
|
4635 |
+
#: dist/blocks.build.js:104994
|
4636 |
msgid "Extended (15px)"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
#. translators: abbreviation for large size
|
4640 |
+
#: dist/blocks.build.js:104994
|
4641 |
+
#: dist/blocks.build.js:105854
|
4642 |
msgid "L"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: dist/blocks.build.js:104994
|
4646 |
msgid "Wide (20px)"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
#. translators: abbreviation for extra large size
|
4650 |
+
#: dist/blocks.build.js:104994
|
4651 |
+
#: dist/blocks.build.js:105859
|
4652 |
msgid "XL"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
+
#: dist/blocks.build.js:104994
|
4656 |
msgid "Wider (30px)"
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: dist/blocks.build.js:104998
|
4660 |
msgid "Note: The individual Column Gap can be managed from Column Settings."
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: dist/blocks.build.js:105009
|
4664 |
msgid "Reverse Columns (Tablet)"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: dist/blocks.build.js:105016
|
4668 |
msgid "Reverse Columns (Mobile)"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: dist/blocks.build.js:105596
|
4672 |
msgid "Remove Video"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: dist/blocks.build.js:105616
|
4676 |
msgid "Video Overlay Color"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: dist/blocks.build.js:105645
|
4680 |
msgid "Shape Dividers"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: dist/blocks.build.js:105845
|
4684 |
msgid "Small"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: dist/blocks.build.js:105860
|
4688 |
msgid "Extra Large"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: dist/blocks.build.js:107618
|
4692 |
msgid "CF7 styler"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: dist/blocks.build.js:107618
|
4696 |
msgid "contact form styler"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: dist/blocks.build.js:107948
|
4700 |
+
#: dist/blocks.build.js:109919
|
4701 |
msgid "Field Style & Border"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
+
#: dist/blocks.build.js:107950
|
4705 |
+
#: dist/blocks.build.js:109921
|
4706 |
msgid "Field Style"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: dist/blocks.build.js:107955
|
4710 |
+
#: dist/blocks.build.js:109926
|
4711 |
msgid "Box"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: dist/blocks.build.js:107955
|
4715 |
+
#: dist/blocks.build.js:109926
|
4716 |
msgid "Underline"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
+
#: dist/blocks.build.js:107966
|
4720 |
+
#: dist/blocks.build.js:108188
|
4721 |
+
#: dist/blocks.build.js:108601
|
4722 |
+
#: dist/blocks.build.js:109937
|
4723 |
+
#: dist/blocks.build.js:110220
|
4724 |
+
#: dist/blocks.build.js:110633
|
4725 |
msgid "Border Width (px)"
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: dist/blocks.build.js:108027
|
4729 |
+
#: dist/blocks.build.js:109998
|
4730 |
msgid "Active Border Color"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: dist/blocks.build.js:108049
|
4734 |
+
#: dist/blocks.build.js:110030
|
4735 |
+
#: dist/blocks.build.js:113012
|
4736 |
msgid "Label"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: dist/blocks.build.js:108089
|
4740 |
+
#: dist/blocks.build.js:110071
|
4741 |
msgid "Input"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: dist/blocks.build.js:108129
|
4745 |
+
#: dist/blocks.build.js:110752
|
4746 |
msgid "Field Background Color"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: dist/blocks.build.js:108164
|
4750 |
msgid "Select a Contact Form 7"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: dist/blocks.build.js:108349
|
4754 |
+
#: dist/blocks.build.js:110381
|
4755 |
msgid "Submit Button"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: dist/blocks.build.js:108351
|
4759 |
+
#: dist/blocks.build.js:110383
|
4760 |
msgid "Button Alignment"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
+
#: dist/blocks.build.js:108356
|
4764 |
+
#: dist/blocks.build.js:110388
|
4765 |
msgid "Justified"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: dist/blocks.build.js:108361
|
4769 |
+
#: dist/blocks.build.js:110393
|
4770 |
msgid "Button Font"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: dist/blocks.build.js:108444
|
4774 |
+
#: dist/blocks.build.js:110476
|
4775 |
msgid "Label & Input Space"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: dist/blocks.build.js:108454
|
4779 |
+
#: dist/blocks.build.js:110486
|
4780 |
msgid "Fields Space"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
#: dist/blocks.build.js:108467
|
4784 |
+
#: dist/blocks.build.js:110499
|
4785 |
msgid "Field Padding (px)"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: dist/blocks.build.js:108495
|
4789 |
+
#: dist/blocks.build.js:110527
|
4790 |
msgid "Radio & Checkbox"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: dist/blocks.build.js:108497
|
4794 |
+
#: dist/blocks.build.js:110529
|
4795 |
msgid "Override Current Style"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: dist/blocks.build.js:108520
|
4799 |
+
#: dist/blocks.build.js:110552
|
4800 |
msgid "Radio & Checkbox Label"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
+
#: dist/blocks.build.js:108543
|
4804 |
+
#: dist/blocks.build.js:110575
|
4805 |
msgid "Label Color"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: dist/blocks.build.js:108577
|
4809 |
+
#: dist/blocks.build.js:110609
|
4810 |
msgid "Selected Color"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: dist/blocks.build.js:108661
|
4814 |
+
#: dist/blocks.build.js:110693
|
4815 |
msgid "Success / Error Message"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: dist/blocks.build.js:108665
|
4819 |
msgid "Note: This styling can be only seen at frontend"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
+
#: dist/blocks.build.js:108671
|
4823 |
+
#: dist/blocks.build.js:110703
|
4824 |
msgid "Field Validation"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
+
#: dist/blocks.build.js:108674
|
4828 |
msgid "Validation Message Position"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: dist/blocks.build.js:108679
|
4832 |
msgid "Bottom Right Side of Field"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: dist/blocks.build.js:108684
|
4836 |
msgid "Validation Font"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: dist/blocks.build.js:108706
|
4840 |
msgid "Validation Message Color"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: dist/blocks.build.js:108726
|
4844 |
+
#: dist/blocks.build.js:108819
|
4845 |
+
#: dist/blocks.build.js:108876
|
4846 |
msgid "Message Background Color"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: dist/blocks.build.js:108743
|
4850 |
msgid "Highlight Borders"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: dist/blocks.build.js:108755
|
4854 |
+
#: dist/blocks.build.js:110773
|
4855 |
msgid "Highlight Border Color"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: dist/blocks.build.js:108774
|
4859 |
msgid "Form Success / Error Validation"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: dist/blocks.build.js:108797
|
4863 |
msgid "Success Message"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: dist/blocks.build.js:108802
|
4867 |
+
#: dist/blocks.build.js:108859
|
4868 |
+
#: dist/blocks.build.js:110708
|
4869 |
msgid "Message Color"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
+
#: dist/blocks.build.js:108836
|
4873 |
+
#: dist/blocks.build.js:108893
|
4874 |
msgid "Message Border Color"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: dist/blocks.build.js:108854
|
4878 |
msgid "Error Message"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: dist/blocks.build.js:108909
|
4882 |
+
#: dist/blocks.build.js:110846
|
4883 |
msgid "Message Border Width (px)"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: dist/blocks.build.js:108937
|
4887 |
+
#: dist/blocks.build.js:110874
|
4888 |
msgid "Message Border Radius"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: dist/blocks.build.js:108950
|
4892 |
+
#: dist/blocks.build.js:110886
|
4893 |
msgid "Message Padding (px)"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: dist/blocks.build.js:109013
|
4897 |
+
#: dist/blocks.build.js:111006
|
4898 |
msgid "Loading"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: dist/blocks.build.js:109571
|
4902 |
msgid "GF styler"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
+
#: dist/blocks.build.js:109571
|
4906 |
msgid "gravity form styler"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
+
#: dist/blocks.build.js:110125
|
4910 |
msgid "TextArea Height"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: dist/blocks.build.js:110160
|
4914 |
msgid "Tab Index"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#: dist/blocks.build.js:110171
|
4918 |
msgid "Form Title & Description"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: dist/blocks.build.js:110176
|
4922 |
msgid "Show"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: dist/blocks.build.js:110176
|
4926 |
msgid "Hide"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: dist/blocks.build.js:110179
|
4930 |
msgid "Form Title & Description Alignment"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
+
#: dist/blocks.build.js:110196
|
4934 |
msgid "Select a Gravity Form"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
+
#: dist/blocks.build.js:110697
|
4938 |
msgid "Note: This styling can be only seen on frontend"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: dist/blocks.build.js:110740
|
4942 |
msgid "Advanced Settings"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: dist/blocks.build.js:110792
|
4946 |
msgid "Form Error Validation"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: dist/blocks.build.js:110797
|
4950 |
msgid "Error Message Color"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: dist/blocks.build.js:110814
|
4954 |
msgid "Error Message Background Color"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
+
#: dist/blocks.build.js:110931
|
4958 |
msgid "Form Success Validation"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: dist/blocks.build.js:110936
|
4962 |
msgid "Success Message Color"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
+
#: dist/blocks.build.js:110951
|
4966 |
msgid "Success Message Typography"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
+
#: dist/blocks.build.js:111801
|
4970 |
msgid "blockquote"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: dist/blocks.build.js:111801
|
4974 |
msgid "quote"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
+
#: dist/blocks.build.js:111801
|
4978 |
msgid "uagb"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
+
#: dist/blocks.build.js:112179
|
4982 |
msgid "Modern Layout - Styling"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
+
#: dist/blocks.build.js:112182
|
4986 |
msgid "Quote Border Style"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: dist/blocks.build.js:112207
|
4990 |
msgid "Quotation Layout - Styling"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
+
#: dist/blocks.build.js:112234
|
4994 |
+
#: dist/blocks.build.js:112252
|
4995 |
+
#: dist/blocks.build.js:112270
|
4996 |
msgid "Quote Icon Size"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: dist/blocks.build.js:112374
|
5000 |
msgid "Quote Icon Border Radius (%)"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: dist/blocks.build.js:112390
|
5004 |
+
#: dist/blocks.build.js:123248
|
5005 |
msgid "Modern"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
+
#: dist/blocks.build.js:112390
|
5009 |
msgid "Quotation"
|
5010 |
msgstr ""
|
5011 |
|
5012 |
+
#: dist/blocks.build.js:112406
|
5013 |
msgid "Quote Icon Colors"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: dist/blocks.build.js:112441
|
5017 |
msgid "Note: Choose on what breakpoint the elements will stack."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: dist/blocks.build.js:112455
|
5021 |
msgid "Author Image"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: dist/blocks.build.js:112480
|
5025 |
msgid "Author Image Position"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: dist/blocks.build.js:112488
|
5029 |
msgid "Author Image Size"
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: dist/blocks.build.js:112496
|
5033 |
msgid "Author Image Width"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: dist/blocks.build.js:112507
|
5037 |
msgid "Author Image Rounded Corners"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: dist/blocks.build.js:112657
|
5041 |
msgid "Quote"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: dist/blocks.build.js:112679
|
5045 |
msgid "Quote Color"
|
5046 |
msgstr ""
|
5047 |
|
5048 |
+
#: dist/blocks.build.js:112746
|
5049 |
+
#: dist/blocks.build.js:112767
|
5050 |
msgid "Tweet Color"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
+
#: dist/blocks.build.js:112784
|
5054 |
msgid "Tweet Background Color"
|
5055 |
msgstr ""
|
5056 |
|
5057 |
+
#: dist/blocks.build.js:112810
|
5058 |
+
#: dist/blocks.build.js:112831
|
5059 |
msgid "Tweet Hover Color"
|
5060 |
msgstr ""
|
5061 |
|
5062 |
+
#: dist/blocks.build.js:112848
|
5063 |
msgid "Tweet Background Hover Color"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: dist/blocks.build.js:112874
|
5067 |
msgid "Quote Icon Margin (px)"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: dist/blocks.build.js:112923
|
5071 |
msgid "Gap Between Border and Quote"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: dist/blocks.build.js:112933
|
5075 |
msgid "Quote Bottom Spacing"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: dist/blocks.build.js:112961
|
5079 |
msgid "Vertical Padding"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: dist/blocks.build.js:112979
|
5083 |
msgid "Twitter Icon"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: dist/blocks.build.js:112981
|
5087 |
msgid "Enable Twitter Icon"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: dist/blocks.build.js:112991
|
5091 |
msgid "Icon View"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: dist/blocks.build.js:112996
|
5095 |
msgid "Icon & Text"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: dist/blocks.build.js:112999
|
5099 |
msgid "Icon Style"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: dist/blocks.build.js:113004
|
5103 |
+
#: dist/blocks.build.js:124208
|
5104 |
msgid "Classic"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: dist/blocks.build.js:113004
|
5108 |
msgid "Bubble"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: dist/blocks.build.js:113040
|
5112 |
msgid "Target URL"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: dist/blocks.build.js:113045
|
5116 |
msgid "Current Page"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
#: dist/blocks.build.js:113045
|
5120 |
msgid "Custom URL"
|
5121 |
msgstr ""
|
5122 |
|
5123 |
+
#: dist/blocks.build.js:113094
|
5124 |
msgid "Space between Tweet Icon and Text"
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
#: dist/blocks.build.js:113159
|
5128 |
msgid "Normal Quote"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: dist/blocks.build.js:113177
|
5132 |
msgid "Inline Quote"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: dist/blocks.build.js:113200
|
5136 |
+
#: dist/blocks.build.js:113208
|
5137 |
msgid "Twitter Username"
|
5138 |
msgstr ""
|
5139 |
|
5140 |
+
#: dist/blocks.build.js:113214
|
5141 |
msgid "Username"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: dist/blocks.build.js:114007
|
5145 |
msgid "marketing button"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: dist/blocks.build.js:114308
|
5149 |
msgid "Text Alignment"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: dist/blocks.build.js:114520
|
5153 |
msgid "Title Hover Color"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: dist/blocks.build.js:114554
|
5157 |
msgid "Description Hover Color"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: dist/blocks.build.js:114757
|
5161 |
msgid "Button Background"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: dist/blocks.build.js:114765
|
5165 |
msgid "Transparent"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: dist/blocks.build.js:114979
|
5169 |
msgid "Add Button Title…"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
#: dist/blocks.build.js:115006
|
5173 |
msgid "Add Button Description…"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
+
#: dist/blocks.build.js:115486
|
5177 |
msgid "table of contents"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: dist/blocks.build.js:115486
|
5181 |
msgid "table"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: dist/blocks.build.js:115800
|
5185 |
msgid "Select the heading to consider when generating the table"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: dist/blocks.build.js:115827
|
5189 |
msgid "Smooth Scroll"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: dist/blocks.build.js:115829
|
5193 |
msgid "This will be in Action only in Front End."
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: dist/blocks.build.js:115838
|
5197 |
msgid "Smooth Scroll Offset (px)"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: dist/blocks.build.js:115847
|
5201 |
msgid "Scroll Animation Delay (ms)"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
+
#: dist/blocks.build.js:115858
|
5205 |
msgid "Show Scroll To Top"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
+
#: dist/blocks.build.js:115860
|
5209 |
msgid "This will add a Scroll to Top arrow at the bottom of page."
|
5210 |
msgstr ""
|
5211 |
|
5212 |
+
#: dist/blocks.build.js:115921
|
5213 |
msgid "Bottom Space"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
#: dist/blocks.build.js:115968
|
5217 |
msgid "Collapsible"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
+
#: dist/blocks.build.js:115971
|
5221 |
msgid "Make Content Collapsible"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: dist/blocks.build.js:115981
|
5225 |
msgid "Keep Collapsed Initially"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: dist/blocks.build.js:116014
|
5229 |
msgid "Disable Bullet Points"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: dist/blocks.build.js:116026
|
5233 |
msgid "Bullet Points Color"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: dist/blocks.build.js:116085
|
5237 |
+
#: dist/blocks.build.js:116123
|
5238 |
+
#: dist/blocks.build.js:116161
|
5239 |
msgid "Gap Between Lists"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: dist/blocks.build.js:116220
|
5243 |
msgid "Content Hover Color"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: dist/blocks.build.js:116267
|
5247 |
msgid "Table's width will be auto if this is kept off."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: dist/blocks.build.js:116680
|
5251 |
+
#: dist/blocks.build.js:116730
|
5252 |
+
#: dist/blocks.build.js:116780
|
5253 |
msgid "List Margin"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: dist/blocks.build.js:116883
|
5257 |
msgid "Table Of Contents"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: dist/blocks.build.js:117981
|
5261 |
msgid "how to"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
+
#: dist/blocks.build.js:117981
|
5265 |
+
#: dist/blocks.build.js:120390
|
5266 |
+
#: dist/blocks.build.js:125404
|
5267 |
msgid "schema"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: dist/blocks.build.js:118469
|
5271 |
+
#: dist/blocks.build.js:123263
|
5272 |
msgid "Primary Heading"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
+
#: dist/blocks.build.js:118481
|
5276 |
msgid "Show Total Time"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
#: dist/blocks.build.js:118486
|
5280 |
msgid "Note: Time is recommended field for schema. It should be ON"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: dist/blocks.build.js:118490
|
5284 |
msgid "Time"
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: dist/blocks.build.js:118495
|
5288 |
+
#: dist/blocks.build.js:118817
|
5289 |
msgid "Years"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: dist/blocks.build.js:118505
|
5293 |
msgid "Months"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: dist/blocks.build.js:118515
|
5297 |
msgid "Days"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
+
#: dist/blocks.build.js:118525
|
5301 |
msgid "Hours"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
+
#: dist/blocks.build.js:118535
|
5305 |
msgid "Minutes"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
+
#: dist/blocks.build.js:118548
|
5309 |
msgid "Show Estimated Cost"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: dist/blocks.build.js:118553
|
5313 |
msgid "Note: Cost is recommended field for schema.It should be ON"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: dist/blocks.build.js:118558
|
5317 |
msgid "Click here to find your countrys ISO code."
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: dist/blocks.build.js:118562
|
5321 |
msgid "Show Tools"
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: dist/blocks.build.js:118567
|
5325 |
+
#: dist/blocks.build.js:118610
|
5326 |
msgid "Note: This is recommended field for schema.It should be ON"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
+
#: dist/blocks.build.js:118570
|
5330 |
msgid "Number of Tools"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: dist/blocks.build.js:118605
|
5334 |
msgid "Show Materials"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: dist/blocks.build.js:118613
|
5338 |
msgid "Number of Materials"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: dist/blocks.build.js:118679
|
5342 |
+
#: dist/blocks.build.js:118734
|
5343 |
msgid "Secondary Heading"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: dist/blocks.build.js:118774
|
5347 |
msgid "Time Margin"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: dist/blocks.build.js:118784
|
5351 |
msgid "Cost Margin"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: dist/blocks.build.js:118804
|
5355 |
msgid "Gap Between Steps"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: dist/blocks.build.js:118817
|
5359 |
msgid "Year"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: dist/blocks.build.js:118818
|
5363 |
msgid " Months "
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: dist/blocks.build.js:118818
|
5367 |
msgid " Month "
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: dist/blocks.build.js:118819
|
5371 |
msgid " Days "
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: dist/blocks.build.js:118819
|
5375 |
msgid " Day "
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: dist/blocks.build.js:118820
|
5379 |
msgid "Hours "
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: dist/blocks.build.js:118820
|
5383 |
msgid " Hour "
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: dist/blocks.build.js:118821
|
5387 |
msgid " Minutes "
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: dist/blocks.build.js:118821
|
5391 |
msgid " Minute "
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: dist/blocks.build.js:118871
|
5395 |
msgid "How to configure HowTo Schema in UAG?"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: dist/blocks.build.js:118893
|
5399 |
msgid "So to get started, you will just need to drag-n-drop the How-to Schema block in the Gutenberg editor. The How-to Schema block can be used on pages which contain a How-to in their title and describe steps to achieve certain requirements."
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: dist/blocks.build.js:118915
|
5403 |
msgid "Total Time Needed ( Minutes ):"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: dist/blocks.build.js:119023
|
5407 |
msgid "30"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: dist/blocks.build.js:119037
|
5411 |
msgid "USD"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: dist/blocks.build.js:119055
|
5415 |
msgid "requirements tools:"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: dist/blocks.build.js:119084
|
5419 |
msgid "Requirements Tools:"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: dist/blocks.build.js:119100
|
5423 |
msgid "requirements materials:"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: dist/blocks.build.js:119130
|
5427 |
msgid "Requirements Materials:"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: dist/blocks.build.js:119147
|
5431 |
msgid "requirements Steps:"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: dist/blocks.build.js:120390
|
5435 |
msgid "faq"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: dist/blocks.build.js:120390
|
5439 |
msgid "accordion"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: dist/blocks.build.js:120780
|
5443 |
msgid "Accordion"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: dist/blocks.build.js:120780
|
5447 |
+
#: dist/blocks.build.js:128193
|
5448 |
msgid "Grid"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: dist/blocks.build.js:120789
|
5452 |
msgid "Collapse other items"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: dist/blocks.build.js:120796
|
5456 |
msgid "Expand First Item"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: dist/blocks.build.js:120803
|
5460 |
msgid "Enable Toggle"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: dist/blocks.build.js:120811
|
5464 |
msgid "Enable Schema Support"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: dist/blocks.build.js:120839
|
5468 |
+
#: dist/blocks.build.js:128216
|
5469 |
msgid "Mobile Columns"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: dist/blocks.build.js:120849
|
5473 |
+
#: dist/blocks.build.js:128226
|
5474 |
msgid "Tab Columns"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: dist/blocks.build.js:120859
|
5478 |
+
#: dist/blocks.build.js:128236
|
5479 |
msgid "Desktop Columns"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: dist/blocks.build.js:120947
|
5483 |
msgid "Rows Gap (px)"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: dist/blocks.build.js:120959
|
5487 |
msgid "Columns Gap (px)"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: dist/blocks.build.js:120976
|
5491 |
msgid "Enable Separator"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: dist/blocks.build.js:121180
|
5495 |
msgid "Gap between Icon and Question"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: dist/blocks.build.js:121191
|
5499 |
msgid "Expand Color"
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: dist/blocks.build.js:121208
|
5503 |
msgid "Collapse Color"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: dist/blocks.build.js:121240
|
5507 |
msgid "Expand"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: dist/blocks.build.js:121256
|
5511 |
msgid "Collapse"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: dist/blocks.build.js:121302
|
5515 |
msgid "Question"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
+
#: dist/blocks.build.js:121307
|
5519 |
msgid "Question Tag"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: dist/blocks.build.js:121312
|
5523 |
msgid "Span"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: dist/blocks.build.js:121351
|
5527 |
msgid "Text Active/Hover Color"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: dist/blocks.build.js:121616
|
5531 |
msgid "Answer"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: dist/blocks.build.js:122835
|
5535 |
msgid "inline notice"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: dist/blocks.build.js:122835
|
5539 |
msgid "notice"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
+
#: dist/blocks.build.js:123198
|
5543 |
msgid "Allow Always"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: dist/blocks.build.js:123200
|
5547 |
msgid "Allow to Dismiss"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: dist/blocks.build.js:123251
|
5551 |
msgid "Highlight width"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: dist/blocks.build.js:123274
|
5555 |
msgid "Notice Display"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: dist/blocks.build.js:123305
|
5559 |
msgid "Enable Cookies"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: dist/blocks.build.js:123310
|
5563 |
msgid "Show Closed Notice After (Days)"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: dist/blocks.build.js:123346
|
5567 |
msgid "Highlight Color"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: dist/blocks.build.js:123382
|
5571 |
msgid "Content Background Color"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: dist/blocks.build.js:123400
|
5575 |
msgid "Dismiss Icon Color"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: dist/blocks.build.js:123458
|
5579 |
msgid "Title Padding (px)"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: dist/blocks.build.js:123486
|
5583 |
msgid "Content Padding (px)"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: dist/blocks.build.js:123538
|
5587 |
msgid "Notice Title"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: dist/blocks.build.js:123549
|
5591 |
msgid "Add notice text..."
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: dist/blocks.build.js:123863
|
5595 |
msgid "search"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: dist/blocks.build.js:123863
|
5599 |
msgid "wp"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: dist/blocks.build.js:124208
|
5603 |
msgid "Minimal"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: dist/blocks.build.js:124217
|
5607 |
msgid "Placeholder"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: dist/blocks.build.js:124242
|
5611 |
msgid "Input Width"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: dist/blocks.build.js:124258
|
5615 |
msgid "Input Box"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: dist/blocks.build.js:124820
|
5619 |
msgid "Search"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: dist/blocks.build.js:125404
|
5623 |
msgid "ratings"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: dist/blocks.build.js:125404
|
5627 |
msgid "review"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
+
#: dist/blocks.build.js:126276
|
5631 |
msgid "Audio book"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: dist/blocks.build.js:126277
|
5635 |
msgid "Individual Product"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: dist/blocks.build.js:126277
|
5639 |
msgid "Product Collection"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: dist/blocks.build.js:126277
|
5643 |
msgid "Product Group"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: dist/blocks.build.js:126277
|
5647 |
msgid "Product Model"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: dist/blocks.build.js:126277
|
5651 |
msgid "Some Products"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: dist/blocks.build.js:126277
|
5655 |
msgid "Vehicle"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
+
#: dist/blocks.build.js:126278
|
5659 |
msgid "Mobile Application"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
+
#: dist/blocks.build.js:126278
|
5663 |
msgid "Video Game"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: dist/blocks.build.js:126278
|
5667 |
msgid "Web Application"
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: dist/blocks.build.js:126292
|
5671 |
msgid "ISBN"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: dist/blocks.build.js:126297
|
5675 |
+
#: dist/blocks.build.js:126305
|
5676 |
+
#: dist/blocks.build.js:126656
|
5677 |
+
#: dist/blocks.build.js:126728
|
5678 |
msgid "Note: This is a mandatory field for the Review schema"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
+
#: dist/blocks.build.js:126300
|
5682 |
msgid "Book author name"
|
5683 |
msgstr ""
|
5684 |
|
5685 |
+
#: dist/blocks.build.js:126316
|
5686 |
msgid "Provider"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
+
#: dist/blocks.build.js:126331
|
5690 |
msgid "Application Category"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: dist/blocks.build.js:126338
|
5694 |
msgid "Operating System"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
+
#: dist/blocks.build.js:126353
|
5698 |
msgid "Director Name"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
+
#: dist/blocks.build.js:126381
|
5702 |
msgid "Title Typography"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
+
#: dist/blocks.build.js:126419
|
5706 |
msgid "Description Typography"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
+
#: dist/blocks.build.js:126499
|
5710 |
msgid "Summary Typography"
|
5711 |
msgstr ""
|
5712 |
|
5713 |
+
#: dist/blocks.build.js:126518
|
5714 |
msgid "Summary Color"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: dist/blocks.build.js:126536
|
5718 |
msgid "Active Star Color"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: dist/blocks.build.js:126554
|
5722 |
msgid "Inactive Star Color"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: dist/blocks.build.js:126572
|
5726 |
msgid "Star Outline Color"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
+
#: dist/blocks.build.js:126589
|
5730 |
msgid "Overall Padding (px)"
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: dist/blocks.build.js:126620
|
5734 |
msgid "Schema"
|
5735 |
msgstr ""
|
5736 |
|
5737 |
+
#: dist/blocks.build.js:126622
|
5738 |
msgid "Item type"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
+
#: dist/blocks.build.js:126636
|
5742 |
msgid "Course"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: dist/blocks.build.js:126636
|
5746 |
msgid "Movie"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: dist/blocks.build.js:126636
|
5750 |
msgid "Product"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: dist/blocks.build.js:126636
|
5754 |
msgid "Software Application"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
+
#: dist/blocks.build.js:126639
|
5758 |
msgid "Item subtype"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
+
#: dist/blocks.build.js:126651
|
5762 |
msgid "Review publisher"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
+
#: dist/blocks.build.js:126661
|
5766 |
msgid "Date of publish"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
+
#: dist/blocks.build.js:126677
|
5770 |
msgid "Brand"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
+
#: dist/blocks.build.js:126684
|
5774 |
msgid "SKU"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
+
#: dist/blocks.build.js:126691
|
5778 |
msgid "Identifier"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
+
#: dist/blocks.build.js:126698
|
5782 |
msgid "Identifier type"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
+
#: dist/blocks.build.js:126712
|
5786 |
msgid "Offer Currency"
|
5787 |
msgstr ""
|
5788 |
|
5789 |
+
#: dist/blocks.build.js:126723
|
5790 |
msgid "Offer Price"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: dist/blocks.build.js:126733
|
5794 |
msgid "Discontinued"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
+
#: dist/blocks.build.js:126733
|
5798 |
msgid "In Stock"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
+
#: dist/blocks.build.js:126733
|
5802 |
msgid "In Store Only"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: dist/blocks.build.js:126733
|
5806 |
msgid "Limited Availability"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
+
#: dist/blocks.build.js:126733
|
5810 |
msgid "Online Only"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#: dist/blocks.build.js:126733
|
5814 |
msgid "Out Of Stock"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
+
#: dist/blocks.build.js:126733
|
5818 |
msgid "Pre Order"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
+
#: dist/blocks.build.js:126733
|
5822 |
msgid "Pre Sale"
|
5823 |
msgstr ""
|
5824 |
|
5825 |
+
#: dist/blocks.build.js:126733
|
5826 |
msgid "Sold Out"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: dist/blocks.build.js:126743
|
5830 |
msgid "Price Valid Until"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: dist/blocks.build.js:126765
|
5834 |
msgid "Review Title"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: dist/blocks.build.js:126787
|
5838 |
msgid "Open in new window"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: dist/blocks.build.js:126792
|
5842 |
msgid "Show review description"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: dist/blocks.build.js:126797
|
5846 |
+
#: dist/blocks.build.js:126805
|
5847 |
+
#: dist/blocks.build.js:126813
|
5848 |
msgid "Note: This is a mandatory field for the Review schema."
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: dist/blocks.build.js:126800
|
5852 |
msgid "Show review author"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: dist/blocks.build.js:126808
|
5856 |
msgid "Show review image"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: dist/blocks.build.js:126859
|
5860 |
msgid "Show ratings"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: dist/blocks.build.js:126864
|
5864 |
msgid "Note: Add feature/section ratings separately."
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: dist/blocks.build.js:126867
|
5868 |
msgid "Enable schema support"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: dist/blocks.build.js:127372
|
5872 |
msgid "Missing merchant-specific identifier for product ( SKU )"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: dist/blocks.build.js:127376
|
5876 |
msgid "Missing brand of the product"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: dist/blocks.build.js:127380
|
5880 |
msgid "Missing offer Type"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: dist/blocks.build.js:127384
|
5884 |
msgid "Missing offer currency of a product"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: dist/blocks.build.js:127388
|
5888 |
msgid "Missing offer price of a product"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: dist/blocks.build.js:127392
|
5892 |
msgid "Missing offer expiry of a product"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: dist/blocks.build.js:127396
|
5896 |
msgid "Missing global identifiers"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: dist/blocks.build.js:127403
|
5900 |
msgid "Missing ISBN number of a book"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: dist/blocks.build.js:127407
|
5904 |
msgid "Missing author of the book"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: dist/blocks.build.js:127414
|
5908 |
msgid "Missing released date of the movie"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: dist/blocks.build.js:127418
|
5912 |
msgid "Missing director name of the movie"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: dist/blocks.build.js:127425
|
5916 |
msgid "Missing provider of the course"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: dist/blocks.build.js:127432
|
5920 |
msgid "Missing type of application (Application Category)"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: dist/blocks.build.js:127436
|
5924 |
msgid "Missing operating system(s) required"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: dist/blocks.build.js:127440
|
5928 |
msgid "Missing Offer Type"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: dist/blocks.build.js:127444
|
5932 |
msgid "Missing offer price of the application"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
+
#: dist/blocks.build.js:127448
|
5936 |
msgid "Missing offer currency of the application"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
+
#: dist/blocks.build.js:127460
|
5940 |
msgid "Missing title of the review"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: dist/blocks.build.js:127464
|
5944 |
msgid "Missing review description"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
+
#: dist/blocks.build.js:127468
|
5948 |
msgid "Missing review Image"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: dist/blocks.build.js:127472
|
5952 |
msgid "Missing url field"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: dist/blocks.build.js:127476
|
5956 |
msgid "Missing review author name"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
+
#: dist/blocks.build.js:127480
|
5960 |
msgid "Missing review publisher"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
+
#: dist/blocks.build.js:127484
|
5964 |
msgid "Missing date of publish"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
+
#: dist/blocks.build.js:127509
|
5968 |
msgid "It seems that the following fields are empty. This may generate Schema errors / warnings for your Page, we recommend you to fill these fields."
|
5969 |
msgstr ""
|
5970 |
|
5971 |
+
#: dist/blocks.build.js:127520
|
5972 |
msgid "P.S. Note that this notice is visible only in the editor. This will not be visible in frontend. Also, once the required fields are added, this notice will go away."
|
5973 |
msgstr ""
|
5974 |
|
5975 |
+
#: dist/blocks.build.js:127525
|
5976 |
msgid "Read more."
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: dist/blocks.build.js:127817
|
5980 |
msgid "taxonomy"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: dist/blocks.build.js:128050
|
5984 |
msgid "Select Taxonomy"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: dist/blocks.build.js:128121
|
5988 |
msgid "Bullet/Numbers Color"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
+
#: dist/blocks.build.js:128164
|
5992 |
msgid "Bullet/Numbers Hover Color"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
+
#: dist/blocks.build.js:128193
|
5996 |
msgid "List"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
+
#: dist/blocks.build.js:128277
|
6000 |
msgid "If Taxonomy Not Found"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: dist/blocks.build.js:128285
|
6004 |
msgid "Display Style"
|
6005 |
msgstr ""
|
6006 |
|
6007 |
+
#: dist/blocks.build.js:128319
|
6008 |
msgid "Show Empty Taxonomy"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
+
#: dist/blocks.build.js:128327
|
6012 |
msgid "Show Posts Count"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
+
#: dist/blocks.build.js:128332
|
6016 |
msgid "Show Count of taxonomy "
|
6017 |
msgstr ""
|
6018 |
|
6019 |
+
#: dist/blocks.build.js:128335
|
6020 |
msgid "Show Hierarchy"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
+
#: dist/blocks.build.js:128340
|
6024 |
msgid "Show Hierarchy of taxonomy "
|
6025 |
msgstr ""
|
6026 |
|
6027 |
+
#: dist/blocks.build.js:128387
|
6028 |
msgid "List Style"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: dist/blocks.build.js:128470
|
6032 |
msgid "Count Color"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: dist/blocks.build.js:128562
|
6036 |
msgid "Mobile Content Padding"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: dist/blocks.build.js:128572
|
6040 |
msgid "Tab Content Padding"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#: dist/blocks.build.js:128616
|
6044 |
msgid "Bottom Margin"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: dist/blocks.build.js:128635
|
6048 |
msgid "Title "
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: dist/blocks.build.js:128661
|
6052 |
msgid "Count "
|
6053 |
msgstr ""
|
6054 |
|
6055 |
+
#: dist/blocks.build.js:128705
|
6056 |
msgid "Border Thickness"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
+
#: dist/blocks.build.js:128747
|
6060 |
msgid "Separator Style"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
+
#: dist/blocks.build.js:128758
|
6064 |
msgid "Separator Width (%)"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: dist/blocks.build.js:128768
|
6068 |
msgid "Separator Thickness"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
+
#: dist/blocks.build.js:128803
|
6072 |
msgid "List "
|
6073 |
msgstr ""
|
6074 |
|
6075 |
+
#: dist/blocks.build.js:129241
|
6076 |
msgid "Below setting will only take effect once you are on the live page, and not while you're editing."
|
6077 |
msgstr ""
|
6078 |
|
6079 |
+
#: dist/blocks.build.js:129442
|
6080 |
+
#: dist/blocks.build.js:130840
|
6081 |
msgid "tabs"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
+
#: dist/blocks.build.js:129492
|
6085 |
+
#: dist/blocks.build.js:130887
|
6086 |
msgid "Tab 1"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: dist/blocks.build.js:129492
|
6090 |
+
#: dist/blocks.build.js:130887
|
6091 |
msgid "Tab 2"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
+
#: dist/blocks.build.js:129492
|
6095 |
+
#: dist/blocks.build.js:130887
|
6096 |
msgid "Tab 3"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: dist/blocks.build.js:129941
|
6100 |
msgid "Tabs Style"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: dist/blocks.build.js:129965
|
6104 |
msgid "Mobile Style"
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: dist/blocks.build.js:129971
|
6108 |
+
#: dist/blocks.build.js:129985
|
6109 |
+
#: dist/blocks.build.js:129999
|
6110 |
msgid "Horizontal Style 1"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: dist/blocks.build.js:129971
|
6114 |
+
#: dist/blocks.build.js:129985
|
6115 |
+
#: dist/blocks.build.js:129999
|
6116 |
msgid "Horizontal Style 2"
|
6117 |
msgstr ""
|
6118 |
|
6119 |
+
#: dist/blocks.build.js:129971
|
6120 |
+
#: dist/blocks.build.js:129985
|
6121 |
+
#: dist/blocks.build.js:129999
|
6122 |
msgid "Horizontal Style 3"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
+
#: dist/blocks.build.js:129971
|
6126 |
+
#: dist/blocks.build.js:129985
|
6127 |
+
#: dist/blocks.build.js:129999
|
6128 |
msgid "Horizontal Style 4"
|
6129 |
msgstr ""
|
6130 |
|
6131 |
+
#: dist/blocks.build.js:129971
|
6132 |
+
#: dist/blocks.build.js:129985
|
6133 |
+
#: dist/blocks.build.js:129999
|
6134 |
msgid "Horizontal Style 5"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
#: dist/blocks.build.js:129971
|
6138 |
+
#: dist/blocks.build.js:129985
|
6139 |
+
#: dist/blocks.build.js:129999
|
6140 |
msgid "Vertical Style 6"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
+
#: dist/blocks.build.js:129971
|
6144 |
+
#: dist/blocks.build.js:129985
|
6145 |
+
#: dist/blocks.build.js:129999
|
6146 |
msgid "Vertical Style 7"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
+
#: dist/blocks.build.js:129971
|
6150 |
+
#: dist/blocks.build.js:129985
|
6151 |
+
#: dist/blocks.build.js:129999
|
6152 |
msgid "Vertical Style 8"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
+
#: dist/blocks.build.js:129971
|
6156 |
+
#: dist/blocks.build.js:129985
|
6157 |
+
#: dist/blocks.build.js:129999
|
6158 |
msgid "Vertical Style 9"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
+
#: dist/blocks.build.js:129971
|
6162 |
+
#: dist/blocks.build.js:129985
|
6163 |
+
#: dist/blocks.build.js:129999
|
6164 |
msgid "Vertical Style 10"
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: dist/blocks.build.js:129971
|
6168 |
msgid "Stack Style 11"
|
6169 |
msgstr ""
|
6170 |
|
6171 |
+
#: dist/blocks.build.js:129971
|
6172 |
msgid "Stack Style 12"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
+
#: dist/blocks.build.js:129971
|
6176 |
msgid "Stack Style 13"
|
6177 |
msgstr ""
|
6178 |
|
6179 |
+
#: dist/blocks.build.js:129971
|
6180 |
msgid "Stack Style 14"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: dist/blocks.build.js:129979
|
6184 |
msgid "Tablet Style"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
+
#: dist/blocks.build.js:129993
|
6188 |
msgid "Desktop Style"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: dist/blocks.build.js:130014
|
6192 |
msgid "Tabs Title Settings"
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: dist/blocks.build.js:130016
|
6196 |
msgid "Initial Open Tab"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
+
#: dist/blocks.build.js:130041
|
6200 |
msgid "Enable Icon"
|
6201 |
msgstr ""
|
6202 |
|
6203 |
+
#: dist/blocks.build.js:130104
|
6204 |
msgid "Active Icon Color"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: dist/blocks.build.js:130132
|
6208 |
msgid "Tab Title Margin (px)"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: dist/blocks.build.js:130180
|
6212 |
msgid "Title Padding"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: dist/blocks.build.js:130207
|
6216 |
msgid "Title Background Color"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: dist/blocks.build.js:130219
|
6220 |
msgid "Title Text Color"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
+
#: dist/blocks.build.js:130231
|
6224 |
msgid "Active Tab Background Color"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
+
#: dist/blocks.build.js:130243
|
6228 |
msgid "Active Tab Text Color"
|
6229 |
msgstr ""
|
6230 |
|
6231 |
+
#: dist/blocks.build.js:130272
|
6232 |
msgid "Tabs Body Settings"
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: dist/blocks.build.js:130276
|
6236 |
msgid "Body Background Color"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
+
#: dist/blocks.build.js:130288
|
6240 |
msgid "Body Text Color"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: dist/blocks.build.js:130300
|
6244 |
msgid "Tab Body Margin (px)"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: dist/blocks.build.js:130349
|
6248 |
msgid "Body Padding"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: dist/blocks.build.js:130377
|
6252 |
msgid "Border Settings"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#: dist/blocks.build.js:130391
|
6256 |
msgid "Border width"
|
6257 |
msgstr ""
|
6258 |
|
6259 |
+
#: dist/blocks.build.js:130433
|
6260 |
msgid "Title…"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: dist/blocks.build.js:130443
|
6264 |
msgid "Remove tab"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
+
#: dist/blocks.build.js:130461
|
6268 |
msgid "Add tab"
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: dist/blocks.build.js:131063
|
6272 |
msgid "lottie"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
+
#: dist/blocks.build.js:131063
|
6276 |
msgid "animation"
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: dist/blocks.build.js:131245
|
6280 |
msgid "Controls"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
+
#: dist/blocks.build.js:131248
|
6284 |
msgid "Play On"
|
6285 |
msgstr ""
|
6286 |
|
6287 |
+
#: dist/blocks.build.js:131253
|
6288 |
msgid "On Hover"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
+
#: dist/blocks.build.js:131253
|
6292 |
msgid "On Click"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: dist/blocks.build.js:131253
|
6296 |
msgid "Viewport"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
+
#: dist/blocks.build.js:131254
|
6300 |
msgid "This setting will only take effect once you are on the live page, and not while you're editing."
|
6301 |
msgstr ""
|
6302 |
|
6303 |
+
#: dist/blocks.build.js:131257
|
6304 |
msgid "Loop"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
+
#: dist/blocks.build.js:131263
|
6308 |
msgid "Speed"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
+
#: dist/blocks.build.js:131273
|
6312 |
msgid "Reverse"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
+
#: dist/blocks.build.js:131276
|
6316 |
msgid "Direction of animation."
|
6317 |
msgstr ""
|
6318 |
|
6319 |
+
#: dist/blocks.build.js:131456
|
6320 |
msgid "Lottie block requires the file type JSON to be uploaded to media files. Seems like your website has disabled this file type. Please refer"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
+
#: dist/blocks.build.js:131475
|
6324 |
msgid "Allows you to add fancy animation i.e Lottie to your website. You can see sample Lottie animations"
|
6325 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.me/BrainstormForce
|
|
4 |
Tags: gutenberg, blocks, gutenberg blocks, editor, block
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 5.6
|
7 |
-
Tested up to: 5.
|
8 |
-
Stable tag: 1.21.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -167,6 +167,11 @@ The awesome React FontIconPicker is developed by [Alessandro Benoit](http://code
|
|
167 |
|
168 |
== Changelog ==
|
169 |
|
|
|
|
|
|
|
|
|
|
|
170 |
= 1.21.0 =
|
171 |
* New: Tabs Block. [Read More](https://ultimategutenberg.com/tabs/)
|
172 |
* New: Added ability to import pre-made pages, patterns for block editor.
|
4 |
Tags: gutenberg, blocks, gutenberg blocks, editor, block
|
5 |
Requires at least: 4.7
|
6 |
Requires PHP: 5.6
|
7 |
+
Tested up to: 5.7
|
8 |
+
Stable tag: 1.21.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
167 |
|
168 |
== Changelog ==
|
169 |
|
170 |
+
= 1.21.1 =
|
171 |
+
* Improvement: Added compatibility with WordPress v5.7.
|
172 |
+
* Fix: Post Layouts - Fixed the JS undefined error with `post_type` in block editor while using Post Masonry.
|
173 |
+
* Fix: Post Layouts - Fixed the Post Layout keeps loading when clicking on categories All.
|
174 |
+
|
175 |
= 1.21.0 =
|
176 |
* New: Tabs Block. [Read More](https://ultimategutenberg.com/tabs/)
|
177 |
* New: Added ability to import pre-made pages, patterns for block editor.
|
ultimate-addons-for-gutenberg.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://www.brainstormforce.com
|
5 |
* Author: Brainstorm Force
|
6 |
* Author URI: https://www.brainstormforce.com
|
7 |
-
* Version: 1.21.
|
8 |
* Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
|
9 |
* Text Domain: ultimate-addons-for-gutenberg
|
10 |
*
|
4 |
* Plugin URI: https://www.brainstormforce.com
|
5 |
* Author: Brainstorm Force
|
6 |
* Author URI: https://www.brainstormforce.com
|
7 |
+
* Version: 1.21.1
|
8 |
* Description: The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.
|
9 |
* Text Domain: ultimate-addons-for-gutenberg
|
10 |
*
|