Version Description
(11 Mar 2020) =
- Added: Support for EAN-codes (gtin 13) in product schema #862
- Fixed: images not found in customizer #868
- Fixed: After adding product in the review section using add schema type wizard it's showing the book #841
- Fixed: Schema type in Archive of general settings need to have some padding as it should display as sub child of the archive #846
- Fixed: When migrating from ampforwp to schema default post and page type is setting up to apartment in backend #851
- Fixed: YouTube URL is not getting fetched if the embed structure is different. #854
- Fixed: If there are no data in the value and currency fields of the How-to schema, than it should not add estimatedCost property. #853
- Fixed: Warnings & Notices fixed. #861, #847 & #866,
Download this release
Release Info
Developer | magazine3 |
Plugin | Schema & Structured Data for WP & AMP |
Version | 1.9.28 |
Comparing to | |
See all releases |
Code changes from version 1.9.27 to 1.9.28
- admin_section/add-schema/add_new.php +8 -1
- admin_section/common-function.php +15 -4
- admin_section/css/images/ui-icons_444444_256x240.png +0 -0
- admin_section/css/images/ui-icons_555555_256x240.png +0 -0
- admin_section/css/images/ui-icons_777620_256x240.png +0 -0
- admin_section/css/images/ui-icons_777777_256x240.png +0 -0
- admin_section/css/images/ui-icons_cc0000_256x240.png +0 -0
- admin_section/css/jquery-ui.css +361 -275
- admin_section/css/main-style.css +3 -1
- admin_section/css/main-style.min.css +1 -1
- admin_section/plugin-installer/install.php +1 -1
- admin_section/structure_admin.php +25 -21
- core/array-list/repeater-fields.php +1 -1
- core/array-list/schema-properties.php +8 -0
- core/array-list/schemas.php +1 -1
- core/global.php +1 -1
- output/markup.php +10 -6
- output/output.php +8 -9
- output/service.php +18 -8
- readme.txt +13 -1
- structured-data-for-wp.php +2 -2
- view/common.php +1 -1
- view/schema_type.php +4 -0
admin_section/add-schema/add_new.php
CHANGED
@@ -405,7 +405,14 @@ $saswp_add_data_type_config = array(
|
|
405 |
|
406 |
set_transient('saswp_last_post_id', json_encode(array('post_id'=>$post_id)));
|
407 |
|
408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
|
410 |
if(isset($_POST['data_group_array']) && isset($_POST['saswp_post_id'])){
|
411 |
|
405 |
|
406 |
set_transient('saswp_last_post_id', json_encode(array('post_id'=>$post_id)));
|
407 |
|
408 |
+
}
|
409 |
+
if(isset($_POST['saswp_review_item_reviewed_'])){
|
410 |
+
update_post_meta(
|
411 |
+
$post_id,
|
412 |
+
'saswp_review_item_reviewed_'.$post_id,
|
413 |
+
sanitize_text_field($_POST['saswp_review_item_reviewed_'])
|
414 |
+
);
|
415 |
+
}
|
416 |
|
417 |
if(isset($_POST['data_group_array']) && isset($_POST['saswp_post_id'])){
|
418 |
|
admin_section/common-function.php
CHANGED
@@ -2955,7 +2955,7 @@ function saswp_is_date_field($date_str){
|
|
2955 |
if (strpos($date_str, 'date_modified') !== false
|
2956 |
|| strpos($date_str, 'date_published') !== false
|
2957 |
|| strpos($date_str, 'published_date') !== false
|
2958 |
-
|| strpos($date_str, '
|
2959 |
|| strpos($date_str, 'qa_date_created') !== false
|
2960 |
|| strpos($date_str, 'accepted_answer_date_created') !== false
|
2961 |
|| strpos($date_str, 'suggested_answer_date_created') !== false
|
@@ -3013,11 +3013,22 @@ function saswp_get_video_links(){
|
|
3013 |
|
3014 |
$response[] = $match[1].'youtube.com'.$match[2];
|
3015 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3016 |
}
|
3017 |
|
3018 |
-
}
|
|
|
3019 |
|
3020 |
-
}
|
3021 |
-
|
3022 |
return $response;
|
3023 |
}
|
2955 |
if (strpos($date_str, 'date_modified') !== false
|
2956 |
|| strpos($date_str, 'date_published') !== false
|
2957 |
|| strpos($date_str, 'published_date') !== false
|
2958 |
+
|| strpos($date_str, 'upload_date') !== false
|
2959 |
|| strpos($date_str, 'qa_date_created') !== false
|
2960 |
|| strpos($date_str, 'accepted_answer_date_created') !== false
|
2961 |
|| strpos($date_str, 'suggested_answer_date_created') !== false
|
3013 |
|
3014 |
$response[] = $match[1].'youtube.com'.$match[2];
|
3015 |
|
3016 |
+
}
|
3017 |
+
}
|
3018 |
+
|
3019 |
+
preg_match_all( '/src\=\"(.*?)youtu\.be(.*?)\"/s', $post->post_content, $youtubematches, PREG_SET_ORDER );
|
3020 |
+
|
3021 |
+
if($youtubematches){
|
3022 |
+
|
3023 |
+
foreach($youtubematches as $match){
|
3024 |
+
|
3025 |
+
$response[] = $match[1].'youtu.be'.$match[2];
|
3026 |
+
|
3027 |
}
|
3028 |
|
3029 |
+
}
|
3030 |
+
|
3031 |
|
3032 |
+
}
|
|
|
3033 |
return $response;
|
3034 |
}
|
admin_section/css/images/ui-icons_444444_256x240.png
ADDED
Binary file
|
admin_section/css/images/ui-icons_555555_256x240.png
ADDED
Binary file
|
admin_section/css/images/ui-icons_777620_256x240.png
ADDED
Binary file
|
admin_section/css/images/ui-icons_777777_256x240.png
ADDED
Binary file
|
admin_section/css/images/ui-icons_cc0000_256x240.png
ADDED
Binary file
|
admin_section/css/jquery-ui.css
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
/*! jQuery UI - v1.
|
2 |
* http://jqueryui.com
|
3 |
-
* Includes: core.css, accordion.css, autocomplete.css, button.css,
|
4 |
-
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=
|
5 |
-
* Copyright
|
6 |
|
7 |
/* Layout helpers
|
8 |
----------------------------------*/
|
@@ -38,9 +38,6 @@
|
|
38 |
.ui-helper-clearfix:after {
|
39 |
clear: both;
|
40 |
}
|
41 |
-
.ui-helper-clearfix {
|
42 |
-
min-height: 0; /* support: IE7 */
|
43 |
-
}
|
44 |
.ui-helper-zfix {
|
45 |
width: 100%;
|
46 |
height: 100%;
|
@@ -60,20 +57,27 @@
|
|
60 |
----------------------------------*/
|
61 |
.ui-state-disabled {
|
62 |
cursor: default !important;
|
|
|
63 |
}
|
64 |
|
65 |
|
66 |
/* Icons
|
67 |
----------------------------------*/
|
68 |
-
|
69 |
-
/* states and images */
|
70 |
.ui-icon {
|
71 |
-
display: block;
|
|
|
|
|
|
|
72 |
text-indent: -99999px;
|
73 |
overflow: hidden;
|
74 |
background-repeat: no-repeat;
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
/* Misc visuals
|
79 |
----------------------------------*/
|
@@ -92,21 +96,8 @@
|
|
92 |
position: relative;
|
93 |
margin: 2px 0 0 0;
|
94 |
padding: .5em .5em .5em .7em;
|
95 |
-
min-height: 0; /* support: IE7 */
|
96 |
font-size: 100%;
|
97 |
}
|
98 |
-
.ui-accordion .ui-accordion-icons {
|
99 |
-
padding-left: 2.2em;
|
100 |
-
}
|
101 |
-
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
|
102 |
-
padding-left: 2.2em;
|
103 |
-
}
|
104 |
-
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
|
105 |
-
position: absolute;
|
106 |
-
left: .5em;
|
107 |
-
top: 50%;
|
108 |
-
margin-top: -8px;
|
109 |
-
}
|
110 |
.ui-accordion .ui-accordion-content {
|
111 |
padding: 1em 2.2em;
|
112 |
border-top: 0;
|
@@ -118,17 +109,78 @@
|
|
118 |
left: 0;
|
119 |
cursor: default;
|
120 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
.ui-button {
|
|
|
122 |
display: inline-block;
|
123 |
position: relative;
|
124 |
-
padding: 0;
|
125 |
line-height: normal;
|
126 |
margin-right: .1em;
|
127 |
cursor: pointer;
|
128 |
vertical-align: middle;
|
129 |
text-align: center;
|
130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
}
|
|
|
132 |
.ui-button,
|
133 |
.ui-button:link,
|
134 |
.ui-button:visited,
|
@@ -136,91 +188,129 @@
|
|
136 |
.ui-button:active {
|
137 |
text-decoration: none;
|
138 |
}
|
|
|
139 |
/* to make room for the icon, a width needs to be set here */
|
140 |
.ui-button-icon-only {
|
141 |
-
width:
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
width: 2.4em;
|
146 |
}
|
147 |
-
|
148 |
-
|
|
|
|
|
149 |
}
|
150 |
-
|
151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
}
|
153 |
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
|
|
|
|
|
|
158 |
}
|
159 |
-
|
|
|
|
|
|
|
|
|
|
|
160 |
padding: .4em 1em;
|
161 |
}
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
}
|
167 |
-
.ui-
|
168 |
-
.ui-
|
169 |
-
|
170 |
}
|
171 |
-
.ui-
|
172 |
-
|
173 |
-
|
|
|
|
|
|
|
|
|
174 |
}
|
175 |
-
.ui-
|
176 |
-
|
177 |
-
padding-right: 2.1em;
|
178 |
}
|
179 |
-
|
180 |
-
input.ui-button {
|
181 |
padding: .4em 1em;
|
182 |
}
|
183 |
-
|
184 |
-
|
185 |
-
.ui-button-icon-only .ui-icon,
|
186 |
-
.ui-button-text-icon-primary .ui-icon,
|
187 |
-
.ui-button-text-icon-secondary .ui-icon,
|
188 |
-
.ui-button-text-icons .ui-icon,
|
189 |
-
.ui-button-icons-only .ui-icon {
|
190 |
-
position: absolute;
|
191 |
-
top: 50%;
|
192 |
-
margin-top: -8px;
|
193 |
}
|
194 |
-
.ui-
|
195 |
-
left:
|
196 |
-
margin-left: -8px;
|
197 |
}
|
198 |
-
.ui-
|
199 |
-
|
200 |
-
.ui-button-icons-only .ui-button-icon-primary {
|
201 |
-
left: .5em;
|
202 |
}
|
203 |
-
.ui-
|
204 |
-
|
205 |
-
.ui-button-icons-only .ui-button-icon-secondary {
|
206 |
-
right: .5em;
|
207 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
-
/*
|
210 |
-
|
211 |
-
|
212 |
}
|
213 |
-
.ui-
|
214 |
-
|
215 |
-
margin-right: -.3em;
|
216 |
}
|
217 |
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
}
|
225 |
.ui-datepicker {
|
226 |
width: 17em;
|
@@ -387,8 +477,17 @@ button.ui-button::-moz-focus-inner {
|
|
387 |
border-right-width: 0;
|
388 |
border-left-width: 1px;
|
389 |
}
|
390 |
-
|
|
|
|
|
|
|
|
|
391 |
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
|
392 |
position: absolute;
|
393 |
top: 0;
|
394 |
left: 0;
|
@@ -437,90 +536,51 @@ button.ui-button::-moz-focus-inner {
|
|
437 |
margin: .5em .4em .5em 0;
|
438 |
cursor: pointer;
|
439 |
}
|
440 |
-
.ui-dialog .ui-resizable-
|
441 |
-
|
442 |
-
|
443 |
-
right: -5px;
|
444 |
-
bottom: -5px;
|
445 |
-
background-position: 16px 16px;
|
446 |
-
}
|
447 |
-
.ui-draggable .ui-dialog-titlebar {
|
448 |
-
cursor: move;
|
449 |
-
}
|
450 |
-
.ui-draggable-handle {
|
451 |
-
-ms-touch-action: none;
|
452 |
-
touch-action: none;
|
453 |
-
}
|
454 |
-
.ui-menu {
|
455 |
-
list-style: none;
|
456 |
-
padding: 0;
|
457 |
-
margin: 0;
|
458 |
-
display: block;
|
459 |
-
outline: none;
|
460 |
-
}
|
461 |
-
.ui-menu .ui-menu {
|
462 |
-
position: absolute;
|
463 |
}
|
464 |
-
.ui-
|
465 |
-
|
466 |
-
|
467 |
-
padding: 3px 1em 3px .4em;
|
468 |
-
cursor: pointer;
|
469 |
-
min-height: 0; /* support: IE7 */
|
470 |
-
/* support: IE10, see #8844 */
|
471 |
-
list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
|
472 |
}
|
473 |
-
.ui-
|
474 |
-
|
475 |
-
|
476 |
-
font-size: 0;
|
477 |
-
line-height: 0;
|
478 |
-
border-width: 1px 0 0 0;
|
479 |
}
|
480 |
-
.ui-
|
481 |
-
|
482 |
-
|
483 |
}
|
484 |
-
|
485 |
-
|
486 |
-
.ui-
|
487 |
-
|
|
|
|
|
488 |
}
|
489 |
-
.ui-
|
490 |
-
|
|
|
491 |
}
|
492 |
-
|
493 |
-
|
494 |
-
.ui-menu .ui-icon {
|
495 |
-
position: absolute;
|
496 |
-
top: 0;
|
497 |
bottom: 0;
|
498 |
-
left: .2em;
|
499 |
-
margin: auto 0;
|
500 |
}
|
501 |
-
|
502 |
-
/* right-aligned */
|
503 |
-
.ui-menu .ui-menu-icon {
|
504 |
-
left: auto;
|
505 |
right: 0;
|
|
|
506 |
}
|
507 |
-
.ui-
|
508 |
-
|
509 |
-
|
510 |
-
overflow: hidden;
|
511 |
-
}
|
512 |
-
.ui-progressbar .ui-progressbar-value {
|
513 |
-
margin: -1px;
|
514 |
-
height: 100%;
|
515 |
}
|
516 |
-
.ui-
|
517 |
-
|
518 |
-
height: 100%;
|
519 |
-
filter: alpha(opacity=25); /* support: IE8 */
|
520 |
-
opacity: 0.25;
|
521 |
}
|
522 |
-
.ui-
|
523 |
-
|
|
|
524 |
}
|
525 |
.ui-resizable {
|
526 |
position: relative;
|
@@ -592,6 +652,24 @@ button.ui-button::-moz-focus-inner {
|
|
592 |
right: -5px;
|
593 |
top: -5px;
|
594 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
595 |
.ui-selectable {
|
596 |
-ms-touch-action: none;
|
597 |
touch-action: none;
|
@@ -611,7 +689,6 @@ button.ui-button::-moz-focus-inner {
|
|
611 |
}
|
612 |
.ui-selectmenu-menu .ui-menu {
|
613 |
overflow: auto;
|
614 |
-
/* Support: IE7 */
|
615 |
overflow-x: hidden;
|
616 |
padding-bottom: 1px;
|
617 |
}
|
@@ -627,28 +704,20 @@ button.ui-button::-moz-focus-inner {
|
|
627 |
.ui-selectmenu-open {
|
628 |
display: block;
|
629 |
}
|
630 |
-
.ui-selectmenu-
|
631 |
-
display: inline-block;
|
632 |
-
overflow: hidden;
|
633 |
-
position: relative;
|
634 |
-
text-decoration: none;
|
635 |
-
cursor: pointer;
|
636 |
-
}
|
637 |
-
.ui-selectmenu-button span.ui-icon {
|
638 |
-
right: 0.5em;
|
639 |
-
left: auto;
|
640 |
-
margin-top: -8px;
|
641 |
-
position: absolute;
|
642 |
-
top: 50%;
|
643 |
-
}
|
644 |
-
.ui-selectmenu-button span.ui-selectmenu-text {
|
645 |
-
text-align: left;
|
646 |
-
padding: 0.4em 2.1em 0.4em 1em;
|
647 |
display: block;
|
648 |
-
|
649 |
overflow: hidden;
|
650 |
text-overflow: ellipsis;
|
|
|
|
|
|
|
651 |
white-space: nowrap;
|
|
|
|
|
|
|
|
|
|
|
652 |
}
|
653 |
.ui-slider {
|
654 |
position: relative;
|
@@ -730,14 +799,14 @@ button.ui-button::-moz-focus-inner {
|
|
730 |
border: none;
|
731 |
background: none;
|
732 |
color: inherit;
|
733 |
-
padding: 0;
|
734 |
margin: .2em 0;
|
735 |
vertical-align: middle;
|
736 |
margin-left: .4em;
|
737 |
-
margin-right:
|
738 |
}
|
739 |
.ui-spinner-button {
|
740 |
-
width:
|
741 |
height: 50%;
|
742 |
font-size: .5em;
|
743 |
padding: 0;
|
@@ -751,16 +820,9 @@ button.ui-button::-moz-focus-inner {
|
|
751 |
}
|
752 |
/* more specificity required here to override default borders */
|
753 |
.ui-spinner a.ui-spinner-button {
|
754 |
-
border-top: none;
|
755 |
-
border-bottom: none;
|
756 |
-
border-right: none;
|
757 |
-
}
|
758 |
-
/* vertically center icon */
|
759 |
-
.ui-spinner .ui-icon {
|
760 |
-
position: absolute;
|
761 |
-
margin-top: -8px;
|
762 |
-
top: 50%;
|
763 |
-
left: 0;
|
764 |
}
|
765 |
.ui-spinner-up {
|
766 |
top: 0;
|
@@ -768,12 +830,6 @@ button.ui-button::-moz-focus-inner {
|
|
768 |
.ui-spinner-down {
|
769 |
bottom: 0;
|
770 |
}
|
771 |
-
|
772 |
-
/* TR overrides */
|
773 |
-
.ui-spinner .ui-icon-triangle-1-s {
|
774 |
-
/* need to fix icons sprite */
|
775 |
-
background-position: -65px -16px;
|
776 |
-
}
|
777 |
.ui-tabs {
|
778 |
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
779 |
padding: .2em;
|
@@ -820,18 +876,15 @@ button.ui-button::-moz-focus-inner {
|
|
820 |
position: absolute;
|
821 |
z-index: 9999;
|
822 |
max-width: 300px;
|
823 |
-
-webkit-box-shadow: 0 0 5px #aaa;
|
824 |
-
box-shadow: 0 0 5px #aaa;
|
825 |
}
|
826 |
body .ui-tooltip {
|
827 |
border-width: 2px;
|
828 |
}
|
829 |
-
|
830 |
/* Component containers
|
831 |
----------------------------------*/
|
832 |
.ui-widget {
|
833 |
-
font-family:
|
834 |
-
font-size:
|
835 |
}
|
836 |
.ui-widget .ui-widget {
|
837 |
font-size: 1em;
|
@@ -840,41 +893,54 @@ body .ui-tooltip {
|
|
840 |
.ui-widget select,
|
841 |
.ui-widget textarea,
|
842 |
.ui-widget button {
|
843 |
-
font-family:
|
844 |
font-size: 1em;
|
845 |
}
|
|
|
|
|
|
|
846 |
.ui-widget-content {
|
847 |
-
border: 1px solid #
|
848 |
-
background: #ffffff
|
849 |
-
color: #
|
850 |
}
|
851 |
.ui-widget-content a {
|
852 |
-
color: #
|
853 |
}
|
854 |
.ui-widget-header {
|
855 |
-
border: 1px solid #
|
856 |
-
background: #
|
857 |
-
color: #
|
858 |
font-weight: bold;
|
859 |
}
|
860 |
.ui-widget-header a {
|
861 |
-
color: #
|
862 |
}
|
863 |
|
864 |
/* Interaction states
|
865 |
----------------------------------*/
|
866 |
.ui-state-default,
|
867 |
.ui-widget-content .ui-state-default,
|
868 |
-
.ui-widget-header .ui-state-default
|
869 |
-
|
870 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
871 |
font-weight: normal;
|
872 |
-
color: #
|
873 |
}
|
874 |
.ui-state-default a,
|
875 |
.ui-state-default a:link,
|
876 |
-
.ui-state-default a:visited
|
877 |
-
|
|
|
|
|
|
|
|
|
878 |
text-decoration: none;
|
879 |
}
|
880 |
.ui-state-hover,
|
@@ -882,11 +948,13 @@ body .ui-tooltip {
|
|
882 |
.ui-widget-header .ui-state-hover,
|
883 |
.ui-state-focus,
|
884 |
.ui-widget-content .ui-state-focus,
|
885 |
-
.ui-widget-header .ui-state-focus
|
886 |
-
|
887 |
-
|
|
|
|
|
888 |
font-weight: normal;
|
889 |
-
color: #
|
890 |
}
|
891 |
.ui-state-hover a,
|
892 |
.ui-state-hover a:hover,
|
@@ -895,22 +963,36 @@ body .ui-tooltip {
|
|
895 |
.ui-state-focus a,
|
896 |
.ui-state-focus a:hover,
|
897 |
.ui-state-focus a:link,
|
898 |
-
.ui-state-focus a:visited
|
899 |
-
|
|
|
|
|
900 |
text-decoration: none;
|
901 |
}
|
|
|
|
|
|
|
|
|
902 |
.ui-state-active,
|
903 |
.ui-widget-content .ui-state-active,
|
904 |
-
.ui-widget-header .ui-state-active
|
905 |
-
|
906 |
-
|
|
|
|
|
|
|
907 |
font-weight: normal;
|
908 |
-
color: #
|
|
|
|
|
|
|
|
|
|
|
909 |
}
|
910 |
.ui-state-active a,
|
911 |
.ui-state-active a:link,
|
912 |
.ui-state-active a:visited {
|
913 |
-
color: #
|
914 |
text-decoration: none;
|
915 |
}
|
916 |
|
@@ -919,31 +1001,35 @@ body .ui-tooltip {
|
|
919 |
.ui-state-highlight,
|
920 |
.ui-widget-content .ui-state-highlight,
|
921 |
.ui-widget-header .ui-state-highlight {
|
922 |
-
border: 1px solid #
|
923 |
-
background: #
|
924 |
-
color: #
|
|
|
|
|
|
|
|
|
925 |
}
|
926 |
.ui-state-highlight a,
|
927 |
.ui-widget-content .ui-state-highlight a,
|
928 |
.ui-widget-header .ui-state-highlight a {
|
929 |
-
color: #
|
930 |
}
|
931 |
.ui-state-error,
|
932 |
.ui-widget-content .ui-state-error,
|
933 |
.ui-widget-header .ui-state-error {
|
934 |
-
border: 1px solid #
|
935 |
-
background: #
|
936 |
-
color: #
|
937 |
}
|
938 |
.ui-state-error a,
|
939 |
.ui-widget-content .ui-state-error a,
|
940 |
.ui-widget-header .ui-state-error a {
|
941 |
-
color: #
|
942 |
}
|
943 |
.ui-state-error-text,
|
944 |
.ui-widget-content .ui-state-error-text,
|
945 |
.ui-widget-header .ui-state-error-text {
|
946 |
-
color: #
|
947 |
}
|
948 |
.ui-priority-primary,
|
949 |
.ui-widget-content .ui-priority-primary,
|
@@ -978,46 +1064,50 @@ body .ui-tooltip {
|
|
978 |
}
|
979 |
.ui-icon,
|
980 |
.ui-widget-content .ui-icon {
|
981 |
-
background-image: url("images/ui-
|
982 |
}
|
983 |
.ui-widget-header .ui-icon {
|
984 |
-
background-image: url("images/ui-
|
985 |
-
}
|
986 |
-
.ui-state-default .ui-icon {
|
987 |
-
background-image: url("images/ui-icons_888888_256x240.png");
|
988 |
}
|
989 |
.ui-state-hover .ui-icon,
|
990 |
-
.ui-state-focus .ui-icon
|
991 |
-
|
|
|
|
|
992 |
}
|
993 |
-
.ui-state-active .ui-icon
|
994 |
-
|
|
|
995 |
}
|
996 |
-
.ui-state-highlight .ui-icon
|
997 |
-
|
|
|
998 |
}
|
999 |
.ui-state-error .ui-icon,
|
1000 |
.ui-state-error-text .ui-icon {
|
1001 |
-
background-image: url("images/ui-
|
|
|
|
|
|
|
1002 |
}
|
1003 |
|
1004 |
/* positioning */
|
1005 |
.ui-icon-blank { background-position: 16px 16px; }
|
1006 |
-
.ui-icon-
|
1007 |
-
.ui-icon-
|
1008 |
-
.ui-icon-
|
1009 |
-
.ui-icon-
|
1010 |
-
.ui-icon-
|
1011 |
-
.ui-icon-
|
1012 |
-
.ui-icon-
|
1013 |
-
.ui-icon-
|
1014 |
-
.ui-icon-
|
1015 |
-
.ui-icon-
|
1016 |
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
1017 |
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
1018 |
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
1019 |
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
1020 |
-
.ui-icon-triangle-1-s { background-position: -
|
1021 |
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
1022 |
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
1023 |
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
@@ -1027,7 +1117,7 @@ body .ui-tooltip {
|
|
1027 |
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
1028 |
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
1029 |
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
1030 |
-
.ui-icon-arrow-1-s { background-position: -
|
1031 |
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
1032 |
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
1033 |
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
@@ -1039,7 +1129,7 @@ body .ui-tooltip {
|
|
1039 |
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
1040 |
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
1041 |
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
1042 |
-
.ui-icon-arrowthick-1-n { background-position:
|
1043 |
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
1044 |
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
1045 |
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
@@ -1188,38 +1278,34 @@ body .ui-tooltip {
|
|
1188 |
.ui-corner-top,
|
1189 |
.ui-corner-left,
|
1190 |
.ui-corner-tl {
|
1191 |
-
border-top-left-radius:
|
1192 |
}
|
1193 |
.ui-corner-all,
|
1194 |
.ui-corner-top,
|
1195 |
.ui-corner-right,
|
1196 |
.ui-corner-tr {
|
1197 |
-
border-top-right-radius:
|
1198 |
}
|
1199 |
.ui-corner-all,
|
1200 |
.ui-corner-bottom,
|
1201 |
.ui-corner-left,
|
1202 |
.ui-corner-bl {
|
1203 |
-
border-bottom-left-radius:
|
1204 |
}
|
1205 |
.ui-corner-all,
|
1206 |
.ui-corner-bottom,
|
1207 |
.ui-corner-right,
|
1208 |
.ui-corner-br {
|
1209 |
-
border-bottom-right-radius:
|
1210 |
}
|
1211 |
|
1212 |
/* Overlays */
|
1213 |
.ui-widget-overlay {
|
1214 |
-
background: #aaaaaa
|
1215 |
opacity: .3;
|
1216 |
filter: Alpha(Opacity=30); /* support: IE8 */
|
1217 |
}
|
1218 |
.ui-widget-shadow {
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
opacity: .3;
|
1223 |
-
filter: Alpha(Opacity=30); /* support: IE8 */
|
1224 |
-
border-radius: 8px;
|
1225 |
-
}
|
1 |
+
/*! jQuery UI - v1.12.1 - 2016-09-14
|
2 |
* http://jqueryui.com
|
3 |
+
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
|
4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
|
5 |
+
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
6 |
|
7 |
/* Layout helpers
|
8 |
----------------------------------*/
|
38 |
.ui-helper-clearfix:after {
|
39 |
clear: both;
|
40 |
}
|
|
|
|
|
|
|
41 |
.ui-helper-zfix {
|
42 |
width: 100%;
|
43 |
height: 100%;
|
57 |
----------------------------------*/
|
58 |
.ui-state-disabled {
|
59 |
cursor: default !important;
|
60 |
+
pointer-events: none;
|
61 |
}
|
62 |
|
63 |
|
64 |
/* Icons
|
65 |
----------------------------------*/
|
|
|
|
|
66 |
.ui-icon {
|
67 |
+
display: inline-block;
|
68 |
+
vertical-align: middle;
|
69 |
+
margin-top: -.25em;
|
70 |
+
position: relative;
|
71 |
text-indent: -99999px;
|
72 |
overflow: hidden;
|
73 |
background-repeat: no-repeat;
|
74 |
}
|
75 |
|
76 |
+
.ui-widget-icon-block {
|
77 |
+
left: 50%;
|
78 |
+
margin-left: -8px;
|
79 |
+
display: block;
|
80 |
+
}
|
81 |
|
82 |
/* Misc visuals
|
83 |
----------------------------------*/
|
96 |
position: relative;
|
97 |
margin: 2px 0 0 0;
|
98 |
padding: .5em .5em .5em .7em;
|
|
|
99 |
font-size: 100%;
|
100 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
.ui-accordion .ui-accordion-content {
|
102 |
padding: 1em 2.2em;
|
103 |
border-top: 0;
|
109 |
left: 0;
|
110 |
cursor: default;
|
111 |
}
|
112 |
+
.ui-menu {
|
113 |
+
list-style: none;
|
114 |
+
padding: 0;
|
115 |
+
margin: 0;
|
116 |
+
display: block;
|
117 |
+
outline: 0;
|
118 |
+
}
|
119 |
+
.ui-menu .ui-menu {
|
120 |
+
position: absolute;
|
121 |
+
}
|
122 |
+
.ui-menu .ui-menu-item {
|
123 |
+
margin: 0;
|
124 |
+
cursor: pointer;
|
125 |
+
/* support: IE10, see #8844 */
|
126 |
+
list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
|
127 |
+
}
|
128 |
+
.ui-menu .ui-menu-item-wrapper {
|
129 |
+
position: relative;
|
130 |
+
padding: 3px 1em 3px .4em;
|
131 |
+
}
|
132 |
+
.ui-menu .ui-menu-divider {
|
133 |
+
margin: 5px 0;
|
134 |
+
height: 0;
|
135 |
+
font-size: 0;
|
136 |
+
line-height: 0;
|
137 |
+
border-width: 1px 0 0 0;
|
138 |
+
}
|
139 |
+
.ui-menu .ui-state-focus,
|
140 |
+
.ui-menu .ui-state-active {
|
141 |
+
margin: -1px;
|
142 |
+
}
|
143 |
+
|
144 |
+
/* icon support */
|
145 |
+
.ui-menu-icons {
|
146 |
+
position: relative;
|
147 |
+
}
|
148 |
+
.ui-menu-icons .ui-menu-item-wrapper {
|
149 |
+
padding-left: 2em;
|
150 |
+
}
|
151 |
+
|
152 |
+
/* left-aligned */
|
153 |
+
.ui-menu .ui-icon {
|
154 |
+
position: absolute;
|
155 |
+
top: 0;
|
156 |
+
bottom: 0;
|
157 |
+
left: .2em;
|
158 |
+
margin: auto 0;
|
159 |
+
}
|
160 |
+
|
161 |
+
/* right-aligned */
|
162 |
+
.ui-menu .ui-menu-icon {
|
163 |
+
left: auto;
|
164 |
+
right: 0;
|
165 |
+
}
|
166 |
.ui-button {
|
167 |
+
padding: .4em 1em;
|
168 |
display: inline-block;
|
169 |
position: relative;
|
|
|
170 |
line-height: normal;
|
171 |
margin-right: .1em;
|
172 |
cursor: pointer;
|
173 |
vertical-align: middle;
|
174 |
text-align: center;
|
175 |
+
-webkit-user-select: none;
|
176 |
+
-moz-user-select: none;
|
177 |
+
-ms-user-select: none;
|
178 |
+
user-select: none;
|
179 |
+
|
180 |
+
/* Support: IE <= 11 */
|
181 |
+
overflow: visible;
|
182 |
}
|
183 |
+
|
184 |
.ui-button,
|
185 |
.ui-button:link,
|
186 |
.ui-button:visited,
|
188 |
.ui-button:active {
|
189 |
text-decoration: none;
|
190 |
}
|
191 |
+
|
192 |
/* to make room for the icon, a width needs to be set here */
|
193 |
.ui-button-icon-only {
|
194 |
+
width: 2em;
|
195 |
+
box-sizing: border-box;
|
196 |
+
text-indent: -9999px;
|
197 |
+
white-space: nowrap;
|
|
|
198 |
}
|
199 |
+
|
200 |
+
/* no icon support for input elements */
|
201 |
+
input.ui-button.ui-button-icon-only {
|
202 |
+
text-indent: 0;
|
203 |
}
|
204 |
+
|
205 |
+
/* button icon element(s) */
|
206 |
+
.ui-button-icon-only .ui-icon {
|
207 |
+
position: absolute;
|
208 |
+
top: 50%;
|
209 |
+
left: 50%;
|
210 |
+
margin-top: -8px;
|
211 |
+
margin-left: -8px;
|
212 |
}
|
213 |
|
214 |
+
.ui-button.ui-icon-notext .ui-icon {
|
215 |
+
padding: 0;
|
216 |
+
width: 2.1em;
|
217 |
+
height: 2.1em;
|
218 |
+
text-indent: -9999px;
|
219 |
+
white-space: nowrap;
|
220 |
+
|
221 |
}
|
222 |
+
|
223 |
+
input.ui-button.ui-icon-notext .ui-icon {
|
224 |
+
width: auto;
|
225 |
+
height: auto;
|
226 |
+
text-indent: 0;
|
227 |
+
white-space: normal;
|
228 |
padding: .4em 1em;
|
229 |
}
|
230 |
+
|
231 |
+
/* workarounds */
|
232 |
+
/* Support: Firefox 5 - 40 */
|
233 |
+
input.ui-button::-moz-focus-inner,
|
234 |
+
button.ui-button::-moz-focus-inner {
|
235 |
+
border: 0;
|
236 |
+
padding: 0;
|
237 |
+
}
|
238 |
+
.ui-controlgroup {
|
239 |
+
vertical-align: middle;
|
240 |
+
display: inline-block;
|
241 |
+
}
|
242 |
+
.ui-controlgroup > .ui-controlgroup-item {
|
243 |
+
float: left;
|
244 |
+
margin-left: 0;
|
245 |
+
margin-right: 0;
|
246 |
}
|
247 |
+
.ui-controlgroup > .ui-controlgroup-item:focus,
|
248 |
+
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
|
249 |
+
z-index: 9999;
|
250 |
}
|
251 |
+
.ui-controlgroup-vertical > .ui-controlgroup-item {
|
252 |
+
display: block;
|
253 |
+
float: none;
|
254 |
+
width: 100%;
|
255 |
+
margin-top: 0;
|
256 |
+
margin-bottom: 0;
|
257 |
+
text-align: left;
|
258 |
}
|
259 |
+
.ui-controlgroup-vertical .ui-controlgroup-item {
|
260 |
+
box-sizing: border-box;
|
|
|
261 |
}
|
262 |
+
.ui-controlgroup .ui-controlgroup-label {
|
|
|
263 |
padding: .4em 1em;
|
264 |
}
|
265 |
+
.ui-controlgroup .ui-controlgroup-label span {
|
266 |
+
font-size: 80%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
}
|
268 |
+
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
|
269 |
+
border-left: none;
|
|
|
270 |
}
|
271 |
+
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
|
272 |
+
border-top: none;
|
|
|
|
|
273 |
}
|
274 |
+
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
|
275 |
+
border-right: none;
|
|
|
|
|
276 |
}
|
277 |
+
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
|
278 |
+
border-bottom: none;
|
279 |
+
}
|
280 |
+
|
281 |
+
/* Spinner specific style fixes */
|
282 |
+
.ui-controlgroup-vertical .ui-spinner-input {
|
283 |
|
284 |
+
/* Support: IE8 only, Android < 4.4 only */
|
285 |
+
width: 75%;
|
286 |
+
width: calc( 100% - 2.4em );
|
287 |
}
|
288 |
+
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
|
289 |
+
border-top-style: solid;
|
|
|
290 |
}
|
291 |
|
292 |
+
.ui-checkboxradio-label .ui-icon-background {
|
293 |
+
box-shadow: inset 1px 1px 1px #ccc;
|
294 |
+
border-radius: .12em;
|
295 |
+
border: none;
|
296 |
+
}
|
297 |
+
.ui-checkboxradio-radio-label .ui-icon-background {
|
298 |
+
width: 16px;
|
299 |
+
height: 16px;
|
300 |
+
border-radius: 1em;
|
301 |
+
overflow: visible;
|
302 |
+
border: none;
|
303 |
+
}
|
304 |
+
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
|
305 |
+
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
|
306 |
+
background-image: none;
|
307 |
+
width: 8px;
|
308 |
+
height: 8px;
|
309 |
+
border-width: 4px;
|
310 |
+
border-style: solid;
|
311 |
+
}
|
312 |
+
.ui-checkboxradio-disabled {
|
313 |
+
pointer-events: none;
|
314 |
}
|
315 |
.ui-datepicker {
|
316 |
width: 17em;
|
477 |
border-right-width: 0;
|
478 |
border-left-width: 1px;
|
479 |
}
|
480 |
+
|
481 |
+
/* Icons */
|
482 |
+
.ui-datepicker .ui-icon {
|
483 |
+
display: block;
|
484 |
+
text-indent: -99999px;
|
485 |
overflow: hidden;
|
486 |
+
background-repeat: no-repeat;
|
487 |
+
left: .5em;
|
488 |
+
top: .3em;
|
489 |
+
}
|
490 |
+
.ui-dialog {
|
491 |
position: absolute;
|
492 |
top: 0;
|
493 |
left: 0;
|
536 |
margin: .5em .4em .5em 0;
|
537 |
cursor: pointer;
|
538 |
}
|
539 |
+
.ui-dialog .ui-resizable-n {
|
540 |
+
height: 2px;
|
541 |
+
top: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
}
|
543 |
+
.ui-dialog .ui-resizable-e {
|
544 |
+
width: 2px;
|
545 |
+
right: 0;
|
|
|
|
|
|
|
|
|
|
|
546 |
}
|
547 |
+
.ui-dialog .ui-resizable-s {
|
548 |
+
height: 2px;
|
549 |
+
bottom: 0;
|
|
|
|
|
|
|
550 |
}
|
551 |
+
.ui-dialog .ui-resizable-w {
|
552 |
+
width: 2px;
|
553 |
+
left: 0;
|
554 |
}
|
555 |
+
.ui-dialog .ui-resizable-se,
|
556 |
+
.ui-dialog .ui-resizable-sw,
|
557 |
+
.ui-dialog .ui-resizable-ne,
|
558 |
+
.ui-dialog .ui-resizable-nw {
|
559 |
+
width: 7px;
|
560 |
+
height: 7px;
|
561 |
}
|
562 |
+
.ui-dialog .ui-resizable-se {
|
563 |
+
right: 0;
|
564 |
+
bottom: 0;
|
565 |
}
|
566 |
+
.ui-dialog .ui-resizable-sw {
|
567 |
+
left: 0;
|
|
|
|
|
|
|
568 |
bottom: 0;
|
|
|
|
|
569 |
}
|
570 |
+
.ui-dialog .ui-resizable-ne {
|
|
|
|
|
|
|
571 |
right: 0;
|
572 |
+
top: 0;
|
573 |
}
|
574 |
+
.ui-dialog .ui-resizable-nw {
|
575 |
+
left: 0;
|
576 |
+
top: 0;
|
|
|
|
|
|
|
|
|
|
|
577 |
}
|
578 |
+
.ui-draggable .ui-dialog-titlebar {
|
579 |
+
cursor: move;
|
|
|
|
|
|
|
580 |
}
|
581 |
+
.ui-draggable-handle {
|
582 |
+
-ms-touch-action: none;
|
583 |
+
touch-action: none;
|
584 |
}
|
585 |
.ui-resizable {
|
586 |
position: relative;
|
652 |
right: -5px;
|
653 |
top: -5px;
|
654 |
}
|
655 |
+
.ui-progressbar {
|
656 |
+
height: 2em;
|
657 |
+
text-align: left;
|
658 |
+
overflow: hidden;
|
659 |
+
}
|
660 |
+
.ui-progressbar .ui-progressbar-value {
|
661 |
+
margin: -1px;
|
662 |
+
height: 100%;
|
663 |
+
}
|
664 |
+
.ui-progressbar .ui-progressbar-overlay {
|
665 |
+
background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
|
666 |
+
height: 100%;
|
667 |
+
filter: alpha(opacity=25); /* support: IE8 */
|
668 |
+
opacity: 0.25;
|
669 |
+
}
|
670 |
+
.ui-progressbar-indeterminate .ui-progressbar-value {
|
671 |
+
background-image: none;
|
672 |
+
}
|
673 |
.ui-selectable {
|
674 |
-ms-touch-action: none;
|
675 |
touch-action: none;
|
689 |
}
|
690 |
.ui-selectmenu-menu .ui-menu {
|
691 |
overflow: auto;
|
|
|
692 |
overflow-x: hidden;
|
693 |
padding-bottom: 1px;
|
694 |
}
|
704 |
.ui-selectmenu-open {
|
705 |
display: block;
|
706 |
}
|
707 |
+
.ui-selectmenu-text {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
display: block;
|
709 |
+
margin-right: 20px;
|
710 |
overflow: hidden;
|
711 |
text-overflow: ellipsis;
|
712 |
+
}
|
713 |
+
.ui-selectmenu-button.ui-button {
|
714 |
+
text-align: left;
|
715 |
white-space: nowrap;
|
716 |
+
width: 14em;
|
717 |
+
}
|
718 |
+
.ui-selectmenu-icon.ui-icon {
|
719 |
+
float: right;
|
720 |
+
margin-top: 0;
|
721 |
}
|
722 |
.ui-slider {
|
723 |
position: relative;
|
799 |
border: none;
|
800 |
background: none;
|
801 |
color: inherit;
|
802 |
+
padding: .222em 0;
|
803 |
margin: .2em 0;
|
804 |
vertical-align: middle;
|
805 |
margin-left: .4em;
|
806 |
+
margin-right: 2em;
|
807 |
}
|
808 |
.ui-spinner-button {
|
809 |
+
width: 1.6em;
|
810 |
height: 50%;
|
811 |
font-size: .5em;
|
812 |
padding: 0;
|
820 |
}
|
821 |
/* more specificity required here to override default borders */
|
822 |
.ui-spinner a.ui-spinner-button {
|
823 |
+
border-top-style: none;
|
824 |
+
border-bottom-style: none;
|
825 |
+
border-right-style: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
}
|
827 |
.ui-spinner-up {
|
828 |
top: 0;
|
830 |
.ui-spinner-down {
|
831 |
bottom: 0;
|
832 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
.ui-tabs {
|
834 |
position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
835 |
padding: .2em;
|
876 |
position: absolute;
|
877 |
z-index: 9999;
|
878 |
max-width: 300px;
|
|
|
|
|
879 |
}
|
880 |
body .ui-tooltip {
|
881 |
border-width: 2px;
|
882 |
}
|
|
|
883 |
/* Component containers
|
884 |
----------------------------------*/
|
885 |
.ui-widget {
|
886 |
+
font-family: Arial,Helvetica,sans-serif;
|
887 |
+
font-size: 1em;
|
888 |
}
|
889 |
.ui-widget .ui-widget {
|
890 |
font-size: 1em;
|
893 |
.ui-widget select,
|
894 |
.ui-widget textarea,
|
895 |
.ui-widget button {
|
896 |
+
font-family: Arial,Helvetica,sans-serif;
|
897 |
font-size: 1em;
|
898 |
}
|
899 |
+
.ui-widget.ui-widget-content {
|
900 |
+
border: 1px solid #c5c5c5;
|
901 |
+
}
|
902 |
.ui-widget-content {
|
903 |
+
border: 1px solid #dddddd;
|
904 |
+
background: #ffffff;
|
905 |
+
color: #333333;
|
906 |
}
|
907 |
.ui-widget-content a {
|
908 |
+
color: #333333;
|
909 |
}
|
910 |
.ui-widget-header {
|
911 |
+
border: 1px solid #dddddd;
|
912 |
+
background: #e9e9e9;
|
913 |
+
color: #333333;
|
914 |
font-weight: bold;
|
915 |
}
|
916 |
.ui-widget-header a {
|
917 |
+
color: #333333;
|
918 |
}
|
919 |
|
920 |
/* Interaction states
|
921 |
----------------------------------*/
|
922 |
.ui-state-default,
|
923 |
.ui-widget-content .ui-state-default,
|
924 |
+
.ui-widget-header .ui-state-default,
|
925 |
+
.ui-button,
|
926 |
+
|
927 |
+
/* We use html here because we need a greater specificity to make sure disabled
|
928 |
+
works properly when clicked or hovered */
|
929 |
+
html .ui-button.ui-state-disabled:hover,
|
930 |
+
html .ui-button.ui-state-disabled:active {
|
931 |
+
border: 1px solid #c5c5c5;
|
932 |
+
background: #f6f6f6;
|
933 |
font-weight: normal;
|
934 |
+
color: #454545;
|
935 |
}
|
936 |
.ui-state-default a,
|
937 |
.ui-state-default a:link,
|
938 |
+
.ui-state-default a:visited,
|
939 |
+
a.ui-button,
|
940 |
+
a:link.ui-button,
|
941 |
+
a:visited.ui-button,
|
942 |
+
.ui-button {
|
943 |
+
color: #454545;
|
944 |
text-decoration: none;
|
945 |
}
|
946 |
.ui-state-hover,
|
948 |
.ui-widget-header .ui-state-hover,
|
949 |
.ui-state-focus,
|
950 |
.ui-widget-content .ui-state-focus,
|
951 |
+
.ui-widget-header .ui-state-focus,
|
952 |
+
.ui-button:hover,
|
953 |
+
.ui-button:focus {
|
954 |
+
border: 1px solid #cccccc;
|
955 |
+
background: #ededed;
|
956 |
font-weight: normal;
|
957 |
+
color: #2b2b2b;
|
958 |
}
|
959 |
.ui-state-hover a,
|
960 |
.ui-state-hover a:hover,
|
963 |
.ui-state-focus a,
|
964 |
.ui-state-focus a:hover,
|
965 |
.ui-state-focus a:link,
|
966 |
+
.ui-state-focus a:visited,
|
967 |
+
a.ui-button:hover,
|
968 |
+
a.ui-button:focus {
|
969 |
+
color: #2b2b2b;
|
970 |
text-decoration: none;
|
971 |
}
|
972 |
+
|
973 |
+
.ui-visual-focus {
|
974 |
+
box-shadow: 0 0 3px 1px rgb(94, 158, 214);
|
975 |
+
}
|
976 |
.ui-state-active,
|
977 |
.ui-widget-content .ui-state-active,
|
978 |
+
.ui-widget-header .ui-state-active,
|
979 |
+
a.ui-button:active,
|
980 |
+
.ui-button:active,
|
981 |
+
.ui-button.ui-state-active:hover {
|
982 |
+
border: 1px solid #003eff;
|
983 |
+
background: #007fff;
|
984 |
font-weight: normal;
|
985 |
+
color: #ffffff;
|
986 |
+
}
|
987 |
+
.ui-icon-background,
|
988 |
+
.ui-state-active .ui-icon-background {
|
989 |
+
border: #003eff;
|
990 |
+
background-color: #ffffff;
|
991 |
}
|
992 |
.ui-state-active a,
|
993 |
.ui-state-active a:link,
|
994 |
.ui-state-active a:visited {
|
995 |
+
color: #ffffff;
|
996 |
text-decoration: none;
|
997 |
}
|
998 |
|
1001 |
.ui-state-highlight,
|
1002 |
.ui-widget-content .ui-state-highlight,
|
1003 |
.ui-widget-header .ui-state-highlight {
|
1004 |
+
border: 1px solid #dad55e;
|
1005 |
+
background: #fffa90;
|
1006 |
+
color: #777620;
|
1007 |
+
}
|
1008 |
+
.ui-state-checked {
|
1009 |
+
border: 1px solid #dad55e;
|
1010 |
+
background: #fffa90;
|
1011 |
}
|
1012 |
.ui-state-highlight a,
|
1013 |
.ui-widget-content .ui-state-highlight a,
|
1014 |
.ui-widget-header .ui-state-highlight a {
|
1015 |
+
color: #777620;
|
1016 |
}
|
1017 |
.ui-state-error,
|
1018 |
.ui-widget-content .ui-state-error,
|
1019 |
.ui-widget-header .ui-state-error {
|
1020 |
+
border: 1px solid #f1a899;
|
1021 |
+
background: #fddfdf;
|
1022 |
+
color: #5f3f3f;
|
1023 |
}
|
1024 |
.ui-state-error a,
|
1025 |
.ui-widget-content .ui-state-error a,
|
1026 |
.ui-widget-header .ui-state-error a {
|
1027 |
+
color: #5f3f3f;
|
1028 |
}
|
1029 |
.ui-state-error-text,
|
1030 |
.ui-widget-content .ui-state-error-text,
|
1031 |
.ui-widget-header .ui-state-error-text {
|
1032 |
+
color: #5f3f3f;
|
1033 |
}
|
1034 |
.ui-priority-primary,
|
1035 |
.ui-widget-content .ui-priority-primary,
|
1064 |
}
|
1065 |
.ui-icon,
|
1066 |
.ui-widget-content .ui-icon {
|
1067 |
+
background-image: url("images/ui-icons_444444_256x240.png");
|
1068 |
}
|
1069 |
.ui-widget-header .ui-icon {
|
1070 |
+
background-image: url("images/ui-icons_444444_256x240.png");
|
|
|
|
|
|
|
1071 |
}
|
1072 |
.ui-state-hover .ui-icon,
|
1073 |
+
.ui-state-focus .ui-icon,
|
1074 |
+
.ui-button:hover .ui-icon,
|
1075 |
+
.ui-button:focus .ui-icon {
|
1076 |
+
background-image: url("images/ui-icons_555555_256x240.png");
|
1077 |
}
|
1078 |
+
.ui-state-active .ui-icon,
|
1079 |
+
.ui-button:active .ui-icon {
|
1080 |
+
background-image: url("images/ui-icons_ffffff_256x240.png");
|
1081 |
}
|
1082 |
+
.ui-state-highlight .ui-icon,
|
1083 |
+
.ui-button .ui-state-highlight.ui-icon {
|
1084 |
+
background-image: url("images/ui-icons_777620_256x240.png");
|
1085 |
}
|
1086 |
.ui-state-error .ui-icon,
|
1087 |
.ui-state-error-text .ui-icon {
|
1088 |
+
background-image: url("images/ui-icons_cc0000_256x240.png");
|
1089 |
+
}
|
1090 |
+
.ui-button .ui-icon {
|
1091 |
+
background-image: url("images/ui-icons_777777_256x240.png");
|
1092 |
}
|
1093 |
|
1094 |
/* positioning */
|
1095 |
.ui-icon-blank { background-position: 16px 16px; }
|
1096 |
+
.ui-icon-caret-1-n { background-position: 0 0; }
|
1097 |
+
.ui-icon-caret-1-ne { background-position: -16px 0; }
|
1098 |
+
.ui-icon-caret-1-e { background-position: -32px 0; }
|
1099 |
+
.ui-icon-caret-1-se { background-position: -48px 0; }
|
1100 |
+
.ui-icon-caret-1-s { background-position: -65px 0; }
|
1101 |
+
.ui-icon-caret-1-sw { background-position: -80px 0; }
|
1102 |
+
.ui-icon-caret-1-w { background-position: -96px 0; }
|
1103 |
+
.ui-icon-caret-1-nw { background-position: -112px 0; }
|
1104 |
+
.ui-icon-caret-2-n-s { background-position: -128px 0; }
|
1105 |
+
.ui-icon-caret-2-e-w { background-position: -144px 0; }
|
1106 |
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
1107 |
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
1108 |
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
1109 |
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
1110 |
+
.ui-icon-triangle-1-s { background-position: -65px -16px; }
|
1111 |
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
1112 |
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
1113 |
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
1117 |
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
1118 |
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
1119 |
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
1120 |
+
.ui-icon-arrow-1-s { background-position: -65px -32px; }
|
1121 |
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
1122 |
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
1123 |
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
1129 |
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
1130 |
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
1131 |
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
1132 |
+
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
|
1133 |
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
1134 |
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
1135 |
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
1278 |
.ui-corner-top,
|
1279 |
.ui-corner-left,
|
1280 |
.ui-corner-tl {
|
1281 |
+
border-top-left-radius: 3px;
|
1282 |
}
|
1283 |
.ui-corner-all,
|
1284 |
.ui-corner-top,
|
1285 |
.ui-corner-right,
|
1286 |
.ui-corner-tr {
|
1287 |
+
border-top-right-radius: 3px;
|
1288 |
}
|
1289 |
.ui-corner-all,
|
1290 |
.ui-corner-bottom,
|
1291 |
.ui-corner-left,
|
1292 |
.ui-corner-bl {
|
1293 |
+
border-bottom-left-radius: 3px;
|
1294 |
}
|
1295 |
.ui-corner-all,
|
1296 |
.ui-corner-bottom,
|
1297 |
.ui-corner-right,
|
1298 |
.ui-corner-br {
|
1299 |
+
border-bottom-right-radius: 3px;
|
1300 |
}
|
1301 |
|
1302 |
/* Overlays */
|
1303 |
.ui-widget-overlay {
|
1304 |
+
background: #aaaaaa;
|
1305 |
opacity: .3;
|
1306 |
filter: Alpha(Opacity=30); /* support: IE8 */
|
1307 |
}
|
1308 |
.ui-widget-shadow {
|
1309 |
+
-webkit-box-shadow: 0px 0px 5px #666666;
|
1310 |
+
box-shadow: 0px 0px 5px #666666;
|
1311 |
+
}
|
|
|
|
|
|
|
|
admin_section/css/main-style.css
CHANGED
@@ -370,7 +370,9 @@ padding-bottom: 10px;
|
|
370 |
float:left;
|
371 |
clear: both;
|
372 |
}
|
373 |
-
|
|
|
|
|
374 |
.saswp-amp .saswp-knowledge-field{
|
375 |
float: right;
|
376 |
width: 75%;
|
370 |
float:left;
|
371 |
clear: both;
|
372 |
}
|
373 |
+
label[for="saswp_archive_schema_type"] {
|
374 |
+
padding-left: 10px;
|
375 |
+
}
|
376 |
.saswp-amp .saswp-knowledge-field{
|
377 |
float: right;
|
378 |
width: 75%;
|
admin_section/css/main-style.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.saswp_review_form_toggle_check{margin:10px!important}.saswp-show-form-on-tab{padding:5px;display:inline-block;width:100%}.saswp-show-form-on-tab strong{display:inline-block;width:30%}.saswp-show-form-on-tab input{width:45%;text-align:center}.saswp-disable-btn-container{float:right;padding:10px}.saswp-disable-label{padding:10px;color:#999}.saswp-setup-schema-btn{margin:5px!important}.saswp-static-container .spinner{padding:5px;float:none;margin:0 auto;display:block}.saswp-item-list-div{display:flex;width:100%;align-items:center}.saswp-enable-modify-schema{padding-top:10px;padding-left:10px}.saswp-enable-modify-schema strong{margin-right:10px}.saswp-item-list-div{display:flex;width:100%;align-items:center}#saswp_item_list_tags{width:100%;margin-left:10px}#saswp_item_list_custom{width:100%;margin-left:10px}.saswp_warning{color:#ef6c00!important}.saswp_hide_imp{display:none!important}.saswp_hide{display:none}.saswp-general table th{width:auto;font-weight:600;padding:0}.saswp-general table{margin-top:0}.saswp-general table td{padding:5px}.saswp-knowledge table th{width:auto;padding:0}.saswp-knowledge table{margin-top:0}.saswp-knowledge table td{padding:5px}.saswp-schema table th{width:auto;padding:0}.saswp-schema table{margin-top:0}.saswp-schema table td{padding:5px}.saswp-amp table th{width:auto;padding:0}.saswp-amp table{margin-top:0}.saswp-amp table td{padding:5px}.saswp-help table th{width:auto;padding:0}.saswp-support table th{width:auto;padding:0}.saswp-review table th{width:auto;padding:0}.saswp-help table{margin-top:0}.saswp-help table td{padding:5px}.saswp-settings-list{display:inline-block;width:100%}.saswp-settings-list li{padding-left:0}.saswp-settings-list li div label{font-weight:600}.saswp-general h2{margin-bottom:0}.saswp-knowledge h2{margin-bottom:0}.saswp-schema h2{margin-bottom:0}.saswp-help h2{margin-bottom:0}.saswp-settings-form p.submit{margin-top:0}.saswp_qanda_p{font-weight:500}.saswp-display-none{display:none!important}.saswp-placement-groups{border:1px solid #e5e5e5}.saswp-query-success{color:#060}.saswp-query-error{color:#bf3322}.saswp-tools table th{width:auto;padding:0}.saswp-tools table{margin-top:0}.saswp-tools table td{padding:5px}.saswp-tools-field-title strong{padding-right:130px}.saswp-tools .saswp-tooltip{width:230px}.saswp-tools .saswp-knowledge-label{float:left}.saswp-error{color:red!important}.saswp-tooltip{position:relative;display:inline-block}.saswp-tooltip .saswp-tooltiptext{visibility:hidden;width:200px;background-color:#000;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:100%;left:50%;margin-left:-25px}.saswp-tooltiptext::after{content:"";position:absolute;top:100%;left:10%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#000 transparent transparent transparent}.saswp-knowledge-base .saswp-knowledge-label{width:200px;float:left;clear:both}.saswp-knowledge-base .saswp-knowledge-field{width:75%;float:right}.saswp-social-fileds ul{display:grid;grid-template-columns:26.5% 1fr}.saswp-social-fileds li{display:flex}.saswp-social-fileds .saswp-knowledge-field{width:100%;margin-left:10px}.saswp-social-fileds .saswp-knowledge-field input{float:right;margin:inherit}.saswp-schema-type-fields .saswp-knowledge-label{width:200px;float:left;clear:both}.saswp-schema-type-fields .saswp-knowledge-field{width:75%;float:right}.saswp-settings-first-div{width:75%}.saswp-settings-container{display:inline-flex;width:100%}.saswp-settings-second-div{float:right;position:relative;top:20px;margin-right:0;margin-top:37px}.saswp-feedback-panel{height:200px;width:280px;background:#fff;position:relative}.saswp-start-quck-setup{position:relative;float:inherit;top:7px;left:15px}.saswp-feedback-panel ul{list-style-type:circle;list-style:decimal;padding-left:30px;font-size:15px}.saswp-feedback-panel a{text-decoration:none}.saswp-feedback-panel h2{text-align:center;padding-top:18px}.saswp-social-sharing-buttons{text-align:center;padding-top:20px}.saswp-facebook-share{background:#3b5998;box-shadow:0 0 0 #1b95e0!important;color:#fff!important;line-height:20px!important;height:21px!important;border-radius:3px;margin-right:5px}.saswp-social-sharing-buttons a{text-align:center;padding:8px}.twitter-share-button{background:#1b95e0!important;box-shadow:0 0 0 #1b95e0!important;color:#fff!important;line-height:20px!important;height:21px!important;border-radius:3px;margin-left:5px}.saswp-placement-button{padding:3px 10px;color:#0d0d0d;font-size:14px;border:1px solid #aaa;border-radius:2px;background:linear-gradient(#ededed,#fff)}.saswp-placement-table td{padding:5px 10px!important}.saswp-archive-div .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-archive-div .saswp-knowledge-label{float:left;clear:both}.saswp-amp .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-amp .saswp-knowledge-label{float:left;clear:both}.saswp-review .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-review .saswp-knowledge-label{float:left;clear:both}.saswp-compativility-div .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-compativility-div .saswp-knowledge-label{float:left;clear:both}.saswp-compativility-div li{display:inline-flex}.saswp-seller-div .saswp-knowledge-label{float:left;clear:both}.saswp-seller-div .saswp-knowledge-field{float:left;width:70%}.saswp-post-specific-tab-wrapper{display:inline-block;width:25%;vertical-align:top;box-sizing:border-box}.saswp-post-specific-container{display:inline-block;width:calc(75% - 1px);border-left:1px solid #eee}.saswp-post-specific-wrapper{padding:10px}.saswp-tab a.selected{color:#555;background-color:#fff}.saswp-tab-links{display:block;padding:12px 14px;outline:0;text-align:left;cursor:pointer;transition:.3s;font-size:15px;width:100%;overflow:hidden;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee}#post_specific .inside{padding:0;margin:0}.saswp-star-rating{cursor:pointer}.saswp-post-specific-wrapper select{width:100%}.saswp-review-tables{width:100%}.saswp-over-all-raring{float:right}.saswp-review-pros-and-cons{position:relative;clear:both}.saswp-review-pros-and-cons>div:first{padding-left:10px}.saswp-review-pros-and-cons>div{width:49%;display:inline-block}.saswp-review-pros-and-cons>div:nth-child(2){padding-left:12px}.saswp-wp-ediot-desc{margin-bottom:-23px;display:block}.saswp-review-description{margin-top:40px;padding-top:10px;border-top:1px solid #eee}.saswp-review-pros-and-cons{margin-top:40px;padding-top:10px;border-top:1px solid #eee}.saspw-review-item-list{margin-top:20px;border-top:1px solid #eee}.saswp-review-item-list-table{padding-bottom:10px}#sasw-review input[type=text]{width:180px}#sasw-review input[type=number]{width:180px}#saswp-review-item-enable{width:10px}.saswp-enable-review-on-post{padding-bottom:10px}.saswp-enable-review-on-post label{font-weight:500}.saswp-compatibility table th{width:auto;padding:0}.saswp-compatibility .saswp-knowledge-label{float:left;clear:both}.saswp-tools .saswp-knowledge-label{float:left;clear:both}.saswp-tools .saswp-knowledge-field{float:right;width:69%;padding-bottom:10px}.saswp_kg_logo,.saswp_person_fields{background-color:#fff!important}.saswp_image_thumbnail{padding-top:5px;display:inline-block}.saswp-compatibility .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-job-posting-note,.saswp-schem-type-note{color:#d2691e}.saswp-custom-fields-name{border:1px solid #aaa;border-radius:4px}.saswp-option-table-class p{margin:auto;font-style:italic;color:#666}.saswp-switch{position:relative;display:inline-block;width:30px;height:16px;border:20px}.saswp-switch input{opacity:0;width:0;height:0}.saswp-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#b5b5b5;transition:.4s;border-radius:20px}.saswp-slider:before{position:absolute;content:"";height:10px;width:10px;left:2px;bottom:3px;background-color:#fff;transition:.4s;border-radius:20px}input:checked+.saswp-slider{background-color:#00a0d2;border-radius:30px}input:focus+.saswp-slider{box-shadow:0 0 1px #2196f3}input:checked+.saswp-slider:before{transform:translateX(15px)}.saswp-slider.saswp-round{border-radius:34px}.saswp-slider.saswp-round:before{border-radius:50%}.saswp-tab-nav{background-color:#f9f9f9;margin-top:0}.saswp-tab-nav li{display:flex;align-items:center;justify-content:space-between;margin-bottom:0}.saswp-tab-nav .selected{width:100.5%;z-index:9999}.saswp-single-post-restore .saswp-switch{height:28px}.saswp-single-post-restore .saswp-slider:before{height:20px}.option-table-class{width:100%}.option-table-class tr td{padding:10px 10px 10px 10px}.option-table-class tr>td{width:30%}.option-table-class tr td:last-child{width:60%}.saswp-custom-fields-table{width:100%}.saswp-custom-fields-table input{width:100%}.saswp-custom-fields-table tr td{padding:10px 10px 10px 10px}.saswp-custom-fields-table td{width:30%;vertical-align:top}.saswp-option-table-class input[type=text],.saswp-option-table-class select{width:100%}.saswp-paywall-table-class input[type=text],.saswp-paywall-table-class select{width:100%}.saswp-email_schema table th{width:auto;padding:0}.saswp-email_schema .saswp-knowledge-label{float:left;clear:both}.saswp-email_schema .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-add-on-plugin label{margin-top:10px}.saswp-add-on-plugin span{width:250px;display:inline-block}.saswp-knowledge-label label[for=saswp_search_box_schema_checkbox]{padding-left:10px}.saswp-knowledge-label label[for=saswp-woocommerce-booking-checkbox]{padding-left:10px}.saswp-knowledge-label label[for=saswp-woocommerce-membership-checkbox]{padding-left:10px}.saswp-global-selected{border-bottom:1px solid #f1f1f1;background:#f1f1f1;color:#000;font-weight:500;margin-bottom:-1px}#saswp-global-tabs a{cursor:pointer}#saswp-global-tabs{padding-left:5px}#saswp-tools-tabs a{cursor:pointer}#saswp-review-tabs a{cursor:pointer}#saswp-tools-tabs{padding-left:5px}.saswp-need-help{padding-left:60px}.saswp-heading{display:inline-flex;align-items:baseline}.saswp-heading h2{margin-bottom:0}.saswp-view-docs a{margin-right:5px!important;margin-top:10px!important;float:right}.saswp-tabs .nav-tab{margin-left:4px}.saswp-panel{padding:7px 18px;background-color:#fff;box-shadow:0 0 20px 1px #d2cccc}.saswp-g-review-header{margin-top:50px}.saswp-g-review-body{display:inline-grid;grid-template-columns:1fr 300px;grid-gap:30px;margin-top:30px}.saswp-channel-list{margin-right:15px}.saswp-input-fields{display:inline-flex;align-items:center;margin-bottom:8px;width:100%}.saswp-input-fields label{width:130px}.saswp-input-fields select{width:100%}.saswp-panel h3{font-size:20px;line-height:1.4;color:#222;text-align:center;margin:10px 0 20px 0}.saswp-input-fields a.button-primary{margin-top:10px}.saswp-glg-review-body{display:grid;grid-template-columns:100px 1fr;grid-gap:20px;background:#fff;padding:20px;box-shadow:0 0 20px 1px #d2cccc;margin-bottom:30px}.saswp-g-plus{float:right;font-size:15px}.saswp-rtng{padding-left:5px;font-size:14px}.saswp-pt-dt{font-size:12px;color:#999;font-weight:600;margin-top:5px;display:inline-block}.saswp-str{display:inline-block;width:100%;vertical-align:middle}.saswp-athr{font-size:15px;line-height:1.4;color:#000;font-weight:700;display:inline-block;vertical-align:middle}.saswp-r5-rng .saswp-rvw-str{display:inline-block;vertical-align:middle;padding-left:10px;width:auto}.saswp-rv-cnt p{font-size:16px;line-height:1.6;color:#000;margin:10px 0 0 0}.saswp-rv-img img{max-width:100px;border-radius:100%}.saswp-premium_features table th,.saswp-services table th{width:auto;padding:0}.saswp-features-blocks{display:inline-grid;grid-template-columns:1fr 1fr;grid-gap:20px}.saswp-features-blocks li{background:#fff;padding:25px;border:1px solid #d8d8d8}.saswp-features-blocks li a{text-decoration:none}.saswp-ele-ic{border-radius:256px;display:inline-block;padding:8px 10px 8px 10px;width:70px;margin-right:20px;height:70px;float:left}.saswp-ele-ic img{width:80%;left:10%;position:relative;top:9%}.saswp-ele-1{background:#96588a}.saswp-ele-2{background:#00a97e}.saswp-ele-3{background:#cacaca}.saswp-ele-4{background:#9c56cc}.saswp-ele-tlt h3{margin:0;font-size:18px;line-height:1.4}.saswp-ele-tlt p{margin-top:10px}.saswp-sts-btn{box-sizing:border-box;height:52px;margin-top:20px;padding:6px 15px;border:1px solid #e5e5e5;border-radius:3px;display:flex;align-items:center;justify-content:space-between}.saswp-d-btn{background:#d2150a;padding:6px 18px;border-radius:30px;font-size:14px;color:#fff}.form-wrap .saswp-sts-txt{font-size:16px;color:#000}.saswp-sts-txt span{color:#bebfc0;padding-left:5px}.saswp_review_platform .saswp-g-plus{float:left}.saswp-pc-wrap{background-color:#004f74;padding:15px 15px 15px 30px;color:#fff;display:inline-flex;width:100%;flex-wrap:wrap;margin-bottom:20px}.saswp-pc-wrap .saswp-lst span{font-size:18px;font-weight:500;margin-bottom:10px;display:inline-block;line-height:1.3}.saswp-pc-wrap .saswp-lst{flex:1 0 42%}.saswp-pc-wrap .saswp-lst ul{margin:0}.saswp-pc-wrap .saswp-lst p{list-style-type:none;font-size:15px;font-weight:lighter;line-height:1.2;margin-bottom:10px;position:relative;padding-left:20px;color:#eee}.saswp-pc-wrap .saswp-lst p:before{content:'';position:absolute;width:8px;height:8px;background-color:#ccc;left:0;top:6px;border-radius:10px}.sgl .saswp-rvw{width:100%;margin-bottom:34px;font-size:13px;border-bottom:1px solid #ededed}.saswp-rvw-hd span,.saswp-rvw-sm span{background-color:#222;color:#fff;display:inline-block;font-size:15px}.saswp-rvw-hd span{line-height:1.4;padding:8px 12px 6px;margin:26px 0}.saswp-rvw td{padding:7px 14px}.saswp-rvw td,.sgl table td{border:1px solid #ededed}.saswp-rvw tbody{width:100%}.saswp-rvw-sm span{padding:8px 12px 6px;margin-bottom:13px;position:relative;line-height:1.2}.saswp-rvw-fs{line-height:1.5;font-size:48px;font-weight:600;margin-bottom:5px}.saswp-rvw-ov .ovs{font-size:11px;font-weight:600}.sgl .saswp-rvw tr td{background:#fff;width:100%}.sgl .saswp-rvw tr:hover td{background-color:#fcfcfc}.saswp-rvw .saswp-rvw-sm{padding:21px 14px}.str-ic{font-size:18px;line-height:1.2}.saswp-rvw-str{display:inline-flex;width:100%;margin-top:5px}.saswp-rvw-str .df-clr,.saswp-rvw-str .half-str,.saswp-rvw-str .str-ic{display:inline-block;width:20px;height:16px;background-repeat:no-repeat}.saswp-rvw-ov{text-align:center}.saswp-rvw-str .half-str{background-image:url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0ODIuMjA3IDQ4Mi4yMDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4Mi4yMDcgNDgyLjIwNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cGF0aCBkPSJNNDgyLjIwNywxODYuOTczbC0xNTkuNjk5LTMzLjcwNUwyNDEuMTA0LDExLjgwM2wtODEuNDA0LDE0MS40NjVMMCwxODYuOTczbDEwOS4zODgsMTIxLjEzNEw5Mi4wOTQsNDcwLjQwNGwxNDkuMDEtNjYuNiAgbDE0OS4wMSw2Ni42bC0xNy4yOTQtMTYyLjI5Nkw0ODIuMjA3LDE4Ni45NzN6IE0yNDEuMTA0LDM3MC45NDNWNzEuOTUzbDYyLjA5LDEwNy45TDQyNSwyMDUuNTYxbC04My40MzMsOTIuMzkzbDEzLjE5MSwxMjMuNzg4ICBMMjQxLjEwNCwzNzAuOTQzeiIgZmlsbD0iI2ZmZDcwMCIvPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K)}.saswp-rvw-str .str-ic{background-image:url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0ODIuMjA3IDQ4Mi4yMDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4Mi4yMDcgNDgyLjIwNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cG9seWdvbiBwb2ludHM9IjQ4Mi4yMDcsMTg2Ljk3MyAzMjIuNTA4LDE1My4yNjkgMjQxLjEwNCwxMS44MDMgMTU5LjY5OSwxNTMuMjY5IDAsMTg2Ljk3MyAxMDkuMzg4LDMwOC4xMDggOTIuMDk0LDQ3MC40MDQgICAyNDEuMTA0LDQwMy44MDMgMzkwLjExMyw0NzAuNDA0IDM3Mi44MTgsMzA4LjEwOCAiIGZpbGw9IiNmZmQ3MDAiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==)}.saswp-rvw-str .df-clr{background-image:url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0ODIuMjA3IDQ4Mi4yMDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4Mi4yMDcgNDgyLjIwNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cG9seWdvbiBwb2ludHM9IjQ4Mi4yMDcsMTg2Ljk3MyAzMjIuNTA4LDE1My4yNjkgMjQxLjEwNCwxMS44MDMgMTU5LjY5OSwxNTMuMjY5IDAsMTg2Ljk3MyAxMDkuMzg4LDMwOC4xMDggOTIuMDk0LDQ3MC40MDQgICAyNDEuMTA0LDQwMy44MDMgMzkwLjExMyw0NzAuNDA0IDM3Mi44MTgsMzA4LjEwOCAiIGZpbGw9IiM2MzVlNjMiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==)}.saswp-g-review-header{margin-top:50px}.saswp-g-review-body{display:inline-grid;grid-template-columns:1fr 300px;grid-gap:30px;margin-top:30px;width:100%}.saswp-channel-list{margin-right:15px}.saswp-input-fields{display:inline-flex;align-items:center;margin-bottom:8px;width:100%}.saswp-input-fields label{width:130px}.saswp-panel h3{font-size:20px;line-height:1.4;color:#222;text-align:center;margin:10px 0 20px 0}.saswp-input-fields a.button-primary{margin-top:10px}.saswp-glg-review-body{display:grid;grid-template-columns:100px 1fr;grid-gap:20px;background:#fff;padding:20px;box-shadow:0 0 20px 1px #d2cccc;margin-bottom:30px}.saswp-g-plus{float:right;font-size:15px;width:20px;height:20px}.saswp-g-plus img{max-width:100%}.saswp-rtng{padding-left:5px;font-size:14px}.saswp-pt-dt{font-size:12px;color:#999;font-weight:600;margin-top:5px;display:inline-block}.saswp-athr{font-size:15px;line-height:1.4;color:#000;font-weight:700}.saswp-rv-cnt p{font-size:16px;line-height:1.6;color:#000;margin:10px 0 0 0}.saswp-rv-img img{max-width:100px}.saswp-g-review-header div{margin-top:10px}.saswp-upgrade-pro{background:#fff;padding:25px;border:1px solid #d8d8d8;display:inline-block;margin-top:10px;width:100%;box-sizing:border-box}.saswp-upgrade-pro h2{font-size:20px;margin:0;color:#23282d;font-weight:600;text-align:center}.saswp-upgrade-pro ul{margin:25px 0 20px 0;display:inline-block}.saswp-upgrade-pro ul li{position:relative;padding-left:30px;font-size:14px;line-height:1.4;margin-bottom:10px}.saswp-upgrade-pro ul li:before{content:"";background-image:url(../images/check.png);background-repeat:no-repeat;background-size:20px;width:20px;height:20px;position:absolute;left:2px;top:2px}.saswp-upgrade-pro a{background:#d2150a;padding:10px 0;display:block;text-align:center;color:#fff;text-decoration:none;font-size:16px;font-weight:600;letter-spacing:1px;border-radius:5px}.saswp_image_prev{max-width:200px;max-height:200px;float:left;padding-left:2px}.saswp_prev_close{position:relative;width:30px;height:30px;top:12px;font-size:20px;top:-5px;text-decoration:none}.saswp-add-custom-schema-div{margin-top:10px;border-top:1px solid #eee;padding-top:5px}.saswp-nav-menu-list label{padding-left:10px}.saswp-dynamic-properties{border:1px solid #aaa;margin-top:5px;margin-bottom:5px}.saswp-table-close{float:right;cursor:pointer}.saswp-table-create-onajax table td,.saswp-table-create-onajax table th{padding:5px}.saswp-table-create-onajax select{width:98%}.saswp-g-reviews-settings-table input{width:100%}.saswp-s-reviews-settings-table input{width:100%}.saswp_rv_module_pro_notice{border:1px solid #d8d8d8;background:#fff}.saswp-settings-list .saswp-rev-mod{width:100%;display:inline-block;margin-top:20px}.saswp-rev-mod .saswp-knowledge-label{width:100%;display:inline-block;padding:10px 16px;font-weight:600;font-size:16px;color:#333;background:#f9f9f9;border:1px solid #d8d8d8;border-bottom:none;box-sizing:border-box}.saswp-rev-mod .saswp-knowledge-field{width:100%;display:inline-block}.saswp-rev-mod .saswp_rv_module_pro_notice{padding:20px}.saswp_cmpny_lst{width:100%;display:inline-block;margin-top:30px}.saswp_rv_module_pro_notice ul{margin:15px 0 20px 0;width:100%;display:inline-grid;grid-template-columns:1fr 1fr 1fr;grid-gap:20px;border-bottom:1px solid #eee;padding-bottom:20px}.saswp_rv_module_pro_notice ul li{position:relative;font-size:15px;line-height:1.5;color:#444;margin:0}.saswp_rv_module_pro_notice ul li span{padding-left:3px}.saswp_rv_module_pro_notice h2{text-align:center;font-size:31px}.saswp_rv_module_pro_notice .saswp_desc{text-align:center;font-size:18px;font-style:normal;color:#000}.saswp_rv_module_pro_notice .saswp_desc a{font-style:italic}.saswp_rv_module_pro_notice .saswp_lst{color:grey;font-family:georgia;font-style:italic;font-style:italic;font-size:15px;font-weight:600}.saswp_rv_module_pro_notice .saswp_avlbl{color:#2a902e;font-family:georgia;font-style:italic;font-size:15px;font-weight:600}.saswp_rv_module_pro_notice ul li img{width:20px;height:20px;position:relative;top:4px}.saswp-rev-btn{width:100%;display:inline-block;margin-top:20px;text-align:center}.saswp-rev-btn span{display:block;font-size:13px;margin-bottom:15px}.saswp-rev-btn a{padding:12px 18px;display:inline-block;text-decoration:none;border-radius:5px;background:#0085ba;color:#fff;font-weight:600;font-size:18px}.select2-container{width:100%!important}.saswp-schema-modify-section{margin-top:15px;border-top:1px solid #eee;padding-top:15px}.saswp-custom-meta-list{border:1px solid #aaa;border-radius:4px}.saswp-custom-fields-table tr td:nth-child(3n+3) input{border:1px solid #aaa;border-radius:4px}.updated.notice p{display:flex;width:100%;align-items:center}.updated.notice .dashicons-thumbs-up{margin-right:10px}a.saswp-feedback-no-thanks,a.saswp-feedback-remindme{display:inline-block;cursor:pointer}.saswp-feedback-remindme:after{content:",";display:inline-block;margin-right:5px}a.saswp-revws-lnk{display:inline-block;background:#0085ba;padding:12px 20px;color:#fff;text-decoration:none;border-radius:3px;margin-left:20px;font-size:14px;line-height:.6}.saswp-update-notice-btns{display:inline-block;width:100%;margin-bottom:5px}.saswp-about-contact-page{width:75%;float:right}.saswp-about-contact-page-tooltip{float:left;clear:both}.saswp-quick-setup{float:left}.saswp_add_schema_fields_on_fly{margin-bottom:5px!important}.saswp-custom-fields-table .saswp_image_prev{max-width:62px!important}.saswp-custom-fields-table .saswp_prev_close{font-size:15px}.saswp-review-content-table td:nth-child(2){width:50%;float:left}.saswp-review-content-table input{width:100%}.saswp-review-content-table select{width:100%}.saswp-review-content-table textarea{width:100%}.saswp-social-links-table{width:100%}.saswp-social-links-table input{width:100%}.saswp-add-social-links{margin:3px!important}.saswp-social-links-table td{padding-left:0!important}#saswp-compatibility-tabs a{cursor:pointer}.saswp-grid-pagination{display:inline-block;padding:20px}.saswp-grid-pagination a{color:#000;float:left;padding:8px 16px;text-decoration:none}.saswp-grid-pagination a.active{background-color:#4caf50;color:#fff}.saswp-grid-pagination a:hover:not(.active){background-color:#ddd}.saswp-collection-body{width:100%;display:flex;flex-wrap:wrap}.saswp-collection-lp{flex:1 0 68%;margin-right:20px;width:68%;background:#fff;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);padding-bottom:22px}.saswp-collection-settings{flex:1 0 27%;height:100%;width:28%}.saswp-collection-container{margin-top:60px;width:100%;display:inline-block;padding-right:20px;box-sizing:border-box}.saswp-collection-preview-table{width:100%}.saswp-collection-preview-table td{width:30%}.saswp-platform-added-list{display:inline-block;width:100%;margin-top:10px}.saswp-collection-title input{width:100%;padding:3px 8px;font-size:15px;line-height:2;height:1.7em;outline:0;margin:0 0 3px;background-color:#fff;color:#32373c}.saswp-collection-title{margin-bottom:10px;padding:10px;background:#f5f5f5;border-bottom:1px solid #ddd}.saswp-collection-preview{padding:0 30px}.saswp-r1{margin-bottom:50px;text-align:center}.saswp-r1 ul{padding:0;list-style-type:none;display:grid;width:100%;grid-template-columns:1fr 1fr 1fr;grid-gap:15px;margin:0}.saswp-r1 li{padding:20px;position:relative;color:#777;border:1px solid #ededed;background-color:#fafafa;border-radius:4px;margin:0}.saswp-rc{display:flex;width:100%;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;position:relative}.saswp-r1 .saswp-rc-lg{position:absolute;right:-5px}.saswp-r1-aimg img{float:left;max-width:56px;min-height:56px;max-height:56px;border-radius:100px}.saswp-rc-a>img{max-width:56px;min-height:56px;max-height:56px;margin-right:10px;border-radius:100px}.saswp-rc-lg img{width:20px;height:20px;border-radius:100px}.saswp-rc-nm a{text-decoration:none;color:#427fed;font-size:16px;font-weight:600;display:inline-block;line-height:1.1;letter-spacing:0;width:80%;text-align:left}.saswp-rc-dt{margin-top:5px;font-size:12px;line-height:1.2;color:#999;display:block}.saswp-rc-a{flex:1 0 85%;display:flex;justify-content:flex-start}.saswp-rc-nm{width:100%;margin-left:10px}.saswp-rc-cnt{position:static;height:80px;overflow-y:auto;font-size:14px;line-height:1.6;text-align:left;padding:0 2px 0 0;margin:10px 0 0}.saswp-r2-strs{text-align:center}.saswp-rc-cnt p{margin:0}.saswp-rc-cnt::-webkit-scrollbar{width:4px;display:inline-block}.saswp-rc-cnt::-webkit-scrollbar-thumb{-webkit-border-radius:10px;border-radius:10px;background:#ccc;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}.saswp-rc-cnt::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);-webkit-border-radius:4px;border-radius:4px}.saswp-collection-settings{border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04)}.saswp-collection-settings ul{margin:0;padding:0}.saswp-collection-settings ul li{border-bottom:1px solid #ddd;margin:0;position:relative}.saswp-dp-dsg{display:inline-grid;grid-template-columns:1fr 2fr;width:100%;grid-gap:0 5px;align-items:center;color:#666}.saswp-dp-dtm{margin-top:13px}.saswp-slider-display{margin-top:15px}.wp-admin .saswp-collection-settings select{margin:0;min-height:30px;max-height:30px;max-width:100%}.saswp-slider-display span{width:30%;display:inline-block}.saswp-collection-settings ul li a{padding:12px 15px;background:#fff;color:#23282d;cursor:pointer;width:100%;border:none;text-align:left;font-size:14px;line-height:1.5;font-weight:600;transition:all .5s ease-in-out 0s;display:block;box-sizing:border-box;position:relative}.saswp-collection-settings ul li input{width:100%}.saswp-collection-settings ul li input[type=checkbox]{width:16px}.saswp-collection-settings ul li a.active,.saswp-collection-settings ul li a:hover{background:#f5f5f5}.saswp-accordion.active+.saswp-accordion-panel{border-top:1px solid #ddd}.saswp-plf-lst-rv-cnt{display:inline-grid;width:100%;flex-wrap:wrap;grid-template-columns:180px 57px 1fr;grid-gap:5px}.saswp-accordion-panel{padding:15px 18px;display:none;background-color:#fff;overflow:hidden;border-top:1px solid #ddd}.saswp-collection-settings a.saswp-add-to-collection{text-align:center;height:30px;font-weight:400;position:relative;top:1px;line-height:27px}.wp-core-ui a.button.saswp-remove-platform{background:0 0;border:none;padding:0;margin-left:6px;min-height:0}.wp-core-ui a.button.saswp-remove-platform:hover{color:#c00}.wp-core-ui a.button.saswp-remove-platform:after{content:"\f153";display:block;font:normal 16px/20px dashicons}.cancel-btn{margin-right:10px;margin-bottom:5px;float:left;display:inline-flex}.wp-admin .saswp-accordion-panel select.saswp-collection-desing{width:100%}.saswp-slider-display.saswp-desing-options{margin-top:10px}.saswp-slider-display.saswp-desing-options span{margin-right:10px;display:inline-block}.saswp-collection-settings li a.saswp-accordion:after{content:"\f140";font:normal 20px/1 dashicons;speak:none;display:block;position:absolute;color:#72777c;top:13px;right:18px}.saswp-collection-settings li a.saswp-accordion.active:after{content:"\f142";top:13px}.saswp-sv-btn{background:#f5f5f5;padding:8px 10px;text-align:right;width:100%;box-sizing:border-box}.saswp-collection-settings .button-primary{width:89px;margin:0;display:inline-block;padding:2px 0}.saswp-collection-shortcode{color:#555;margin-top:10px;padding:4px;background:#f1f1f1;display:inline-block;border:1px solid #ddd}.saswp-rd3-warp ul{padding:0;display:grid;grid-template-columns:1fr 1fr 1fr 1fr;grid-gap:30px;list-style-type:none;margin:0;justify-content:center}.saswp-rd3-warp li{box-shadow:0 2px 5px 0 rgba(0,0,0,.26);margin:0}.saswp-rd3-warp li a{text-decoration:none}.saswp-r3-lg{background:#ededed;display:flex;align-items:center;justify-content:center;width:100%;padding:6px 8px;box-sizing:border-box}.saswp-r3-lg span img{width:18px;height:18px;margin-right:10px}.saswp-r3-lg span{line-height:0}.saswp-r3-lg .saswp-r3-tlt{font-size:12px;line-height:1.4;text-transform:uppercase;color:#555;font-weight:400}.saswp-lg{line-height:0}.saswp-r3-rtng{padding:13px 10px 10px 10px;background:#fff;border-radius:0 0 3px 3px;text-align:center}.saswp-r3-rtxt{display:flex;align-items:center;line-height:0;width:100%;margin-bottom:10px;justify-content:center}.saswp-r3-rtxt .saswp-r3-num{color:#23282d;margin-right:5px;font-size:22px;font-weight:500;position:relative;top:2px;word-break:normal}.saswp-rd3-warp .saswp-rvw-str .df-clr,.saswp-rd3-warp .saswp-rvw-str .half-str,.saswp-rd3-warp .saswp-rvw-str .str-ic{display:inline-block;width:22px;height:22px;background-repeat:no-repeat;background-size:22px;margin-right:3px}.saswp-r3-brv{color:#666;font-size:13px;line-height:1}.saswp-r5{position:fixed;bottom:20px;width:calc(100% - 20px);max-width:325px;border-radius:12px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 0 8px 0 rgba(0,0,0,.05);transition:all .3s ease-in;display:none}.saswp-r5 .saswp-rvw-str .df-clr,.saswp-r5 .saswp-rvw-str .half-str,.saswp-r5 .saswp-rvw-str .str-ic{display:inline-block;width:23px;height:20px;background-repeat:no-repeat;background-size:20px}.saswp-r5-r .saswp-r5-rng .saswp-rvw-str{padding-left:0;margin-bottom:3px}.saswp-r5-r{display:flex;flex-wrap:wrap;width:100%;align-items:center;height:80px}.saswp-r5-rng{flex:1 0 60%;padding-left:15px}.saswp-r5-lg{width:80px;height:100%;border-right:1px solid #ddd;box-sizing:border-box;background:linear-gradient(to bottom,#fefefe 0,#f2f2f2 100%);position:relative;display:flex;align-items:center;border-radius:12px 0 0 12px}.saswp-r5-r .saswp-r5-lg span{border-radius:10px 0 0 10px}.saswp-r5-r .saswp-r5-lg img{position:relative;max-width:40px;max-height:40px;left:20PX;border-radius:10px 0 0 10px;top:2px}.saswp-r5-txrng{font-size:12px;line-height:1.2;color:#444;display:flex;margin-bottom:5px}.saswp-r5-txrng span{font-weight:600;color:#666;margin-right:5px}.saswp-r5-rng span.saswp-r5-dt{display:block;font-size:11px;color:#ababab;font-weight:400}.saswp-r5 a{text-decoration:none}.saswp-popup-btn{position:fixed;top:auto;bottom:0;font-family:Arial,sans-serif;z-index:9;box-shadow:0 20px 40px 8px rgba(0,0,0,.25);width:300px;background:#fff;border:none;padding:0}.saswp-open-class.saswp-popup-btn{width:300px}#saswp-reviews-cntn{display:none}#saswp-sticky-review .saswp-open-class #saswp-reviews-cntn{width:100%}.saswp-opn-cls-btn{display:flex;height:50px;justify-content:space-between;align-items:center;background:#fba306;width:100%;padding:0 15px;border-radius:4px 4px 0 0;cursor:pointer;box-sizing:border-box}.saswp-opn-cls-btn svg path{fill:#fff}.saswp-opn-cls-btn span{font-size:15px;font-weight:600;color:#fff}.saswp-onclick-hide,.saswp-onclick-show{display:flex;justify-content:space-between;width:100%}.saswp-r4-info ul{list-style-type:none;padding:0;margin:0;text-align:left;height:350px;overflow-y:scroll}.saswp-r4-info ul li{border-bottom:1px solid #e4e4e4;padding:20px}.saswp-r4-b{display:flex;align-items:center;justify-content:flex-start;width:100%}.saswp-r4-b .saswp-r4-str{margin-right:10px}.saswp-r4-b span.saswp-r4-tx{font-size:14px;color:#444}.saswp-r4-b span.saswp-r4-nm:after{content:"-";display:inline-block;margin:0 10px}.saswp-r4-info .saswp-rvw-str .df-clr,.saswp-r4-info .saswp-rvw-str .half-str,.saswp-r4-info .saswp-rvw-str .str-ic{display:inline-block;width:22px;height:20px;background-repeat:no-repeat;background-size:18px}.saswp-r4-cnt h3{margin:10px 0 8px 0!important;font-size:18px;color:#333;font-weight:500}.saswp-r4-cnt p{font-size:13px;line-height:1.5;margin:0;color:#333}.saswp-r4-info ul li.saswp-r4-r{display:flex;width:100%;align-items:center;text-align:center;justify-content:center;box-sizing:border-box}.saswp-r4-info ul li span.saswp-r4-rnm{margin-left:10px;font-size:18px;color:#666}.btn .saswp-onclick-hide,.btn.saswp-open-class .saswp-onclick-show{display:flex;justify-content:space-between;width:100%}.btn .saswp-onclick-show,.btn.saswp-open-class .saswp-onclick-hide{display:none}span.saswp-mines{line-height:0}.saswp-mines:before{content:"";display:inline-block;width:20px;height:4px;background:#fff;position:relative;top:5px}.saswp-rd2-warp{width:100%;display:inline-block;margin-bottom:50px}.saswp-rd2-warp div{width:350px;margin-right:25px}.saswp-rd2-warp .saswp-rc-cnt{white-space:initial}.saswp-rd2-warp .saswp-r2-b{position:relative;color:#777;border:1px solid #ededed;background-color:#fafafa;border-radius:4px}.saswp-rd2-warp .saswp-rc-cnt{height:150px;margin:20px 20px 20px 40px}.saswp-rd2-warp .saswp-rc{padding:20px}.saswp-r2-b .saswp-r2-s{display:inline-block}.saswp-r2-b .saswp-rc-cnt p{display:inline}.saswp-r2-b .saswp-rc-lg{line-height:0;position:absolute;right:13px;top:13px;background:#fafafa}.saswp-r2-q svg{width:20px;fill:#bbb;position:absolute;height:30px;top:15px;left:12px}.saswp-rd2-warp .saswp-r2-b:before{position:absolute;bottom:-8px;left:35px;display:block;width:14px;height:14px;border:1px solid #ededed;border-top:none;border-left:none;background-color:#fafafa;content:"";-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.carousel-preview{text-align:center}.carousel-preview button{width:12px;height:12px;border-radius:100px;border:none;margin:0 5px;cursor:pointer}.carousel-preview button.saswp-active{background:#427fed}.saswp-cst .saswp-cs{width:100%;max-width:640px;margin:0 auto;overflow:hidden;position:relative}.saswp-r2-b{padding:20px 40px 20px 40px;background-color:#fafafa;position:relative;color:#777;border:1px solid #ededed;border-radius:4px;box-sizing:border-box}.saswp-cst .saswp-rc{padding:20px;box-sizing:border-box}.saswp-si .saswp-r2-b:before{position:absolute;bottom:-8px;left:35px;display:block;width:14px;height:14px;border:1px solid #ededed;border-top:none;border-left:none;background-color:#fafafa;content:"";-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.saswp-si .saswp-rc-cnt{margin:0}.saswp-cs .saswp-slider-controls{width:100%;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;z-index:9;position:relative;top:10px}.saswp-slider-controls a.saswp-slider-prev-btn{position:absolute;left:10px;bottom:0;background:rgba(0,0,0,.5);line-height:0;border-radius:100px;width:30px;height:30px}.saswp-slider-controls a.saswp-slider-prev-btn:before{content:"";display:inline-block;width:6px;height:6px;border:2px solid #fff;border-top:none;border-left:none;transform:rotate(135deg);position:relative;top:11px;left:12px}.saswp-slider-controls a.saswp-slider-next-btn{position:absolute;right:10px;bottom:0;background:rgba(0,0,0,.5);line-height:0;border-radius:100px;width:30px;height:30px}.saswp-slider-controls a.saswp-slider-next-btn:after{content:"";display:inline-block;width:6px;height:6px;border:2px solid #fff;border-top:none;border-left:none;transform:rotate(135deg);transform:rotate(-45deg);position:relative;top:11px;right:-9px}.saswp-si .saswp-rc-lg img{width:25px;height:25px}.saswp-cs .saswp-slider-dots .saswp-dot{width:10px;height:10px;background:#ccc;transition:.15s ease-in-out;border-radius:8px;cursor:pointer;margin:0 12px}.saswp-cs .saswp-slider-dots .saswp-dot.saswp-active{background:#0071a1}.saswp-cst .saswp-sic .saswp-si{width:100vw;max-width:640px;display:block}.spinner.saswp-spinner{float:none;margin:0 auto;display:block}.saswp-cct .saswp-cs{width:100%;max-width:800px;margin:0 auto;overflow:hidden;position:relative}.saswp-cct .saswp-sic .saswp-si{width:100%;max-width:800px;display:flex}.saswp-cct .saswp-r2-sli{width:100%;margin-right:20px;max-width:40%}.saswp-cct .saswp-rc{padding:20px 10px;box-sizing:border-box}.saswp-cct .saswp-rc-cnt{height:120px}.saswp-cs .saswp-sic{display:flex;flex-wrap:wrap;height:auto;transition:transform .35s ease-in-out}.saswp-cs .saswp-slider-controls a{color:#333;text-decoration:none;transition:.15s ease-in-out}.saswp-cs .saswp-slider-controls a:hover{color:#888}.saswp-cs .saswp-slider-dots{width:100%;display:flex;justify-content:center;margin:0 auto;position:relative;top:-10px}.saswp-onclick-show{display:none}.saswp-dp-dsg.saswp_hide{display:none}@media(max-width:1200px){.saswp-plf-lst-rv-cnt{grid-template-columns:1fr}}@media(max-width:767px){.saswp-collection-lp{flex:1 0 100%;margin-right:0;width:100%}.saswp-collection-settings{flex:1 0 100%;height:100%;width:100%}.wp-admin .saswp-collection-settings select{max-width:100%}}.saswp-upgrade-pro h2{font-size:20px;margin:0;color:#23282d;font-weight:600;text-align:center}.saswp-upgrade-pro ul{margin:25px 0 20px 0;display:inline-block}.saswp-upgrade-pro ul li{position:relative;padding-left:30px;font-size:14px;line-height:1.4;margin-bottom:10px}.saswp-upgrade-pro a{background:#d2150a;padding:10px 0;display:block;text-align:center;color:#fff;text-decoration:none;font-size:16px;font-weight:600;letter-spacing:1px;border-radius:5px}.saswp-settings-second-div .saswp-upgrade-pro.promo-cpn{display:block}.saswp-upgrade-pro.promo-cpn{border:1px solid #558b2f}.saswp-hide{display:none}.saswp-settings-second-div .saswp-upgrade-pro.promo-cpn{display:block;margin:0}.saswp-upgrade-pro.promo-cpn{border:1px solid #558b2f;border-radius:8px}.saswp-upgrade-pro.promo-cpn h2{color:#2e7d32;font-size:24px;text-align:center;margin:0 0 20px 0}.saswp-upgrade-pro.promo-cpn span{text-align:center;font-size:14px;display:inline-block;color:#777;padding:0 20px;box-sizing:border-box;line-height:1.4;font-weight:400}.saswp-promo{font-size:20px;margin-top:15px;width:100%;text-align:center}.saswp-upgrade-pro.promo-cpn .prm-txt{display:block;line-height:1}.saswp-upgrade-pro.promo-cpn .saswp-promo .prm-cpn{border:1px dashed #1b5e20;border-radius:100px;margin-top:5px;color:#388e3c;font-size:20px;padding:2px 15px 2px 15px}.saswp-upgrade-pro a{background:#43a047}.saswp-upgrade-pro{border-radius:8px}.saswp-settings-second-div a{text-decoration:none}.saswp-thick-box-container{width:580px}#saswp-add-rv-manual{padding:10px}#saswp-add-rv-automatic,#saswp-add-rv-collection{padding:10px;box-sizing:border-box;width:100%;overflow-y:scroll;height:260px}.saswp-add-collection-loop,.saswp-add-rv-loop{padding-bottom:10px}.saswp-add-rv-title{padding:10px}.close-attached-reviews-popup{float:right;margin-right:20px!important}.saswp-add-rv-note{padding-bottom:10px}.saswp-accept-rv-container{margin-right:20px}.saswp-post-specific-setting{border-bottom:1px solid #eee;text-align:center;padding-bottom:10px}.saswp-ps-text{padding:20px 5px}.saswp-ps-text span{font-weight:600}.saswp-ps-toggle{padding:10px}
|
1 |
+
.saswp_review_form_toggle_check{margin:10px!important}.saswp-show-form-on-tab{padding:5px;display:inline-block;width:100%}.saswp-show-form-on-tab strong{display:inline-block;width:30%}.saswp-show-form-on-tab input{width:45%;text-align:center}.saswp-disable-btn-container{float:right;padding:10px}.saswp-disable-label{padding:10px;color:#999}.saswp-setup-schema-btn{margin:5px!important}.saswp-static-container .spinner{padding:5px;float:none;margin:0 auto;display:block}.saswp-item-list-div{display:flex;width:100%;align-items:center}.saswp-enable-modify-schema{padding-top:10px;padding-left:10px}.saswp-enable-modify-schema strong{margin-right:10px}.saswp-item-list-div{display:flex;width:100%;align-items:center}#saswp_item_list_tags{width:100%;margin-left:10px}#saswp_item_list_custom{width:100%;margin-left:10px}.saswp_warning{color:#ef6c00!important}.saswp_hide_imp{display:none!important}.saswp_hide{display:none}.saswp-general table th{width:auto;font-weight:600;padding:0}.saswp-general table{margin-top:0}.saswp-general table td{padding:5px}.saswp-knowledge table th{width:auto;padding:0}.saswp-knowledge table{margin-top:0}.saswp-knowledge table td{padding:5px}.saswp-schema table th{width:auto;padding:0}.saswp-schema table{margin-top:0}.saswp-schema table td{padding:5px}.saswp-amp table th{width:auto;padding:0}.saswp-amp table{margin-top:0}.saswp-amp table td{padding:5px}.saswp-help table th{width:auto;padding:0}.saswp-support table th{width:auto;padding:0}.saswp-review table th{width:auto;padding:0}.saswp-help table{margin-top:0}.saswp-help table td{padding:5px}.saswp-settings-list{display:inline-block;width:100%}.saswp-settings-list li{padding-left:0}.saswp-settings-list li div label{font-weight:600}.saswp-general h2{margin-bottom:0}.saswp-knowledge h2{margin-bottom:0}.saswp-schema h2{margin-bottom:0}.saswp-help h2{margin-bottom:0}.saswp-settings-form p.submit{margin-top:0}.saswp_qanda_p{font-weight:500}.saswp-display-none{display:none!important}.saswp-placement-groups{border:1px solid #e5e5e5}.saswp-query-success{color:#060}.saswp-query-error{color:#bf3322}.saswp-tools table th{width:auto;padding:0}.saswp-tools table{margin-top:0}.saswp-tools table td{padding:5px}.saswp-tools-field-title strong{padding-right:130px}.saswp-tools .saswp-tooltip{width:230px}.saswp-tools .saswp-knowledge-label{float:left}.saswp-error{color:red!important}.saswp-tooltip{position:relative;display:inline-block}.saswp-tooltip .saswp-tooltiptext{visibility:hidden;width:200px;background-color:#000;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1;bottom:100%;left:50%;margin-left:-25px}.saswp-tooltiptext::after{content:"";position:absolute;top:100%;left:10%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#000 transparent transparent transparent}.saswp-knowledge-base .saswp-knowledge-label{width:200px;float:left;clear:both}.saswp-knowledge-base .saswp-knowledge-field{width:75%;float:right}.saswp-social-fileds ul{display:grid;grid-template-columns:26.5% 1fr}.saswp-social-fileds li{display:flex}.saswp-social-fileds .saswp-knowledge-field{width:100%;margin-left:10px}.saswp-social-fileds .saswp-knowledge-field input{float:right;margin:inherit}.saswp-schema-type-fields .saswp-knowledge-label{width:200px;float:left;clear:both}.saswp-schema-type-fields .saswp-knowledge-field{width:75%;float:right}.saswp-settings-first-div{width:75%}.saswp-settings-container{display:inline-flex;width:100%}.saswp-settings-second-div{float:right;position:relative;top:20px;margin-right:0;margin-top:37px}.saswp-feedback-panel{height:200px;width:280px;background:#fff;position:relative}.saswp-start-quck-setup{position:relative;float:inherit;top:7px;left:15px}.saswp-feedback-panel ul{list-style-type:circle;list-style:decimal;padding-left:30px;font-size:15px}.saswp-feedback-panel a{text-decoration:none}.saswp-feedback-panel h2{text-align:center;padding-top:18px}.saswp-social-sharing-buttons{text-align:center;padding-top:20px}.saswp-facebook-share{background:#3b5998;box-shadow:0 0 0 #1b95e0!important;color:#fff!important;line-height:20px!important;height:21px!important;border-radius:3px;margin-right:5px}.saswp-social-sharing-buttons a{text-align:center;padding:8px}.twitter-share-button{background:#1b95e0!important;box-shadow:0 0 0 #1b95e0!important;color:#fff!important;line-height:20px!important;height:21px!important;border-radius:3px;margin-left:5px}.saswp-placement-button{padding:3px 10px;color:#0d0d0d;font-size:14px;border:1px solid #aaa;border-radius:2px;background:linear-gradient(#ededed,#fff)}.saswp-placement-table td{padding:5px 10px!important}.saswp-archive-div .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-archive-div .saswp-knowledge-label{float:left;clear:both}label[for=saswp_archive_schema_type]{padding-left:10px}.saswp-amp .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-amp .saswp-knowledge-label{float:left;clear:both}.saswp-review .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-review .saswp-knowledge-label{float:left;clear:both}.saswp-compativility-div .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-compativility-div .saswp-knowledge-label{float:left;clear:both}.saswp-compativility-div li{display:inline-flex}.saswp-seller-div .saswp-knowledge-label{float:left;clear:both}.saswp-seller-div .saswp-knowledge-field{float:left;width:70%}.saswp-post-specific-tab-wrapper{display:inline-block;width:25%;vertical-align:top;box-sizing:border-box}.saswp-post-specific-container{display:inline-block;width:calc(75% - 1px);border-left:1px solid #eee}.saswp-post-specific-wrapper{padding:10px}.saswp-tab a.selected{color:#555;background-color:#fff}.saswp-tab-links{display:block;padding:12px 14px;outline:0;text-align:left;cursor:pointer;transition:.3s;font-size:15px;width:100%;overflow:hidden;box-shadow:none;text-decoration:none;line-height:20px!important;border-bottom:1px solid #eee}#post_specific .inside{padding:0;margin:0}.saswp-star-rating{cursor:pointer}.saswp-post-specific-wrapper select{width:100%}.saswp-review-tables{width:100%}.saswp-over-all-raring{float:right}.saswp-review-pros-and-cons{position:relative;clear:both}.saswp-review-pros-and-cons>div:first{padding-left:10px}.saswp-review-pros-and-cons>div{width:49%;display:inline-block}.saswp-review-pros-and-cons>div:nth-child(2){padding-left:12px}.saswp-wp-ediot-desc{margin-bottom:-23px;display:block}.saswp-review-description{margin-top:40px;padding-top:10px;border-top:1px solid #eee}.saswp-review-pros-and-cons{margin-top:40px;padding-top:10px;border-top:1px solid #eee}.saspw-review-item-list{margin-top:20px;border-top:1px solid #eee}.saswp-review-item-list-table{padding-bottom:10px}#sasw-review input[type=text]{width:180px}#sasw-review input[type=number]{width:180px}#saswp-review-item-enable{width:10px}.saswp-enable-review-on-post{padding-bottom:10px}.saswp-enable-review-on-post label{font-weight:500}.saswp-compatibility table th{width:auto;padding:0}.saswp-compatibility .saswp-knowledge-label{float:left;clear:both}.saswp-tools .saswp-knowledge-label{float:left;clear:both}.saswp-tools .saswp-knowledge-field{float:right;width:69%;padding-bottom:10px}.saswp_kg_logo,.saswp_person_fields{background-color:#fff!important}.saswp_image_thumbnail{padding-top:5px;display:inline-block}.saswp-compatibility .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-job-posting-note,.saswp-schem-type-note{color:#d2691e}.saswp-custom-fields-name{border:1px solid #aaa;border-radius:4px}.saswp-option-table-class p{margin:auto;font-style:italic;color:#666}.saswp-switch{position:relative;display:inline-block;width:30px;height:16px;border:20px}.saswp-switch input{opacity:0;width:0;height:0}.saswp-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#b5b5b5;transition:.4s;border-radius:20px}.saswp-slider:before{position:absolute;content:"";height:10px;width:10px;left:2px;bottom:3px;background-color:#fff;transition:.4s;border-radius:20px}input:checked+.saswp-slider{background-color:#00a0d2;border-radius:30px}input:focus+.saswp-slider{box-shadow:0 0 1px #2196f3}input:checked+.saswp-slider:before{transform:translateX(15px)}.saswp-slider.saswp-round{border-radius:34px}.saswp-slider.saswp-round:before{border-radius:50%}.saswp-tab-nav{background-color:#f9f9f9;margin-top:0}.saswp-tab-nav li{display:flex;align-items:center;justify-content:space-between;margin-bottom:0}.saswp-tab-nav .selected{width:100.5%;z-index:9999}.saswp-single-post-restore .saswp-switch{height:28px}.saswp-single-post-restore .saswp-slider:before{height:20px}.option-table-class{width:100%}.option-table-class tr td{padding:10px 10px 10px 10px}.option-table-class tr>td{width:30%}.option-table-class tr td:last-child{width:60%}.saswp-custom-fields-table{width:100%}.saswp-custom-fields-table input{width:100%}.saswp-custom-fields-table tr td{padding:10px 10px 10px 10px}.saswp-custom-fields-table td{width:30%;vertical-align:top}.saswp-option-table-class input[type=text],.saswp-option-table-class select{width:100%}.saswp-paywall-table-class input[type=text],.saswp-paywall-table-class select{width:100%}.saswp-email_schema table th{width:auto;padding:0}.saswp-email_schema .saswp-knowledge-label{float:left;clear:both}.saswp-email_schema .saswp-knowledge-field{float:right;width:75%;padding-bottom:10px}.saswp-add-on-plugin label{margin-top:10px}.saswp-add-on-plugin span{width:250px;display:inline-block}.saswp-knowledge-label label[for=saswp_search_box_schema_checkbox]{padding-left:10px}.saswp-knowledge-label label[for=saswp-woocommerce-booking-checkbox]{padding-left:10px}.saswp-knowledge-label label[for=saswp-woocommerce-membership-checkbox]{padding-left:10px}.saswp-global-selected{border-bottom:1px solid #f1f1f1;background:#f1f1f1;color:#000;font-weight:500;margin-bottom:-1px}#saswp-global-tabs a{cursor:pointer}#saswp-global-tabs{padding-left:5px}#saswp-tools-tabs a{cursor:pointer}#saswp-review-tabs a{cursor:pointer}#saswp-tools-tabs{padding-left:5px}.saswp-need-help{padding-left:60px}.saswp-heading{display:inline-flex;align-items:baseline}.saswp-heading h2{margin-bottom:0}.saswp-view-docs a{margin-right:5px!important;margin-top:10px!important;float:right}.saswp-tabs .nav-tab{margin-left:4px}.saswp-panel{padding:7px 18px;background-color:#fff;box-shadow:0 0 20px 1px #d2cccc}.saswp-g-review-header{margin-top:50px}.saswp-g-review-body{display:inline-grid;grid-template-columns:1fr 300px;grid-gap:30px;margin-top:30px}.saswp-channel-list{margin-right:15px}.saswp-input-fields{display:inline-flex;align-items:center;margin-bottom:8px;width:100%}.saswp-input-fields label{width:130px}.saswp-input-fields select{width:100%}.saswp-panel h3{font-size:20px;line-height:1.4;color:#222;text-align:center;margin:10px 0 20px 0}.saswp-input-fields a.button-primary{margin-top:10px}.saswp-glg-review-body{display:grid;grid-template-columns:100px 1fr;grid-gap:20px;background:#fff;padding:20px;box-shadow:0 0 20px 1px #d2cccc;margin-bottom:30px}.saswp-g-plus{float:right;font-size:15px}.saswp-rtng{padding-left:5px;font-size:14px}.saswp-pt-dt{font-size:12px;color:#999;font-weight:600;margin-top:5px;display:inline-block}.saswp-str{display:inline-block;width:100%;vertical-align:middle}.saswp-athr{font-size:15px;line-height:1.4;color:#000;font-weight:700;display:inline-block;vertical-align:middle}.saswp-r5-rng .saswp-rvw-str{display:inline-block;vertical-align:middle;padding-left:10px;width:auto}.saswp-rv-cnt p{font-size:16px;line-height:1.6;color:#000;margin:10px 0 0 0}.saswp-rv-img img{max-width:100px;border-radius:100%}.saswp-premium_features table th,.saswp-services table th{width:auto;padding:0}.saswp-features-blocks{display:inline-grid;grid-template-columns:1fr 1fr;grid-gap:20px}.saswp-features-blocks li{background:#fff;padding:25px;border:1px solid #d8d8d8}.saswp-features-blocks li a{text-decoration:none}.saswp-ele-ic{border-radius:256px;display:inline-block;padding:8px 10px 8px 10px;width:70px;margin-right:20px;height:70px;float:left}.saswp-ele-ic img{width:80%;left:10%;position:relative;top:9%}.saswp-ele-1{background:#96588a}.saswp-ele-2{background:#00a97e}.saswp-ele-3{background:#cacaca}.saswp-ele-4{background:#9c56cc}.saswp-ele-tlt h3{margin:0;font-size:18px;line-height:1.4}.saswp-ele-tlt p{margin-top:10px}.saswp-sts-btn{box-sizing:border-box;height:52px;margin-top:20px;padding:6px 15px;border:1px solid #e5e5e5;border-radius:3px;display:flex;align-items:center;justify-content:space-between}.saswp-d-btn{background:#d2150a;padding:6px 18px;border-radius:30px;font-size:14px;color:#fff}.form-wrap .saswp-sts-txt{font-size:16px;color:#000}.saswp-sts-txt span{color:#bebfc0;padding-left:5px}.saswp_review_platform .saswp-g-plus{float:left}.saswp-pc-wrap{background-color:#004f74;padding:15px 15px 15px 30px;color:#fff;display:inline-flex;width:100%;flex-wrap:wrap;margin-bottom:20px}.saswp-pc-wrap .saswp-lst span{font-size:18px;font-weight:500;margin-bottom:10px;display:inline-block;line-height:1.3}.saswp-pc-wrap .saswp-lst{flex:1 0 42%}.saswp-pc-wrap .saswp-lst ul{margin:0}.saswp-pc-wrap .saswp-lst p{list-style-type:none;font-size:15px;font-weight:lighter;line-height:1.2;margin-bottom:10px;position:relative;padding-left:20px;color:#eee}.saswp-pc-wrap .saswp-lst p:before{content:'';position:absolute;width:8px;height:8px;background-color:#ccc;left:0;top:6px;border-radius:10px}.sgl .saswp-rvw{width:100%;margin-bottom:34px;font-size:13px;border-bottom:1px solid #ededed}.saswp-rvw-hd span,.saswp-rvw-sm span{background-color:#222;color:#fff;display:inline-block;font-size:15px}.saswp-rvw-hd span{line-height:1.4;padding:8px 12px 6px;margin:26px 0}.saswp-rvw td{padding:7px 14px}.saswp-rvw td,.sgl table td{border:1px solid #ededed}.saswp-rvw tbody{width:100%}.saswp-rvw-sm span{padding:8px 12px 6px;margin-bottom:13px;position:relative;line-height:1.2}.saswp-rvw-fs{line-height:1.5;font-size:48px;font-weight:600;margin-bottom:5px}.saswp-rvw-ov .ovs{font-size:11px;font-weight:600}.sgl .saswp-rvw tr td{background:#fff;width:100%}.sgl .saswp-rvw tr:hover td{background-color:#fcfcfc}.saswp-rvw .saswp-rvw-sm{padding:21px 14px}.str-ic{font-size:18px;line-height:1.2}.saswp-rvw-str{display:inline-flex;width:100%;margin-top:5px}.saswp-rvw-str .df-clr,.saswp-rvw-str .half-str,.saswp-rvw-str .str-ic{display:inline-block;width:20px;height:16px;background-repeat:no-repeat}.saswp-rvw-ov{text-align:center}.saswp-rvw-str .half-str{background-image:url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0ODIuMjA3IDQ4Mi4yMDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4Mi4yMDcgNDgyLjIwNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cGF0aCBkPSJNNDgyLjIwNywxODYuOTczbC0xNTkuNjk5LTMzLjcwNUwyNDEuMTA0LDExLjgwM2wtODEuNDA0LDE0MS40NjVMMCwxODYuOTczbDEwOS4zODgsMTIxLjEzNEw5Mi4wOTQsNDcwLjQwNGwxNDkuMDEtNjYuNiAgbDE0OS4wMSw2Ni42bC0xNy4yOTQtMTYyLjI5Nkw0ODIuMjA3LDE4Ni45NzN6IE0yNDEuMTA0LDM3MC45NDNWNzEuOTUzbDYyLjA5LDEwNy45TDQyNSwyMDUuNTYxbC04My40MzMsOTIuMzkzbDEzLjE5MSwxMjMuNzg4ICBMMjQxLjEwNCwzNzAuOTQzeiIgZmlsbD0iI2ZmZDcwMCIvPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K)}.saswp-rvw-str .str-ic{background-image:url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0ODIuMjA3IDQ4Mi4yMDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4Mi4yMDcgNDgyLjIwNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cG9seWdvbiBwb2ludHM9IjQ4Mi4yMDcsMTg2Ljk3MyAzMjIuNTA4LDE1My4yNjkgMjQxLjEwNCwxMS44MDMgMTU5LjY5OSwxNTMuMjY5IDAsMTg2Ljk3MyAxMDkuMzg4LDMwOC4xMDggOTIuMDk0LDQ3MC40MDQgICAyNDEuMTA0LDQwMy44MDMgMzkwLjExMyw0NzAuNDA0IDM3Mi44MTgsMzA4LjEwOCAiIGZpbGw9IiNmZmQ3MDAiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==)}.saswp-rvw-str .df-clr{background-image:url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0ODIuMjA3IDQ4Mi4yMDciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4Mi4yMDcgNDgyLjIwNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiPgo8cG9seWdvbiBwb2ludHM9IjQ4Mi4yMDcsMTg2Ljk3MyAzMjIuNTA4LDE1My4yNjkgMjQxLjEwNCwxMS44MDMgMTU5LjY5OSwxNTMuMjY5IDAsMTg2Ljk3MyAxMDkuMzg4LDMwOC4xMDggOTIuMDk0LDQ3MC40MDQgICAyNDEuMTA0LDQwMy44MDMgMzkwLjExMyw0NzAuNDA0IDM3Mi44MTgsMzA4LjEwOCAiIGZpbGw9IiM2MzVlNjMiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==)}.saswp-g-review-header{margin-top:50px}.saswp-g-review-body{display:inline-grid;grid-template-columns:1fr 300px;grid-gap:30px;margin-top:30px;width:100%}.saswp-channel-list{margin-right:15px}.saswp-input-fields{display:inline-flex;align-items:center;margin-bottom:8px;width:100%}.saswp-input-fields label{width:130px}.saswp-panel h3{font-size:20px;line-height:1.4;color:#222;text-align:center;margin:10px 0 20px 0}.saswp-input-fields a.button-primary{margin-top:10px}.saswp-glg-review-body{display:grid;grid-template-columns:100px 1fr;grid-gap:20px;background:#fff;padding:20px;box-shadow:0 0 20px 1px #d2cccc;margin-bottom:30px}.saswp-g-plus{float:right;font-size:15px;width:20px;height:20px}.saswp-g-plus img{max-width:100%}.saswp-rtng{padding-left:5px;font-size:14px}.saswp-pt-dt{font-size:12px;color:#999;font-weight:600;margin-top:5px;display:inline-block}.saswp-athr{font-size:15px;line-height:1.4;color:#000;font-weight:700}.saswp-rv-cnt p{font-size:16px;line-height:1.6;color:#000;margin:10px 0 0 0}.saswp-rv-img img{max-width:100px}.saswp-g-review-header div{margin-top:10px}.saswp-upgrade-pro{background:#fff;padding:25px;border:1px solid #d8d8d8;display:inline-block;margin-top:10px;width:100%;box-sizing:border-box}.saswp-upgrade-pro h2{font-size:20px;margin:0;color:#23282d;font-weight:600;text-align:center}.saswp-upgrade-pro ul{margin:25px 0 20px 0;display:inline-block}.saswp-upgrade-pro ul li{position:relative;padding-left:30px;font-size:14px;line-height:1.4;margin-bottom:10px}.saswp-upgrade-pro ul li:before{content:"";background-image:url(../images/check.png);background-repeat:no-repeat;background-size:20px;width:20px;height:20px;position:absolute;left:2px;top:2px}.saswp-upgrade-pro a{background:#d2150a;padding:10px 0;display:block;text-align:center;color:#fff;text-decoration:none;font-size:16px;font-weight:600;letter-spacing:1px;border-radius:5px}.saswp_image_prev{max-width:200px;max-height:200px;float:left;padding-left:2px}.saswp_prev_close{position:relative;width:30px;height:30px;top:12px;font-size:20px;top:-5px;text-decoration:none}.saswp-add-custom-schema-div{margin-top:10px;border-top:1px solid #eee;padding-top:5px}.saswp-nav-menu-list label{padding-left:10px}.saswp-dynamic-properties{border:1px solid #aaa;margin-top:5px;margin-bottom:5px}.saswp-table-close{float:right;cursor:pointer}.saswp-table-create-onajax table td,.saswp-table-create-onajax table th{padding:5px}.saswp-table-create-onajax select{width:98%}.saswp-g-reviews-settings-table input{width:100%}.saswp-s-reviews-settings-table input{width:100%}.saswp_rv_module_pro_notice{border:1px solid #d8d8d8;background:#fff}.saswp-settings-list .saswp-rev-mod{width:100%;display:inline-block;margin-top:20px}.saswp-rev-mod .saswp-knowledge-label{width:100%;display:inline-block;padding:10px 16px;font-weight:600;font-size:16px;color:#333;background:#f9f9f9;border:1px solid #d8d8d8;border-bottom:none;box-sizing:border-box}.saswp-rev-mod .saswp-knowledge-field{width:100%;display:inline-block}.saswp-rev-mod .saswp_rv_module_pro_notice{padding:20px}.saswp_cmpny_lst{width:100%;display:inline-block;margin-top:30px}.saswp_rv_module_pro_notice ul{margin:15px 0 20px 0;width:100%;display:inline-grid;grid-template-columns:1fr 1fr 1fr;grid-gap:20px;border-bottom:1px solid #eee;padding-bottom:20px}.saswp_rv_module_pro_notice ul li{position:relative;font-size:15px;line-height:1.5;color:#444;margin:0}.saswp_rv_module_pro_notice ul li span{padding-left:3px}.saswp_rv_module_pro_notice h2{text-align:center;font-size:31px}.saswp_rv_module_pro_notice .saswp_desc{text-align:center;font-size:18px;font-style:normal;color:#000}.saswp_rv_module_pro_notice .saswp_desc a{font-style:italic}.saswp_rv_module_pro_notice .saswp_lst{color:grey;font-family:georgia;font-style:italic;font-style:italic;font-size:15px;font-weight:600}.saswp_rv_module_pro_notice .saswp_avlbl{color:#2a902e;font-family:georgia;font-style:italic;font-size:15px;font-weight:600}.saswp_rv_module_pro_notice ul li img{width:20px;height:20px;position:relative;top:4px}.saswp-rev-btn{width:100%;display:inline-block;margin-top:20px;text-align:center}.saswp-rev-btn span{display:block;font-size:13px;margin-bottom:15px}.saswp-rev-btn a{padding:12px 18px;display:inline-block;text-decoration:none;border-radius:5px;background:#0085ba;color:#fff;font-weight:600;font-size:18px}.select2-container{width:100%!important}.saswp-schema-modify-section{margin-top:15px;border-top:1px solid #eee;padding-top:15px}.saswp-custom-meta-list{border:1px solid #aaa;border-radius:4px}.saswp-custom-fields-table tr td:nth-child(3n+3) input{border:1px solid #aaa;border-radius:4px}.updated.notice p{display:flex;width:100%;align-items:center}.updated.notice .dashicons-thumbs-up{margin-right:10px}a.saswp-feedback-no-thanks,a.saswp-feedback-remindme{display:inline-block;cursor:pointer}.saswp-feedback-remindme:after{content:",";display:inline-block;margin-right:5px}a.saswp-revws-lnk{display:inline-block;background:#0085ba;padding:12px 20px;color:#fff;text-decoration:none;border-radius:3px;margin-left:20px;font-size:14px;line-height:.6}.saswp-update-notice-btns{display:inline-block;width:100%;margin-bottom:5px}.saswp-about-contact-page{width:75%;float:right}.saswp-about-contact-page-tooltip{float:left;clear:both}.saswp-quick-setup{float:left}.saswp_add_schema_fields_on_fly{margin-bottom:5px!important}.saswp-custom-fields-table .saswp_image_prev{max-width:62px!important}.saswp-custom-fields-table .saswp_prev_close{font-size:15px}.saswp-review-content-table td:nth-child(2){width:50%;float:left}.saswp-review-content-table input{width:100%}.saswp-review-content-table select{width:100%}.saswp-review-content-table textarea{width:100%}.saswp-social-links-table{width:100%}.saswp-social-links-table input{width:100%}.saswp-add-social-links{margin:3px!important}.saswp-social-links-table td{padding-left:0!important}#saswp-compatibility-tabs a{cursor:pointer}.saswp-grid-pagination{display:inline-block;padding:20px}.saswp-grid-pagination a{color:#000;float:left;padding:8px 16px;text-decoration:none}.saswp-grid-pagination a.active{background-color:#4caf50;color:#fff}.saswp-grid-pagination a:hover:not(.active){background-color:#ddd}.saswp-collection-body{width:100%;display:flex;flex-wrap:wrap}.saswp-collection-lp{flex:1 0 68%;margin-right:20px;width:68%;background:#fff;border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04);padding-bottom:22px}.saswp-collection-settings{flex:1 0 27%;height:100%;width:28%}.saswp-collection-container{margin-top:60px;width:100%;display:inline-block;padding-right:20px;box-sizing:border-box}.saswp-collection-preview-table{width:100%}.saswp-collection-preview-table td{width:30%}.saswp-platform-added-list{display:inline-block;width:100%;margin-top:10px}.saswp-collection-title input{width:100%;padding:3px 8px;font-size:15px;line-height:2;height:1.7em;outline:0;margin:0 0 3px;background-color:#fff;color:#32373c}.saswp-collection-title{margin-bottom:10px;padding:10px;background:#f5f5f5;border-bottom:1px solid #ddd}.saswp-collection-preview{padding:0 30px}.saswp-r1{margin-bottom:50px;text-align:center}.saswp-r1 ul{padding:0;list-style-type:none;display:grid;width:100%;grid-template-columns:1fr 1fr 1fr;grid-gap:15px;margin:0}.saswp-r1 li{padding:20px;position:relative;color:#777;border:1px solid #ededed;background-color:#fafafa;border-radius:4px;margin:0}.saswp-rc{display:flex;width:100%;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;position:relative}.saswp-r1 .saswp-rc-lg{position:absolute;right:-5px}.saswp-r1-aimg img{float:left;max-width:56px;min-height:56px;max-height:56px;border-radius:100px}.saswp-rc-a>img{max-width:56px;min-height:56px;max-height:56px;margin-right:10px;border-radius:100px}.saswp-rc-lg img{width:20px;height:20px;border-radius:100px}.saswp-rc-nm a{text-decoration:none;color:#427fed;font-size:16px;font-weight:600;display:inline-block;line-height:1.1;letter-spacing:0;width:80%;text-align:left}.saswp-rc-dt{margin-top:5px;font-size:12px;line-height:1.2;color:#999;display:block}.saswp-rc-a{flex:1 0 85%;display:flex;justify-content:flex-start}.saswp-rc-nm{width:100%;margin-left:10px}.saswp-rc-cnt{position:static;height:80px;overflow-y:auto;font-size:14px;line-height:1.6;text-align:left;padding:0 2px 0 0;margin:10px 0 0}.saswp-r2-strs{text-align:center}.saswp-rc-cnt p{margin:0}.saswp-rc-cnt::-webkit-scrollbar{width:4px;display:inline-block}.saswp-rc-cnt::-webkit-scrollbar-thumb{-webkit-border-radius:10px;border-radius:10px;background:#ccc;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.5)}.saswp-rc-cnt::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);-webkit-border-radius:4px;border-radius:4px}.saswp-collection-settings{border:1px solid #ccd0d4;box-shadow:0 1px 1px rgba(0,0,0,.04)}.saswp-collection-settings ul{margin:0;padding:0}.saswp-collection-settings ul li{border-bottom:1px solid #ddd;margin:0;position:relative}.saswp-dp-dsg{display:inline-grid;grid-template-columns:1fr 2fr;width:100%;grid-gap:0 5px;align-items:center;color:#666}.saswp-dp-dtm{margin-top:13px}.saswp-slider-display{margin-top:15px}.wp-admin .saswp-collection-settings select{margin:0;min-height:30px;max-height:30px;max-width:100%}.saswp-slider-display span{width:30%;display:inline-block}.saswp-collection-settings ul li a{padding:12px 15px;background:#fff;color:#23282d;cursor:pointer;width:100%;border:none;text-align:left;font-size:14px;line-height:1.5;font-weight:600;transition:all .5s ease-in-out 0s;display:block;box-sizing:border-box;position:relative}.saswp-collection-settings ul li input{width:100%}.saswp-collection-settings ul li input[type=checkbox]{width:16px}.saswp-collection-settings ul li a.active,.saswp-collection-settings ul li a:hover{background:#f5f5f5}.saswp-accordion.active+.saswp-accordion-panel{border-top:1px solid #ddd}.saswp-plf-lst-rv-cnt{display:inline-grid;width:100%;flex-wrap:wrap;grid-template-columns:180px 57px 1fr;grid-gap:5px}.saswp-accordion-panel{padding:15px 18px;display:none;background-color:#fff;overflow:hidden;border-top:1px solid #ddd}.saswp-collection-settings a.saswp-add-to-collection{text-align:center;height:30px;font-weight:400;position:relative;top:1px;line-height:27px}.wp-core-ui a.button.saswp-remove-platform{background:0 0;border:none;padding:0;margin-left:6px;min-height:0}.wp-core-ui a.button.saswp-remove-platform:hover{color:#c00}.wp-core-ui a.button.saswp-remove-platform:after{content:"\f153";display:block;font:normal 16px/20px dashicons}.cancel-btn{margin-right:10px;margin-bottom:5px;float:left;display:inline-flex}.wp-admin .saswp-accordion-panel select.saswp-collection-desing{width:100%}.saswp-slider-display.saswp-desing-options{margin-top:10px}.saswp-slider-display.saswp-desing-options span{margin-right:10px;display:inline-block}.saswp-collection-settings li a.saswp-accordion:after{content:"\f140";font:normal 20px/1 dashicons;speak:none;display:block;position:absolute;color:#72777c;top:13px;right:18px}.saswp-collection-settings li a.saswp-accordion.active:after{content:"\f142";top:13px}.saswp-sv-btn{background:#f5f5f5;padding:8px 10px;text-align:right;width:100%;box-sizing:border-box}.saswp-collection-settings .button-primary{width:89px;margin:0;display:inline-block;padding:2px 0}.saswp-collection-shortcode{color:#555;margin-top:10px;padding:4px;background:#f1f1f1;display:inline-block;border:1px solid #ddd}.saswp-rd3-warp ul{padding:0;display:grid;grid-template-columns:1fr 1fr 1fr 1fr;grid-gap:30px;list-style-type:none;margin:0;justify-content:center}.saswp-rd3-warp li{box-shadow:0 2px 5px 0 rgba(0,0,0,.26);margin:0}.saswp-rd3-warp li a{text-decoration:none}.saswp-r3-lg{background:#ededed;display:flex;align-items:center;justify-content:center;width:100%;padding:6px 8px;box-sizing:border-box}.saswp-r3-lg span img{width:18px;height:18px;margin-right:10px}.saswp-r3-lg span{line-height:0}.saswp-r3-lg .saswp-r3-tlt{font-size:12px;line-height:1.4;text-transform:uppercase;color:#555;font-weight:400}.saswp-lg{line-height:0}.saswp-r3-rtng{padding:13px 10px 10px 10px;background:#fff;border-radius:0 0 3px 3px;text-align:center}.saswp-r3-rtxt{display:flex;align-items:center;line-height:0;width:100%;margin-bottom:10px;justify-content:center}.saswp-r3-rtxt .saswp-r3-num{color:#23282d;margin-right:5px;font-size:22px;font-weight:500;position:relative;top:2px;word-break:normal}.saswp-rd3-warp .saswp-rvw-str .df-clr,.saswp-rd3-warp .saswp-rvw-str .half-str,.saswp-rd3-warp .saswp-rvw-str .str-ic{display:inline-block;width:22px;height:22px;background-repeat:no-repeat;background-size:22px;margin-right:3px}.saswp-r3-brv{color:#666;font-size:13px;line-height:1}.saswp-r5{position:fixed;bottom:20px;width:calc(100% - 20px);max-width:325px;border-radius:12px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 0 8px 0 rgba(0,0,0,.05);transition:all .3s ease-in;display:none}.saswp-r5 .saswp-rvw-str .df-clr,.saswp-r5 .saswp-rvw-str .half-str,.saswp-r5 .saswp-rvw-str .str-ic{display:inline-block;width:23px;height:20px;background-repeat:no-repeat;background-size:20px}.saswp-r5-r .saswp-r5-rng .saswp-rvw-str{padding-left:0;margin-bottom:3px}.saswp-r5-r{display:flex;flex-wrap:wrap;width:100%;align-items:center;height:80px}.saswp-r5-rng{flex:1 0 60%;padding-left:15px}.saswp-r5-lg{width:80px;height:100%;border-right:1px solid #ddd;box-sizing:border-box;background:linear-gradient(to bottom,#fefefe 0,#f2f2f2 100%);position:relative;display:flex;align-items:center;border-radius:12px 0 0 12px}.saswp-r5-r .saswp-r5-lg span{border-radius:10px 0 0 10px}.saswp-r5-r .saswp-r5-lg img{position:relative;max-width:40px;max-height:40px;left:20PX;border-radius:10px 0 0 10px;top:2px}.saswp-r5-txrng{font-size:12px;line-height:1.2;color:#444;display:flex;margin-bottom:5px}.saswp-r5-txrng span{font-weight:600;color:#666;margin-right:5px}.saswp-r5-rng span.saswp-r5-dt{display:block;font-size:11px;color:#ababab;font-weight:400}.saswp-r5 a{text-decoration:none}.saswp-popup-btn{position:fixed;top:auto;bottom:0;font-family:Arial,sans-serif;z-index:9;box-shadow:0 20px 40px 8px rgba(0,0,0,.25);width:300px;background:#fff;border:none;padding:0}.saswp-open-class.saswp-popup-btn{width:300px}#saswp-reviews-cntn{display:none}#saswp-sticky-review .saswp-open-class #saswp-reviews-cntn{width:100%}.saswp-opn-cls-btn{display:flex;height:50px;justify-content:space-between;align-items:center;background:#fba306;width:100%;padding:0 15px;border-radius:4px 4px 0 0;cursor:pointer;box-sizing:border-box}.saswp-opn-cls-btn svg path{fill:#fff}.saswp-opn-cls-btn span{font-size:15px;font-weight:600;color:#fff}.saswp-onclick-hide,.saswp-onclick-show{display:flex;justify-content:space-between;width:100%}.saswp-r4-info ul{list-style-type:none;padding:0;margin:0;text-align:left;height:350px;overflow-y:scroll}.saswp-r4-info ul li{border-bottom:1px solid #e4e4e4;padding:20px}.saswp-r4-b{display:flex;align-items:center;justify-content:flex-start;width:100%}.saswp-r4-b .saswp-r4-str{margin-right:10px}.saswp-r4-b span.saswp-r4-tx{font-size:14px;color:#444}.saswp-r4-b span.saswp-r4-nm:after{content:"-";display:inline-block;margin:0 10px}.saswp-r4-info .saswp-rvw-str .df-clr,.saswp-r4-info .saswp-rvw-str .half-str,.saswp-r4-info .saswp-rvw-str .str-ic{display:inline-block;width:22px;height:20px;background-repeat:no-repeat;background-size:18px}.saswp-r4-cnt h3{margin:10px 0 8px 0!important;font-size:18px;color:#333;font-weight:500}.saswp-r4-cnt p{font-size:13px;line-height:1.5;margin:0;color:#333}.saswp-r4-info ul li.saswp-r4-r{display:flex;width:100%;align-items:center;text-align:center;justify-content:center;box-sizing:border-box}.saswp-r4-info ul li span.saswp-r4-rnm{margin-left:10px;font-size:18px;color:#666}.btn .saswp-onclick-hide,.btn.saswp-open-class .saswp-onclick-show{display:flex;justify-content:space-between;width:100%}.btn .saswp-onclick-show,.btn.saswp-open-class .saswp-onclick-hide{display:none}span.saswp-mines{line-height:0}.saswp-mines:before{content:"";display:inline-block;width:20px;height:4px;background:#fff;position:relative;top:5px}.saswp-rd2-warp{width:100%;display:inline-block;margin-bottom:50px}.saswp-rd2-warp div{width:350px;margin-right:25px}.saswp-rd2-warp .saswp-rc-cnt{white-space:initial}.saswp-rd2-warp .saswp-r2-b{position:relative;color:#777;border:1px solid #ededed;background-color:#fafafa;border-radius:4px}.saswp-rd2-warp .saswp-rc-cnt{height:150px;margin:20px 20px 20px 40px}.saswp-rd2-warp .saswp-rc{padding:20px}.saswp-r2-b .saswp-r2-s{display:inline-block}.saswp-r2-b .saswp-rc-cnt p{display:inline}.saswp-r2-b .saswp-rc-lg{line-height:0;position:absolute;right:13px;top:13px;background:#fafafa}.saswp-r2-q svg{width:20px;fill:#bbb;position:absolute;height:30px;top:15px;left:12px}.saswp-rd2-warp .saswp-r2-b:before{position:absolute;bottom:-8px;left:35px;display:block;width:14px;height:14px;border:1px solid #ededed;border-top:none;border-left:none;background-color:#fafafa;content:"";-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.carousel-preview{text-align:center}.carousel-preview button{width:12px;height:12px;border-radius:100px;border:none;margin:0 5px;cursor:pointer}.carousel-preview button.saswp-active{background:#427fed}.saswp-cst .saswp-cs{width:100%;max-width:640px;margin:0 auto;overflow:hidden;position:relative}.saswp-r2-b{padding:20px 40px 20px 40px;background-color:#fafafa;position:relative;color:#777;border:1px solid #ededed;border-radius:4px;box-sizing:border-box}.saswp-cst .saswp-rc{padding:20px;box-sizing:border-box}.saswp-si .saswp-r2-b:before{position:absolute;bottom:-8px;left:35px;display:block;width:14px;height:14px;border:1px solid #ededed;border-top:none;border-left:none;background-color:#fafafa;content:"";-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.saswp-si .saswp-rc-cnt{margin:0}.saswp-cs .saswp-slider-controls{width:100%;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;z-index:9;position:relative;top:10px}.saswp-slider-controls a.saswp-slider-prev-btn{position:absolute;left:10px;bottom:0;background:rgba(0,0,0,.5);line-height:0;border-radius:100px;width:30px;height:30px}.saswp-slider-controls a.saswp-slider-prev-btn:before{content:"";display:inline-block;width:6px;height:6px;border:2px solid #fff;border-top:none;border-left:none;transform:rotate(135deg);position:relative;top:11px;left:12px}.saswp-slider-controls a.saswp-slider-next-btn{position:absolute;right:10px;bottom:0;background:rgba(0,0,0,.5);line-height:0;border-radius:100px;width:30px;height:30px}.saswp-slider-controls a.saswp-slider-next-btn:after{content:"";display:inline-block;width:6px;height:6px;border:2px solid #fff;border-top:none;border-left:none;transform:rotate(135deg);transform:rotate(-45deg);position:relative;top:11px;right:-9px}.saswp-si .saswp-rc-lg img{width:25px;height:25px}.saswp-cs .saswp-slider-dots .saswp-dot{width:10px;height:10px;background:#ccc;transition:.15s ease-in-out;border-radius:8px;cursor:pointer;margin:0 12px}.saswp-cs .saswp-slider-dots .saswp-dot.saswp-active{background:#0071a1}.saswp-cst .saswp-sic .saswp-si{width:100vw;max-width:640px;display:block}.spinner.saswp-spinner{float:none;margin:0 auto;display:block}.saswp-cct .saswp-cs{width:100%;max-width:800px;margin:0 auto;overflow:hidden;position:relative}.saswp-cct .saswp-sic .saswp-si{width:100%;max-width:800px;display:flex}.saswp-cct .saswp-r2-sli{width:100%;margin-right:20px;max-width:40%}.saswp-cct .saswp-rc{padding:20px 10px;box-sizing:border-box}.saswp-cct .saswp-rc-cnt{height:120px}.saswp-cs .saswp-sic{display:flex;flex-wrap:wrap;height:auto;transition:transform .35s ease-in-out}.saswp-cs .saswp-slider-controls a{color:#333;text-decoration:none;transition:.15s ease-in-out}.saswp-cs .saswp-slider-controls a:hover{color:#888}.saswp-cs .saswp-slider-dots{width:100%;display:flex;justify-content:center;margin:0 auto;position:relative;top:-10px}.saswp-onclick-show{display:none}.saswp-dp-dsg.saswp_hide{display:none}@media(max-width:1200px){.saswp-plf-lst-rv-cnt{grid-template-columns:1fr}}@media(max-width:767px){.saswp-collection-lp{flex:1 0 100%;margin-right:0;width:100%}.saswp-collection-settings{flex:1 0 100%;height:100%;width:100%}.wp-admin .saswp-collection-settings select{max-width:100%}}.saswp-upgrade-pro h2{font-size:20px;margin:0;color:#23282d;font-weight:600;text-align:center}.saswp-upgrade-pro ul{margin:25px 0 20px 0;display:inline-block}.saswp-upgrade-pro ul li{position:relative;padding-left:30px;font-size:14px;line-height:1.4;margin-bottom:10px}.saswp-upgrade-pro a{background:#d2150a;padding:10px 0;display:block;text-align:center;color:#fff;text-decoration:none;font-size:16px;font-weight:600;letter-spacing:1px;border-radius:5px}.saswp-settings-second-div .saswp-upgrade-pro.promo-cpn{display:block}.saswp-upgrade-pro.promo-cpn{border:1px solid #558b2f}.saswp-hide{display:none}.saswp-settings-second-div .saswp-upgrade-pro.promo-cpn{display:block;margin:0}.saswp-upgrade-pro.promo-cpn{border:1px solid #558b2f;border-radius:8px}.saswp-upgrade-pro.promo-cpn h2{color:#2e7d32;font-size:24px;text-align:center;margin:0 0 20px 0}.saswp-upgrade-pro.promo-cpn span{text-align:center;font-size:14px;display:inline-block;color:#777;padding:0 20px;box-sizing:border-box;line-height:1.4;font-weight:400}.saswp-promo{font-size:20px;margin-top:15px;width:100%;text-align:center}.saswp-upgrade-pro.promo-cpn .prm-txt{display:block;line-height:1}.saswp-upgrade-pro.promo-cpn .saswp-promo .prm-cpn{border:1px dashed #1b5e20;border-radius:100px;margin-top:5px;color:#388e3c;font-size:20px;padding:2px 15px 2px 15px}.saswp-upgrade-pro a{background:#43a047}.saswp-upgrade-pro{border-radius:8px}.saswp-settings-second-div a{text-decoration:none}.saswp-thick-box-container{width:580px}#saswp-add-rv-manual{padding:10px}#saswp-add-rv-automatic,#saswp-add-rv-collection{padding:10px;box-sizing:border-box;width:100%;overflow-y:scroll;height:260px}.saswp-add-collection-loop,.saswp-add-rv-loop{padding-bottom:10px}.saswp-add-rv-title{padding:10px}.close-attached-reviews-popup{float:right;margin-right:20px!important}.saswp-add-rv-note{padding-bottom:10px}.saswp-accept-rv-container{margin-right:20px}.saswp-post-specific-setting{border-bottom:1px solid #eee;text-align:center;padding-bottom:10px}.saswp-ps-text{padding:20px 5px}.saswp-ps-text span{font-weight:600}.saswp-ps-toggle{padding:10px}
|
admin_section/plugin-installer/install.php
CHANGED
@@ -785,7 +785,7 @@ function saswp_select_schema_fields_callback(){
|
|
785 |
|
786 |
<select id="schema_type" name="sd_data_create__post_schema['.$key.'][schema_type]">
|
787 |
<option value="">'.esc_html__('Select Schema Type', 'schema-and-structured-data-for-wp').'</option>
|
788 |
-
<option value="
|
789 |
<option value="NewsArticle">'.esc_html__('NewsArticl', 'schema-and-structured-data-for-wp').'e</option>
|
790 |
<option value="WebPage">'.esc_html__('WebPage', 'schema-and-structured-data-for-wp').'</option>
|
791 |
<option value="Article">'.esc_html__('Article', 'schema-and-structured-data-for-wp').'</option>
|
785 |
|
786 |
<select id="schema_type" name="sd_data_create__post_schema['.$key.'][schema_type]">
|
787 |
<option value="">'.esc_html__('Select Schema Type', 'schema-and-structured-data-for-wp').'</option>
|
788 |
+
<option value="BlogPosting">'.esc_html__('BlogPosting', 'schema-and-structured-data-for-wp').'</option>
|
789 |
<option value="NewsArticle">'.esc_html__('NewsArticl', 'schema-and-structured-data-for-wp').'e</option>
|
790 |
<option value="WebPage">'.esc_html__('WebPage', 'schema-and-structured-data-for-wp').'</option>
|
791 |
<option value="Article">'.esc_html__('Article', 'schema-and-structured-data-for-wp').'</option>
|
admin_section/structure_admin.php
CHANGED
@@ -153,25 +153,27 @@ function saswp_check_advance_display_status($post_id){
|
|
153 |
|
154 |
foreach ($resultset as $result){
|
155 |
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
if ( $number_of_fields > 0 ) {
|
161 |
-
|
162 |
-
$checker = count( array_unique($data) );
|
163 |
-
|
164 |
-
$array_is_false = in_array(false, $result);
|
165 |
-
|
166 |
-
if ( $array_is_false ) {
|
167 |
|
168 |
-
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
}
|
171 |
-
|
172 |
-
}
|
173 |
-
|
174 |
-
$condition_array[] = $checker;
|
175 |
|
176 |
}
|
177 |
$array_is_true = in_array(true,$condition_array);
|
@@ -263,12 +265,14 @@ function saswp_generate_field_data( $post_id ){
|
|
263 |
|
264 |
$output = array();
|
265 |
|
266 |
-
if($data_group_array){
|
267 |
|
268 |
-
foreach ($data_group_array as $
|
269 |
-
|
270 |
-
$output[] = array_map('saswp_comparison_logic_checker', $gropu['data_array']);
|
271 |
|
|
|
|
|
|
|
|
|
272 |
}
|
273 |
|
274 |
}
|
153 |
|
154 |
foreach ($resultset as $result){
|
155 |
|
156 |
+
if(is_array($result)){
|
157 |
+
$data = array_filter($result);
|
158 |
+
$number_of_fields = count($data);
|
159 |
+
$checker = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
+
if ( $number_of_fields > 0 ) {
|
162 |
+
|
163 |
+
$checker = count( array_unique($data) );
|
164 |
+
|
165 |
+
$array_is_false = in_array(false, $result);
|
166 |
+
|
167 |
+
if ( $array_is_false ) {
|
168 |
+
|
169 |
+
$checker = 0;
|
170 |
+
|
171 |
+
}
|
172 |
+
|
173 |
+
}
|
174 |
+
|
175 |
+
$condition_array[] = $checker;
|
176 |
}
|
|
|
|
|
|
|
|
|
177 |
|
178 |
}
|
179 |
$array_is_true = in_array(true,$condition_array);
|
265 |
|
266 |
$output = array();
|
267 |
|
268 |
+
if(!empty($data_group_array) && is_array($data_group_array)){
|
269 |
|
270 |
+
foreach ($data_group_array as $group){
|
|
|
|
|
271 |
|
272 |
+
if(is_array($group['data_array'])){
|
273 |
+
$output[] = array_map('saswp_comparison_logic_checker', $group['data_array']);
|
274 |
+
}
|
275 |
+
|
276 |
}
|
277 |
|
278 |
}
|
core/array-list/repeater-fields.php
CHANGED
@@ -18,7 +18,7 @@ return array( 'schema_type_element' => array(
|
|
18 |
'ImageObject' => array(
|
19 |
'image_object_exif_data' => 'image_object_exif_data',
|
20 |
),
|
21 |
-
'
|
22 |
'blogposting_items' => 'blogposting_items',
|
23 |
),
|
24 |
'NewsArticle' => array(
|
18 |
'ImageObject' => array(
|
19 |
'image_object_exif_data' => 'image_object_exif_data',
|
20 |
),
|
21 |
+
'BlogPosting' => array(
|
22 |
'blogposting_items' => 'blogposting_items',
|
23 |
),
|
24 |
'NewsArticle' => array(
|
core/array-list/schema-properties.php
CHANGED
@@ -289,6 +289,7 @@ function saswp_get_fields_by_schema_type( $schema_id = null, $condition = null,
|
|
289 |
break;
|
290 |
|
291 |
case 'Blogposting':
|
|
|
292 |
$meta_field = array(
|
293 |
array(
|
294 |
'label' => 'Main Entity Of Page',
|
@@ -1411,8 +1412,15 @@ function saswp_get_fields_by_schema_type( $schema_id = null, $condition = null,
|
|
1411 |
'label' => 'GTIN8',
|
1412 |
'id' => 'saswp_product_schema_gtin8_'.$schema_id,
|
1413 |
'type' => 'text',
|
|
|
1414 |
'default' => saswp_remove_warnings($product_details, 'product_gtin8', 'saswp_string')
|
1415 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
1416 |
array(
|
1417 |
'label' => 'Seller Organization',
|
1418 |
'id' => 'saswp_product_schema_seller_'.$schema_id,
|
289 |
break;
|
290 |
|
291 |
case 'Blogposting':
|
292 |
+
case 'BlogPosting':
|
293 |
$meta_field = array(
|
294 |
array(
|
295 |
'label' => 'Main Entity Of Page',
|
1412 |
'label' => 'GTIN8',
|
1413 |
'id' => 'saswp_product_schema_gtin8_'.$schema_id,
|
1414 |
'type' => 'text',
|
1415 |
+
'note' => 'OR',
|
1416 |
'default' => saswp_remove_warnings($product_details, 'product_gtin8', 'saswp_string')
|
1417 |
),
|
1418 |
+
array(
|
1419 |
+
'label' => 'GTIN13',
|
1420 |
+
'id' => 'saswp_product_schema_gtin13_'.$schema_id,
|
1421 |
+
'type' => 'text',
|
1422 |
+
'default' => saswp_remove_warnings($product_details, 'product_gtin13', 'saswp_string')
|
1423 |
+
),
|
1424 |
array(
|
1425 |
'label' => 'Seller Organization',
|
1426 |
'id' => 'saswp_product_schema_seller_'.$schema_id,
|
core/array-list/schemas.php
CHANGED
@@ -11,7 +11,7 @@ return array(
|
|
11 |
),
|
12 |
'CreativeWork' => array(
|
13 |
'Article' => 'Article',
|
14 |
-
'
|
15 |
'Book' => 'Book',
|
16 |
'Course' => 'Course',
|
17 |
'DiscussionForumPosting' => 'DiscussionForumPosting',
|
11 |
),
|
12 |
'CreativeWork' => array(
|
13 |
'Article' => 'Article',
|
14 |
+
'BlogPosting' => 'BlogPosting',
|
15 |
'Book' => 'Book',
|
16 |
'Course' => 'Course',
|
17 |
'DiscussionForumPosting' => 'DiscussionForumPosting',
|
core/global.php
CHANGED
@@ -29,7 +29,7 @@ $without_aggregate = array(
|
|
29 |
'House',
|
30 |
'SingleFamilyResidence',
|
31 |
'Article',
|
32 |
-
'
|
33 |
'DiscussionForumPosting',
|
34 |
'DataFeed',
|
35 |
'FAQ',
|
29 |
'House',
|
30 |
'SingleFamilyResidence',
|
31 |
'Article',
|
32 |
+
'BlogPosting',
|
33 |
'DiscussionForumPosting',
|
34 |
'DataFeed',
|
35 |
'FAQ',
|
output/markup.php
CHANGED
@@ -664,6 +664,9 @@ function saswp_product_schema_markup($schema_id, $schema_post_id, $all_post_meta
|
|
664 |
if(isset($all_post_meta['saswp_product_schema_gtin8_'.$schema_id])){
|
665 |
$input1['gtin8'] = esc_attr($all_post_meta['saswp_product_schema_gtin8_'.$schema_id][0]);
|
666 |
}
|
|
|
|
|
|
|
667 |
if(isset($all_post_meta['saswp_product_schema_mpn_'.$schema_id])){
|
668 |
$input1['mpn'] = esc_attr($all_post_meta['saswp_product_schema_mpn_'.$schema_id][0]);
|
669 |
}
|
@@ -2049,8 +2052,8 @@ function saswp_blogposting_schema_markup($schema_id, $schema_post_id, $all_post_
|
|
2049 |
$slogo = get_post_meta( get_the_ID(), 'saswp_blogposting_organization_logo_'.$schema_id.'_detail',true);
|
2050 |
$input1 = array(
|
2051 |
'@context' => saswp_context_url(),
|
2052 |
-
'@type' => '
|
2053 |
-
'@id' => trailingslashit(get_permalink()).'#
|
2054 |
'inLanguage' => get_bloginfo('language'),
|
2055 |
'mainEntityOfPage' => saswp_remove_warnings($all_post_meta, 'saswp_blogposting_main_entity_of_page_'.$schema_id, 'saswp_array'),
|
2056 |
'headline' => saswp_remove_warnings($all_post_meta, 'saswp_blogposting_headline_'.$schema_id, 'saswp_array'),
|
@@ -2600,7 +2603,8 @@ function saswp_service_schema_markup($schema_id, $schema_post_id, $all_post_meta
|
|
2600 |
function saswp_review_schema_markup($schema_id, $schema_post_id, $all_post_meta){
|
2601 |
|
2602 |
global $sd_data;
|
2603 |
-
$input1
|
|
|
2604 |
|
2605 |
if(isset($sd_data['saswp-tagyeem']) && $sd_data['saswp-tagyeem'] == 1 && (is_plugin_active('taqyeem/taqyeem.php') || get_template() != 'jannah')){
|
2606 |
|
@@ -2611,8 +2615,8 @@ function saswp_review_schema_markup($schema_id, $schema_post_id, $all_post_meta)
|
|
2611 |
$input1['@context'] = saswp_context_url();
|
2612 |
$input1['@type'] = 'Review';
|
2613 |
$input1['@id'] = trailingslashit(get_permalink()).'#review';
|
2614 |
-
$input1['name'] = $all_post_meta['saswp_review_name_'.$schema_id][0];
|
2615 |
-
$input1['url'] = $all_post_meta['saswp_review_url_'.$schema_id][0];
|
2616 |
$input1['datePublished'] = isset($all_post_meta['saswp_review_date_published_'.$schema_id][0])&& $all_post_meta['saswp_review_date_published_'.$schema_id][0] !='' ? saswp_format_date_time($all_post_meta['saswp_review_date_published_'.$schema_id][0], get_post_time('h:i:s')) : '';
|
2617 |
|
2618 |
if(isset($all_post_meta['saswp_review_publisher_'.$schema_id][0])){
|
@@ -2657,7 +2661,7 @@ function saswp_review_schema_markup($schema_id, $schema_post_id, $all_post_meta)
|
|
2657 |
);
|
2658 |
}
|
2659 |
|
2660 |
-
$item_reviewed = $all_post_meta['saswp_review_item_reviewed_'.$schema_id][0];
|
2661 |
$item_schema = array();
|
2662 |
switch ($item_reviewed) {
|
2663 |
case 'Book':
|
664 |
if(isset($all_post_meta['saswp_product_schema_gtin8_'.$schema_id])){
|
665 |
$input1['gtin8'] = esc_attr($all_post_meta['saswp_product_schema_gtin8_'.$schema_id][0]);
|
666 |
}
|
667 |
+
if(isset($all_post_meta['saswp_product_schema_gtin13_'.$schema_id])){
|
668 |
+
$input1['gtin13'] = esc_attr($all_post_meta['saswp_product_schema_gtin13_'.$schema_id][0]);
|
669 |
+
}
|
670 |
if(isset($all_post_meta['saswp_product_schema_mpn_'.$schema_id])){
|
671 |
$input1['mpn'] = esc_attr($all_post_meta['saswp_product_schema_mpn_'.$schema_id][0]);
|
672 |
}
|
2052 |
$slogo = get_post_meta( get_the_ID(), 'saswp_blogposting_organization_logo_'.$schema_id.'_detail',true);
|
2053 |
$input1 = array(
|
2054 |
'@context' => saswp_context_url(),
|
2055 |
+
'@type' => 'BlogPosting' ,
|
2056 |
+
'@id' => trailingslashit(get_permalink()).'#BlogPosting',
|
2057 |
'inLanguage' => get_bloginfo('language'),
|
2058 |
'mainEntityOfPage' => saswp_remove_warnings($all_post_meta, 'saswp_blogposting_main_entity_of_page_'.$schema_id, 'saswp_array'),
|
2059 |
'headline' => saswp_remove_warnings($all_post_meta, 'saswp_blogposting_headline_'.$schema_id, 'saswp_array'),
|
2603 |
function saswp_review_schema_markup($schema_id, $schema_post_id, $all_post_meta){
|
2604 |
|
2605 |
global $sd_data;
|
2606 |
+
$input1 = array();
|
2607 |
+
$review_author = '';
|
2608 |
|
2609 |
if(isset($sd_data['saswp-tagyeem']) && $sd_data['saswp-tagyeem'] == 1 && (is_plugin_active('taqyeem/taqyeem.php') || get_template() != 'jannah')){
|
2610 |
|
2615 |
$input1['@context'] = saswp_context_url();
|
2616 |
$input1['@type'] = 'Review';
|
2617 |
$input1['@id'] = trailingslashit(get_permalink()).'#review';
|
2618 |
+
$input1['name'] = isset($all_post_meta['saswp_review_name_'.$schema_id][0]) ? $all_post_meta['saswp_review_name_'.$schema_id][0] : '';
|
2619 |
+
$input1['url'] = isset($all_post_meta['saswp_review_url_'.$schema_id][0]) ? $all_post_meta['saswp_review_url_'.$schema_id][0] : '';
|
2620 |
$input1['datePublished'] = isset($all_post_meta['saswp_review_date_published_'.$schema_id][0])&& $all_post_meta['saswp_review_date_published_'.$schema_id][0] !='' ? saswp_format_date_time($all_post_meta['saswp_review_date_published_'.$schema_id][0], get_post_time('h:i:s')) : '';
|
2621 |
|
2622 |
if(isset($all_post_meta['saswp_review_publisher_'.$schema_id][0])){
|
2661 |
);
|
2662 |
}
|
2663 |
|
2664 |
+
$item_reviewed = isset($all_post_meta['saswp_review_item_reviewed_'.$schema_id][0]) ? $all_post_meta['saswp_review_item_reviewed_'.$schema_id][0] : '';
|
2665 |
$item_schema = array();
|
2666 |
switch ($item_reviewed) {
|
2667 |
case 'Book':
|
output/output.php
CHANGED
@@ -332,8 +332,7 @@ function saswp_schema_output() {
|
|
332 |
|
333 |
$input1['@context'] = saswp_context_url();
|
334 |
$input1['@type'] = 'HowTo';
|
335 |
-
$input1['@id'] = trailingslashit(saswp_get_permalink()).'#HowTo';
|
336 |
-
$input1['estimatedCost']['@type'] = 'MonetaryAmount';
|
337 |
|
338 |
$input1 = saswp_append_fetched_reviews($input1, $schema_post_id);
|
339 |
|
@@ -471,7 +470,7 @@ function saswp_schema_output() {
|
|
471 |
$input1 = array_merge($input1, $woo_markp);
|
472 |
}
|
473 |
|
474 |
-
unset($input1['brand'], $input1['mpn'], $input1['sku'],$input1['gtin8']);
|
475 |
|
476 |
$input1 = saswp_append_fetched_reviews($input1, $schema_post_id);
|
477 |
|
@@ -736,7 +735,7 @@ function saswp_schema_output() {
|
|
736 |
$input1 = array(
|
737 |
'@context' => saswp_context_url(),
|
738 |
'@type' => 'DiscussionForumPosting' ,
|
739 |
-
'@id' => trailingslashit(saswp_get_permalink()).'#
|
740 |
'url' => trailingslashit(saswp_get_permalink()),
|
741 |
'mainEntityOfPage' => saswp_get_permalink(),
|
742 |
'headline' => saswp_get_the_title(),
|
@@ -776,11 +775,12 @@ function saswp_schema_output() {
|
|
776 |
break;
|
777 |
|
778 |
case 'Blogposting':
|
|
|
779 |
|
780 |
$input1 = array(
|
781 |
'@context' => saswp_context_url(),
|
782 |
'@type' => 'BlogPosting' ,
|
783 |
-
'@id' => trailingslashit(saswp_get_permalink()).'#
|
784 |
'url' => trailingslashit(saswp_get_permalink()),
|
785 |
'inLanguage' => get_bloginfo('language'),
|
786 |
'mainEntityOfPage' => trailingslashit(saswp_get_permalink()),
|
@@ -905,7 +905,7 @@ function saswp_schema_output() {
|
|
905 |
$input1 = array_merge($input1, $woo_markp);
|
906 |
}
|
907 |
|
908 |
-
unset($input1['brand'], $input1['mpn'], $input1['sku'],$input1['gtin8']);
|
909 |
|
910 |
if(!empty($publisher)){
|
911 |
$input1 = array_merge($input1, $publisher);
|
@@ -1374,8 +1374,7 @@ function saswp_schema_output() {
|
|
1374 |
if($modified_schema == 1){
|
1375 |
|
1376 |
$input1 = saswp_video_object_schema_markup($schema_post_id, get_the_ID(), $all_post_meta);
|
1377 |
-
}
|
1378 |
-
|
1379 |
break;
|
1380 |
|
1381 |
case 'ImageObject':
|
@@ -1477,7 +1476,7 @@ function saswp_schema_output() {
|
|
1477 |
|
1478 |
//Speakable schema
|
1479 |
|
1480 |
-
if($schema_type == 'TechArticle' || $schema_type == 'Article' || $schema_type == 'Blogposting' || $schema_type == 'NewsArticle' || $schema_type == 'WebPage'){
|
1481 |
|
1482 |
$speakable_status = get_post_meta($schema_post_id, 'saswp_enable_speakable_schema', true);
|
1483 |
|
332 |
|
333 |
$input1['@context'] = saswp_context_url();
|
334 |
$input1['@type'] = 'HowTo';
|
335 |
+
$input1['@id'] = trailingslashit(saswp_get_permalink()).'#HowTo';
|
|
|
336 |
|
337 |
$input1 = saswp_append_fetched_reviews($input1, $schema_post_id);
|
338 |
|
470 |
$input1 = array_merge($input1, $woo_markp);
|
471 |
}
|
472 |
|
473 |
+
unset($input1['brand'], $input1['mpn'], $input1['sku'],$input1['gtin8'], $input1['gtin13']);
|
474 |
|
475 |
$input1 = saswp_append_fetched_reviews($input1, $schema_post_id);
|
476 |
|
735 |
$input1 = array(
|
736 |
'@context' => saswp_context_url(),
|
737 |
'@type' => 'DiscussionForumPosting' ,
|
738 |
+
'@id' => trailingslashit(saswp_get_permalink()).'#BlogPosting',
|
739 |
'url' => trailingslashit(saswp_get_permalink()),
|
740 |
'mainEntityOfPage' => saswp_get_permalink(),
|
741 |
'headline' => saswp_get_the_title(),
|
775 |
break;
|
776 |
|
777 |
case 'Blogposting':
|
778 |
+
case 'BlogPosting':
|
779 |
|
780 |
$input1 = array(
|
781 |
'@context' => saswp_context_url(),
|
782 |
'@type' => 'BlogPosting' ,
|
783 |
+
'@id' => trailingslashit(saswp_get_permalink()).'#BlogPosting',
|
784 |
'url' => trailingslashit(saswp_get_permalink()),
|
785 |
'inLanguage' => get_bloginfo('language'),
|
786 |
'mainEntityOfPage' => trailingslashit(saswp_get_permalink()),
|
905 |
$input1 = array_merge($input1, $woo_markp);
|
906 |
}
|
907 |
|
908 |
+
unset($input1['brand'], $input1['mpn'], $input1['sku'],$input1['gtin8'], $input1['gtin13']);
|
909 |
|
910 |
if(!empty($publisher)){
|
911 |
$input1 = array_merge($input1, $publisher);
|
1374 |
if($modified_schema == 1){
|
1375 |
|
1376 |
$input1 = saswp_video_object_schema_markup($schema_post_id, get_the_ID(), $all_post_meta);
|
1377 |
+
}
|
|
|
1378 |
break;
|
1379 |
|
1380 |
case 'ImageObject':
|
1476 |
|
1477 |
//Speakable schema
|
1478 |
|
1479 |
+
if($schema_type == 'TechArticle' || $schema_type == 'Article' || $schema_type == 'Blogposting' || $schema_type == 'BlogPosting' || $schema_type == 'NewsArticle' || $schema_type == 'WebPage'){
|
1480 |
|
1481 |
$speakable_status = get_post_meta($schema_post_id, 'saswp_enable_speakable_schema', true);
|
1482 |
|
output/service.php
CHANGED
@@ -661,12 +661,12 @@ Class saswp_output_service{
|
|
661 |
if(isset($custom_fields['saswp_howto_schema_description'])){
|
662 |
$input1['description'] = wp_strip_all_tags(strip_shortcodes( $custom_fields['saswp_howto_schema_description'] ));
|
663 |
}
|
664 |
-
if(isset($custom_fields['saswp_howto_ec_schema_currency'])){
|
|
|
665 |
$input1['estimatedCost']['currency'] = $custom_fields['saswp_howto_ec_schema_currency'];
|
|
|
666 |
}
|
667 |
-
|
668 |
-
$input1['estimatedCost']['value'] = $custom_fields['saswp_howto_ec_schema_value'];
|
669 |
-
}
|
670 |
if(isset($custom_fields['saswp_howto_schema_totaltime'])){
|
671 |
$input1['totalTime'] = $custom_fields['saswp_howto_schema_totaltime'];
|
672 |
}
|
@@ -1313,8 +1313,10 @@ Class saswp_output_service{
|
|
1313 |
}
|
1314 |
if(isset($custom_fields['saswp_product_schema_gtin8'])){
|
1315 |
$input1['gtin8'] = $custom_fields['saswp_product_schema_gtin8'];
|
1316 |
-
}
|
1317 |
-
|
|
|
|
|
1318 |
if(isset($custom_fields['saswp_product_schema_description'])){
|
1319 |
$input1['description'] = wp_strip_all_tags(strip_shortcodes( $custom_fields['saswp_product_schema_description'] ));
|
1320 |
}
|
@@ -2387,6 +2389,11 @@ Class saswp_output_service{
|
|
2387 |
$product_details['product_gtin8'] = $attribute['options'][0];
|
2388 |
|
2389 |
}
|
|
|
|
|
|
|
|
|
|
|
2390 |
if(strtolower($attribute['name']) == 'brand'){
|
2391 |
|
2392 |
$product_details['product_brand'] = $attribute['options'][0];
|
@@ -2999,6 +3006,9 @@ Class saswp_output_service{
|
|
2999 |
if(isset($product_details['product_gtin8']) && $product_details['product_gtin8'] !=''){
|
3000 |
$input1['gtin8'] = esc_attr($product_details['product_gtin8']);
|
3001 |
}
|
|
|
|
|
|
|
3002 |
if(isset($product_details['product_mpn']) && $product_details['product_mpn'] !=''){
|
3003 |
$input1['mpn'] = esc_attr($product_details['product_mpn']);
|
3004 |
}
|
@@ -3194,8 +3204,8 @@ Class saswp_output_service{
|
|
3194 |
|
3195 |
$attach_images['image'][$k]['@type'] = 'ImageObject';
|
3196 |
$attach_images['image'][$k]['url'] = esc_url($attachment);
|
3197 |
-
$attach_images['image'][$k]['width'] =
|
3198 |
-
$attach_images['image'][$k]['height'] =
|
3199 |
|
3200 |
}
|
3201 |
|
661 |
if(isset($custom_fields['saswp_howto_schema_description'])){
|
662 |
$input1['description'] = wp_strip_all_tags(strip_shortcodes( $custom_fields['saswp_howto_schema_description'] ));
|
663 |
}
|
664 |
+
if(isset($custom_fields['saswp_howto_ec_schema_currency']) && isset($custom_fields['saswp_howto_ec_schema_value'])){
|
665 |
+
$input1['estimatedCost']['@type'] = 'MonetaryAmount';
|
666 |
$input1['estimatedCost']['currency'] = $custom_fields['saswp_howto_ec_schema_currency'];
|
667 |
+
$input1['estimatedCost']['value'] = $custom_fields['saswp_howto_ec_schema_value'];
|
668 |
}
|
669 |
+
|
|
|
|
|
670 |
if(isset($custom_fields['saswp_howto_schema_totaltime'])){
|
671 |
$input1['totalTime'] = $custom_fields['saswp_howto_schema_totaltime'];
|
672 |
}
|
1313 |
}
|
1314 |
if(isset($custom_fields['saswp_product_schema_gtin8'])){
|
1315 |
$input1['gtin8'] = $custom_fields['saswp_product_schema_gtin8'];
|
1316 |
+
}
|
1317 |
+
if(isset($custom_fields['saswp_product_schema_gtin13'])){
|
1318 |
+
$input1['gtin13'] = $custom_fields['saswp_product_schema_gtin13'];
|
1319 |
+
}
|
1320 |
if(isset($custom_fields['saswp_product_schema_description'])){
|
1321 |
$input1['description'] = wp_strip_all_tags(strip_shortcodes( $custom_fields['saswp_product_schema_description'] ));
|
1322 |
}
|
2389 |
$product_details['product_gtin8'] = $attribute['options'][0];
|
2390 |
|
2391 |
}
|
2392 |
+
if(strtolower($attribute['name']) == 'gtin13'){
|
2393 |
+
|
2394 |
+
$product_details['product_gtin13'] = $attribute['options'][0];
|
2395 |
+
|
2396 |
+
}
|
2397 |
if(strtolower($attribute['name']) == 'brand'){
|
2398 |
|
2399 |
$product_details['product_brand'] = $attribute['options'][0];
|
3006 |
if(isset($product_details['product_gtin8']) && $product_details['product_gtin8'] !=''){
|
3007 |
$input1['gtin8'] = esc_attr($product_details['product_gtin8']);
|
3008 |
}
|
3009 |
+
if(isset($product_details['product_gtin13']) && $product_details['product_gtin13'] !=''){
|
3010 |
+
$input1['gtin13'] = esc_attr($product_details['product_gtin13']);
|
3011 |
+
}
|
3012 |
if(isset($product_details['product_mpn']) && $product_details['product_mpn'] !=''){
|
3013 |
$input1['mpn'] = esc_attr($product_details['product_mpn']);
|
3014 |
}
|
3204 |
|
3205 |
$attach_images['image'][$k]['@type'] = 'ImageObject';
|
3206 |
$attach_images['image'][$k]['url'] = esc_url($attachment);
|
3207 |
+
$attach_images['image'][$k]['width'] = isset($attach_details[$k][0]) ? $attach_details[$k][0] : 0;
|
3208 |
+
$attach_images['image'][$k]['height'] = isset($attach_details[$k][1]) ? $attach_details[$k][1] : 0;
|
3209 |
|
3210 |
}
|
3211 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: magazine3
|
|
3 |
Tags: Schema, Structured Data, Google Snippets, Rich Snippets, Schema.org, SEO, AMP
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.3
|
6 |
-
Stable tag: 1.9.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -118,6 +118,18 @@ You can contact us from [here](http://structured-data-for-wp.com/contact-us/)
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
= 1.9.27 (25 Feb 2020) =
|
122 |
|
123 |
* Fixed: GPS coordinates are not working on Post for tourist attraction schema type. #800
|
3 |
Tags: Schema, Structured Data, Google Snippets, Rich Snippets, Schema.org, SEO, AMP
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.3
|
6 |
+
Stable tag: 1.9.28
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
+
= 1.9.28 (11 Mar 2020) =
|
122 |
+
|
123 |
+
* Added: Support for EAN-codes (gtin 13) in product schema #862
|
124 |
+
* Fixed: images not found in customizer #868
|
125 |
+
* Fixed: After adding product in the review section using add schema type wizard it's showing the book #841
|
126 |
+
* Fixed: Schema type in Archive of general settings need to have some padding as it should display as sub child of the archive #846
|
127 |
+
* Fixed: When migrating from ampforwp to schema default post and page type is setting up to apartment in backend #851
|
128 |
+
* Fixed: YouTube URL is not getting fetched if the embed structure is different. #854
|
129 |
+
* Fixed: If there are no data in the value and currency fields of the How-to schema, than it should not add estimatedCost property. #853
|
130 |
+
* Fixed: Warnings & Notices fixed. #861, #847 & #866,
|
131 |
+
|
132 |
+
|
133 |
= 1.9.27 (25 Feb 2020) =
|
134 |
|
135 |
* Fixed: GPS coordinates are not working on Post for tourist attraction schema type. #800
|
structured-data-for-wp.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Schema & Structured Data for WP & AMP
|
4 |
Description: Schema & Structured Data adds Google Rich Snippets markup according to Schema.org guidelines to structure your site for SEO. (AMP Compatible)
|
5 |
-
Version: 1.9.
|
6 |
Text Domain: schema-and-structured-data-for-wp
|
7 |
Domain Path: /languages
|
8 |
Author: Magazine3
|
@@ -13,7 +13,7 @@ License: GPL2
|
|
13 |
// Exit if accessed directly.
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
16 |
-
define('SASWP_VERSION', '1.9.
|
17 |
define('SASWP_DIR_NAME_FILE', __FILE__ );
|
18 |
define('SASWP_DIR_NAME', dirname( __FILE__ ));
|
19 |
define('SASWP_DIR_URI', plugin_dir_url(__FILE__));
|
2 |
/*
|
3 |
Plugin Name: Schema & Structured Data for WP & AMP
|
4 |
Description: Schema & Structured Data adds Google Rich Snippets markup according to Schema.org guidelines to structure your site for SEO. (AMP Compatible)
|
5 |
+
Version: 1.9.28
|
6 |
Text Domain: schema-and-structured-data-for-wp
|
7 |
Domain Path: /languages
|
8 |
Author: Magazine3
|
13 |
// Exit if accessed directly.
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
15 |
|
16 |
+
define('SASWP_VERSION', '1.9.28');
|
17 |
define('SASWP_DIR_NAME_FILE', __FILE__ );
|
18 |
define('SASWP_DIR_NAME', dirname( __FILE__ ));
|
19 |
define('SASWP_DIR_URI', plugin_dir_url(__FILE__));
|
view/common.php
CHANGED
@@ -37,7 +37,7 @@ class saswp_view_common_class {
|
|
37 |
$this->_meta_name = $repeater_fields['meta_name'];
|
38 |
|
39 |
foreach($this->item_list_item as $item){
|
40 |
-
$this->itemlist_meta[$item] = saswp_get_fields_by_schema_type(null, null, $item, 'manual');
|
41 |
}
|
42 |
$this->_meta_name['itemlist_item'] = $this->itemlist_meta;
|
43 |
}
|
37 |
$this->_meta_name = $repeater_fields['meta_name'];
|
38 |
|
39 |
foreach($this->item_list_item as $item){
|
40 |
+
$this->itemlist_meta[$item] = @saswp_get_fields_by_schema_type(null, null, $item, 'manual');
|
41 |
}
|
42 |
$this->_meta_name['itemlist_item'] = $this->itemlist_meta;
|
43 |
}
|
view/schema_type.php
CHANGED
@@ -255,6 +255,10 @@ function saswp_schema_type_meta_box_callback( $post) {
|
|
255 |
if($schema_type == $key){
|
256 |
$sel = 'selected';
|
257 |
}
|
|
|
|
|
|
|
|
|
258 |
|
259 |
$option_html.= "<option value='".esc_attr($key)."' ".esc_attr($sel).">".esc_html__($value, 'schema-and-structured-data-for-wp' )."</option>";
|
260 |
|
255 |
if($schema_type == $key){
|
256 |
$sel = 'selected';
|
257 |
}
|
258 |
+
|
259 |
+
if($schema_type == 'Blogposting' && $key == 'BlogPosting'){
|
260 |
+
$sel = 'selected';
|
261 |
+
}
|
262 |
|
263 |
$option_html.= "<option value='".esc_attr($key)."' ".esc_attr($sel).">".esc_html__($value, 'schema-and-structured-data-for-wp' )."</option>";
|
264 |
|