Version Description
(2020-11-16) = * Tweak: Update interval button new look. * Tweak: Clear cache button new look.
Download this release
Release Info
Developer | wahid0003 |
Plugin | CTX Feed – WooCommerce Product Feed Manager Plugin |
Version | 4.2.0 |
Comparing to | |
See all releases |
Code changes from version 4.1.9 to 4.2.0
- README.txt +5 -1
- admin/css/fancy-select.css +172 -172
- admin/css/woo-feed-admin-pro.css +630 -630
- admin/css/woo-feed-admin.css +1322 -1317
- admin/css/woo-feed-admin.min.css +1 -1
- admin/css/woo-feed-admin.scss +14 -1
- admin/partials/woo-feed-manage-list.php +2 -2
- woo-feed.php +2 -2
README.txt
CHANGED
@@ -8,7 +8,7 @@ Google Product Review feed, product variations, rakuteen, shopping, skroutz, TSV
|
|
8 |
Requires at least: 3.6
|
9 |
Tested Up To: 5.5
|
10 |
Requires PHP: 5.6
|
11 |
-
Stable tag: 4.
|
12 |
License: GPLv2 or later
|
13 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
@@ -311,6 +311,10 @@ Using pro version:
|
|
311 |
|
312 |
== Changelog ==
|
313 |
|
|
|
|
|
|
|
|
|
314 |
= 4.1.9 (2020-11-15) =
|
315 |
* Tweak: Local product inventory template updated.
|
316 |
* Fix: Local product csv template.
|
8 |
Requires at least: 3.6
|
9 |
Tested Up To: 5.5
|
10 |
Requires PHP: 5.6
|
11 |
+
Stable tag: 4.2.0
|
12 |
License: GPLv2 or later
|
13 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
311 |
|
312 |
== Changelog ==
|
313 |
|
314 |
+
= 4.2.0 (2020-11-16) =
|
315 |
+
* Tweak: Update interval button new look.
|
316 |
+
* Tweak: Clear cache button new look.
|
317 |
+
|
318 |
= 4.1.9 (2020-11-15) =
|
319 |
* Tweak: Local product inventory template updated.
|
320 |
* Fix: Local product csv template.
|
admin/css/fancy-select.css
CHANGED
@@ -3,175 +3,175 @@
|
|
3 |
* @version 1.0.0
|
4 |
* @copyright 2020 Webappick
|
5 |
* @author Kudratullah <mhamudul.hk@gmail.com>
|
6 |
-
*/
|
7 |
-
.fancy-picker, .fancy-picker * {
|
8 |
-
box-sizing: border-box;
|
9 |
-
cursor: default;
|
10 |
-
-webkit-user-select: none;
|
11 |
-
-moz-user-select: none;
|
12 |
-
-ms-user-select: none;
|
13 |
-
user-select: none; }
|
14 |
-
|
15 |
-
.fancy-picker {
|
16 |
-
position: relative;
|
17 |
-
display: block;
|
18 |
-
width: 100%;
|
19 |
-
height: 30px;
|
20 |
-
margin: 0 !important;
|
21 |
-
padding: 0 !important; }
|
22 |
-
|
23 |
-
.fancy-picker-picked {
|
24 |
-
width: 100%;
|
25 |
-
height: 100%;
|
26 |
-
overflow: hidden;
|
27 |
-
display: block;
|
28 |
-
position: relative;
|
29 |
-
border: 1px solid #7e8993;
|
30 |
-
border-radius: 4px;
|
31 |
-
padding: 3.5px 0;
|
32 |
-
box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.45); }
|
33 |
-
|
34 |
-
.fancy-picker-placeholder,
|
35 |
-
.fancy-picker-data {
|
36 |
-
display: block;
|
37 |
-
width: calc( 100% - 25px);
|
38 |
-
float: left;
|
39 |
-
font-weight: 500;
|
40 |
-
padding: 1px 5px;
|
41 |
-
overflow: hidden;
|
42 |
-
text-overflow: ellipsis;
|
43 |
-
white-space: pre;
|
44 |
-
top: -1px; }
|
45 |
-
.fancy-picker-placeholder > span,
|
46 |
-
.fancy-picker-data > span {
|
47 |
-
display: inline;
|
48 |
-
position: relative; }
|
49 |
-
.fancy-picker-placeholder > span:empty,
|
50 |
-
.fancy-picker-data > span:empty {
|
51 |
-
display: none; }
|
52 |
-
.fancy-picker-placeholder:empty,
|
53 |
-
.fancy-picker-data:empty {
|
54 |
-
display: none; }
|
55 |
-
|
56 |
-
.fancy-picker-separator {
|
57 |
-
margin-right: 3px; }
|
58 |
-
|
59 |
-
.fancy-picker-count {
|
60 |
-
position: absolute;
|
61 |
-
display: block;
|
62 |
-
top: 50%;
|
63 |
-
-webkit-transform: translateY(-50%);
|
64 |
-
transform: translateY(-50%);
|
65 |
-
right: 21px;
|
66 |
-
color: #ffffff;
|
67 |
-
background: rgba(35, 40, 45, 0.7);
|
68 |
-
z-index: 1;
|
69 |
-
padding: 1px 3px;
|
70 |
-
font-size: 12px;
|
71 |
-
line-height: normal;
|
72 |
-
border-radius: 5px; }
|
73 |
-
.fancy-picker-count:empty {
|
74 |
-
display: none; }
|
75 |
-
|
76 |
-
.fancy-picker-option {
|
77 |
-
font-weight: 500;
|
78 |
-
width: 100%;
|
79 |
-
display: block;
|
80 |
-
float: left;
|
81 |
-
cursor: default;
|
82 |
-
padding: 2px 8px;
|
83 |
-
transition: background 300ms linear; }
|
84 |
-
.fancy-picker-option:nth-child(odd) {
|
85 |
-
background: #f3f3f3; }
|
86 |
-
.fancy-picker-option.selected {
|
87 |
-
color: #000;
|
88 |
-
background: #acf; }
|
89 |
-
.fancy-picker-option.disabled {
|
90 |
-
color: #464646;
|
91 |
-
background: #e8e8e8;
|
92 |
-
cursor: not-allowed; }
|
93 |
-
.fancy-picker-option:not(.disabled):hover {
|
94 |
-
background: #00a1ff;
|
95 |
-
color: #FFF; }
|
96 |
-
|
97 |
-
.fancy-picker-content {
|
98 |
-
overflow-y: auto;
|
99 |
-
overflow-x: hidden;
|
100 |
-
max-height: 200px;
|
101 |
-
width: 100%;
|
102 |
-
-webkit-overflow-scrolling: touch;
|
103 |
-
padding: 3px 0 20px 0;
|
104 |
-
background: #FFF; }
|
105 |
-
|
106 |
-
.fancy-picker-ui {
|
107 |
-
position: absolute;
|
108 |
-
display: none;
|
109 |
-
background: #FFF;
|
110 |
-
z-index: 999;
|
111 |
-
border: 1px solid #7e8993;
|
112 |
-
top: 36px;
|
113 |
-
padding: 0;
|
114 |
-
margin: 0;
|
115 |
-
box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.96); }
|
116 |
-
.fancy-picker-ui:before {
|
117 |
-
content: "";
|
118 |
-
position: absolute;
|
119 |
-
width: 10px;
|
120 |
-
height: 10px;
|
121 |
-
border-top: 1px solid #4f555a;
|
122 |
-
border-left: 1px solid #4f555a;
|
123 |
-
top: -6px;
|
124 |
-
left: 10px;
|
125 |
-
-webkit-transform: rotate(45deg);
|
126 |
-
transform: rotate(45deg);
|
127 |
-
z-index: -1;
|
128 |
-
background: #4f555a; }
|
129 |
-
|
130 |
-
.fancy-picker-picked:after {
|
131 |
-
content: "";
|
132 |
-
display: block;
|
133 |
-
position: absolute;
|
134 |
-
width: 0;
|
135 |
-
height: 0;
|
136 |
-
float: right;
|
137 |
-
background: transparent;
|
138 |
-
border-style: solid;
|
139 |
-
border-color: #7e8993 transparent;
|
140 |
-
border-width: 7px 5px 0 5px;
|
141 |
-
top: 50%;
|
142 |
-
-webkit-transform: translateY(-50%) rotate(0deg);
|
143 |
-
transform: translateY(-50%) rotate(0deg);
|
144 |
-
right: 5px;
|
145 |
-
transition: all 350ms linear;
|
146 |
-
cursor: pointer; }
|
147 |
-
|
148 |
-
.fancy-picker-picked:before {
|
149 |
-
position: relative;
|
150 |
-
display: block;
|
151 |
-
content: "";
|
152 |
-
width: 5px;
|
153 |
-
height: 15px;
|
154 |
-
padding: 1px 0;
|
155 |
-
background: transparent;
|
156 |
-
border-left-width: 4px;
|
157 |
-
border-left-color: #7e8993;
|
158 |
-
border-left-style: dotted;
|
159 |
-
float: left;
|
160 |
-
left: 5px;
|
161 |
-
top: 2px;
|
162 |
-
transition: all 350ms linear; }
|
163 |
-
|
164 |
-
.fancy-picker.active .fancy-picker-ui {
|
165 |
-
display: block; }
|
166 |
-
|
167 |
-
.fancy-picker.active .fancy-picker-picked {
|
168 |
-
box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.45), inset 0 0 4px -1px rgba(0, 0, 0, 0.27); }
|
169 |
-
.fancy-picker.active .fancy-picker-picked:after {
|
170 |
-
border-color: #31363a transparent;
|
171 |
-
-webkit-transform: translateY(-50%) rotate3d(1, 0, 0, 180deg);
|
172 |
-
transform: translateY(-50%) rotate3d(1, 0, 0, 180deg); }
|
173 |
-
.fancy-picker.active .fancy-picker-picked:before {
|
174 |
-
border-left-color: #31363a; }
|
175 |
-
|
176 |
-
.fancy-picker:hover .fancy-picker-picked:before {
|
177 |
-
border-left-color: #31363a; }
|
3 |
* @version 1.0.0
|
4 |
* @copyright 2020 Webappick
|
5 |
* @author Kudratullah <mhamudul.hk@gmail.com>
|
6 |
+
*/
|
7 |
+
.fancy-picker, .fancy-picker * {
|
8 |
+
box-sizing: border-box;
|
9 |
+
cursor: default;
|
10 |
+
-webkit-user-select: none;
|
11 |
+
-moz-user-select: none;
|
12 |
+
-ms-user-select: none;
|
13 |
+
user-select: none; }
|
14 |
+
|
15 |
+
.fancy-picker {
|
16 |
+
position: relative;
|
17 |
+
display: block;
|
18 |
+
width: 100%;
|
19 |
+
height: 30px;
|
20 |
+
margin: 0 !important;
|
21 |
+
padding: 0 !important; }
|
22 |
+
|
23 |
+
.fancy-picker-picked {
|
24 |
+
width: 100%;
|
25 |
+
height: 100%;
|
26 |
+
overflow: hidden;
|
27 |
+
display: block;
|
28 |
+
position: relative;
|
29 |
+
border: 1px solid #7e8993;
|
30 |
+
border-radius: 4px;
|
31 |
+
padding: 3.5px 0;
|
32 |
+
box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.45); }
|
33 |
+
|
34 |
+
.fancy-picker-placeholder,
|
35 |
+
.fancy-picker-data {
|
36 |
+
display: block;
|
37 |
+
width: calc( 100% - 25px);
|
38 |
+
float: left;
|
39 |
+
font-weight: 500;
|
40 |
+
padding: 1px 5px;
|
41 |
+
overflow: hidden;
|
42 |
+
text-overflow: ellipsis;
|
43 |
+
white-space: pre;
|
44 |
+
top: -1px; }
|
45 |
+
.fancy-picker-placeholder > span,
|
46 |
+
.fancy-picker-data > span {
|
47 |
+
display: inline;
|
48 |
+
position: relative; }
|
49 |
+
.fancy-picker-placeholder > span:empty,
|
50 |
+
.fancy-picker-data > span:empty {
|
51 |
+
display: none; }
|
52 |
+
.fancy-picker-placeholder:empty,
|
53 |
+
.fancy-picker-data:empty {
|
54 |
+
display: none; }
|
55 |
+
|
56 |
+
.fancy-picker-separator {
|
57 |
+
margin-right: 3px; }
|
58 |
+
|
59 |
+
.fancy-picker-count {
|
60 |
+
position: absolute;
|
61 |
+
display: block;
|
62 |
+
top: 50%;
|
63 |
+
-webkit-transform: translateY(-50%);
|
64 |
+
transform: translateY(-50%);
|
65 |
+
right: 21px;
|
66 |
+
color: #ffffff;
|
67 |
+
background: rgba(35, 40, 45, 0.7);
|
68 |
+
z-index: 1;
|
69 |
+
padding: 1px 3px;
|
70 |
+
font-size: 12px;
|
71 |
+
line-height: normal;
|
72 |
+
border-radius: 5px; }
|
73 |
+
.fancy-picker-count:empty {
|
74 |
+
display: none; }
|
75 |
+
|
76 |
+
.fancy-picker-option {
|
77 |
+
font-weight: 500;
|
78 |
+
width: 100%;
|
79 |
+
display: block;
|
80 |
+
float: left;
|
81 |
+
cursor: default;
|
82 |
+
padding: 2px 8px;
|
83 |
+
transition: background 300ms linear; }
|
84 |
+
.fancy-picker-option:nth-child(odd) {
|
85 |
+
background: #f3f3f3; }
|
86 |
+
.fancy-picker-option.selected {
|
87 |
+
color: #000;
|
88 |
+
background: #acf; }
|
89 |
+
.fancy-picker-option.disabled {
|
90 |
+
color: #464646;
|
91 |
+
background: #e8e8e8;
|
92 |
+
cursor: not-allowed; }
|
93 |
+
.fancy-picker-option:not(.disabled):hover {
|
94 |
+
background: #00a1ff;
|
95 |
+
color: #FFF; }
|
96 |
+
|
97 |
+
.fancy-picker-content {
|
98 |
+
overflow-y: auto;
|
99 |
+
overflow-x: hidden;
|
100 |
+
max-height: 200px;
|
101 |
+
width: 100%;
|
102 |
+
-webkit-overflow-scrolling: touch;
|
103 |
+
padding: 3px 0 20px 0;
|
104 |
+
background: #FFF; }
|
105 |
+
|
106 |
+
.fancy-picker-ui {
|
107 |
+
position: absolute;
|
108 |
+
display: none;
|
109 |
+
background: #FFF;
|
110 |
+
z-index: 999;
|
111 |
+
border: 1px solid #7e8993;
|
112 |
+
top: 36px;
|
113 |
+
padding: 0;
|
114 |
+
margin: 0;
|
115 |
+
box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.96); }
|
116 |
+
.fancy-picker-ui:before {
|
117 |
+
content: "";
|
118 |
+
position: absolute;
|
119 |
+
width: 10px;
|
120 |
+
height: 10px;
|
121 |
+
border-top: 1px solid #4f555a;
|
122 |
+
border-left: 1px solid #4f555a;
|
123 |
+
top: -6px;
|
124 |
+
left: 10px;
|
125 |
+
-webkit-transform: rotate(45deg);
|
126 |
+
transform: rotate(45deg);
|
127 |
+
z-index: -1;
|
128 |
+
background: #4f555a; }
|
129 |
+
|
130 |
+
.fancy-picker-picked:after {
|
131 |
+
content: "";
|
132 |
+
display: block;
|
133 |
+
position: absolute;
|
134 |
+
width: 0;
|
135 |
+
height: 0;
|
136 |
+
float: right;
|
137 |
+
background: transparent;
|
138 |
+
border-style: solid;
|
139 |
+
border-color: #7e8993 transparent;
|
140 |
+
border-width: 7px 5px 0 5px;
|
141 |
+
top: 50%;
|
142 |
+
-webkit-transform: translateY(-50%) rotate(0deg);
|
143 |
+
transform: translateY(-50%) rotate(0deg);
|
144 |
+
right: 5px;
|
145 |
+
transition: all 350ms linear;
|
146 |
+
cursor: pointer; }
|
147 |
+
|
148 |
+
.fancy-picker-picked:before {
|
149 |
+
position: relative;
|
150 |
+
display: block;
|
151 |
+
content: "";
|
152 |
+
width: 5px;
|
153 |
+
height: 15px;
|
154 |
+
padding: 1px 0;
|
155 |
+
background: transparent;
|
156 |
+
border-left-width: 4px;
|
157 |
+
border-left-color: #7e8993;
|
158 |
+
border-left-style: dotted;
|
159 |
+
float: left;
|
160 |
+
left: 5px;
|
161 |
+
top: 2px;
|
162 |
+
transition: all 350ms linear; }
|
163 |
+
|
164 |
+
.fancy-picker.active .fancy-picker-ui {
|
165 |
+
display: block; }
|
166 |
+
|
167 |
+
.fancy-picker.active .fancy-picker-picked {
|
168 |
+
box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.45), inset 0 0 4px -1px rgba(0, 0, 0, 0.27); }
|
169 |
+
.fancy-picker.active .fancy-picker-picked:after {
|
170 |
+
border-color: #31363a transparent;
|
171 |
+
-webkit-transform: translateY(-50%) rotate3d(1, 0, 0, 180deg);
|
172 |
+
transform: translateY(-50%) rotate3d(1, 0, 0, 180deg); }
|
173 |
+
.fancy-picker.active .fancy-picker-picked:before {
|
174 |
+
border-left-color: #31363a; }
|
175 |
+
|
176 |
+
.fancy-picker:hover .fancy-picker-picked:before {
|
177 |
+
border-left-color: #31363a; }
|
admin/css/woo-feed-admin-pro.css
CHANGED
@@ -1,632 +1,632 @@
|
|
1 |
-
table.wf-info-table th a,
|
2 |
-
table.wf-rate-table th strong {
|
3 |
-
font-weight: bold; }
|
4 |
-
|
5 |
-
table.wf-info-table th a,
|
6 |
-
table.wf-rate-table a {
|
7 |
-
color: #0073aa; }
|
8 |
-
|
9 |
-
table.wf-info-table th a.get-woo-feed-pro {
|
10 |
-
display: inline-block;
|
11 |
-
text-decoration: none;
|
12 |
-
background: #f3f5f6;
|
13 |
-
color: #ff3355;
|
14 |
-
vertical-align: top;
|
15 |
-
font-size: 14px;
|
16 |
-
line-height: 3.14285714;
|
17 |
-
box-sizing: border-box;
|
18 |
-
margin: 0;
|
19 |
-
border-radius: 35px;
|
20 |
-
box-shadow: 1px 2px 10px 1px rgba(255, 51, 85, 0.5); }
|
21 |
-
|
22 |
-
table.wf-info-table th a.get-woo-feed-pro img {
|
23 |
-
display: block;
|
24 |
-
position: relative;
|
25 |
-
margin: -2px;
|
26 |
-
width: 180px;
|
27 |
-
height: auto; }
|
28 |
-
|
29 |
-
table.wf-info-table th a.button {
|
30 |
-
border-color: #0073aa;
|
31 |
-
border-radius: 35px; }
|
32 |
-
|
33 |
-
table.wf-info-table th a.documentation {
|
34 |
-
color: #0073aa; }
|
35 |
-
|
36 |
-
table.wf-info-table th a.tutorial {
|
37 |
-
color: #ee264a; }
|
38 |
-
|
39 |
-
table.wf-info-table th a.support {
|
40 |
-
color: #0DD41E; }
|
41 |
-
|
42 |
/**
|
43 |
* Premium Page Design
|
44 |
-
*/
|
45 |
-
.wp-submenu li span.woo-feed-premium {
|
46 |
-
font-weight: bold;
|
47 |
-
color: #28e499; }
|
48 |
-
|
49 |
-
.wp-submenu li:hover span.woo-feed-premium,
|
50 |
-
.wp-submenu li.current span.woo-feed-premium {
|
51 |
-
color: #1dc381; }
|
52 |
-
|
53 |
-
.woo_feed_free_manage_attribute {
|
54 |
-
margin: 0 auto;
|
55 |
-
width: 100%; }
|
56 |
-
|
57 |
-
.woo_feed_screenshort {
|
58 |
-
max-width: 100%;
|
59 |
-
width: 1000px;
|
60 |
-
border: 3px solid #00b9eb;
|
61 |
-
display: block;
|
62 |
-
margin: 0 auto; }
|
63 |
-
|
64 |
-
.woo-feed-screen-shot-title {
|
65 |
-
font-size: 36px;
|
66 |
-
text-align: center;
|
67 |
-
box-sizing: content-box;
|
68 |
-
color: #00b9eb; }
|
69 |
-
|
70 |
-
.woo_feed_screen {
|
71 |
-
background: #fff;
|
72 |
-
padding: 25px 20px;
|
73 |
-
margin-bottom: 20px; }
|
74 |
-
|
75 |
-
.woo_feed_screen_des {
|
76 |
-
text-align: center;
|
77 |
-
margin: 20px 50px 20px 50px;
|
78 |
-
font-size: 16px;
|
79 |
-
color: #666; }
|
80 |
-
|
81 |
-
.woo_feed_screen_des_2 {
|
82 |
-
text-align: center;
|
83 |
-
margin: 20px 50px 5px 50px;
|
84 |
-
font-size: 14px;
|
85 |
-
color: #32373c; }
|
86 |
-
|
87 |
-
.wapk-admin .wapk-feed-upgrade {
|
88 |
-
font-family: 'Open Sans', sans-serif;
|
89 |
-
margin: -10px -20px 0 -22px; }
|
90 |
-
|
91 |
-
.wapk-admin .wapk-feed-upgrade a {
|
92 |
-
transition: all 0.2s ease; }
|
93 |
-
|
94 |
-
.wapk-admin .section-title {
|
95 |
-
text-align: center;
|
96 |
-
font-size: 30px;
|
97 |
-
line-height: 1.5em;
|
98 |
-
font-weight: 400;
|
99 |
-
position: relative;
|
100 |
-
margin: 0 0 58px; }
|
101 |
-
|
102 |
-
.wapk-admin .section-title:after {
|
103 |
-
content: '';
|
104 |
-
position: absolute;
|
105 |
-
bottom: -21px;
|
106 |
-
left: 50%;
|
107 |
-
-webkit-transform: translateX(-50%);
|
108 |
-
transform: translateX(-50%);
|
109 |
-
width: 38px;
|
110 |
-
height: 5px;
|
111 |
-
border-radius: 3px;
|
112 |
-
background-color: #00D4D4; }
|
113 |
-
|
114 |
-
.wapk-admin .section-title .section-sub-title {
|
115 |
-
font-size: 22px;
|
116 |
-
font-weight: 300; }
|
117 |
-
|
118 |
-
.wapk-admin .wapk-banner {
|
119 |
-
background-color: #f2f2f2;
|
120 |
-
font-size: 16px;
|
121 |
-
display: -ms-flexbox;
|
122 |
-
display: flex;
|
123 |
-
-ms-flex-align: center;
|
124 |
-
align-items: center;
|
125 |
-
padding: 50px 8%;
|
126 |
-
border-bottom: 1px solid #eee; }
|
127 |
-
|
128 |
-
.wapk-admin .wapk-banner .wapk-banner__graphics {
|
129 |
-
width: 100%; }
|
130 |
-
|
131 |
-
.wapk-admin .wapk-banner .wapk-banner__content h1 {
|
132 |
-
font-size: 27px;
|
133 |
-
line-height: 1.5em; }
|
134 |
-
|
135 |
-
.wapk-admin .wapk-banner .wapk-banner__content p {
|
136 |
-
font-size: 16px;
|
137 |
-
line-height: 1.5em;
|
138 |
-
font-weight: 300;
|
139 |
-
margin: 0;
|
140 |
-
/*noinspection CssFloatPxLength*/
|
141 |
-
letter-spacing: 0.5px; }
|
142 |
-
|
143 |
-
.wapk-admin .feed-features,
|
144 |
-
.wapk-admin .wapk-testimonial,
|
145 |
-
.wapk-admin .feed-pricing {
|
146 |
-
text-align: center;
|
147 |
-
padding: 75px 30px 85px;
|
148 |
-
background-color: #f7f8f9; }
|
149 |
-
|
150 |
-
.wapk-admin .feed-features .feed-feature__list {
|
151 |
-
display: -ms-flexbox;
|
152 |
-
display: flex;
|
153 |
-
-ms-flex-wrap: wrap;
|
154 |
-
flex-wrap: wrap;
|
155 |
-
-ms-flex-align: start;
|
156 |
-
align-items: flex-start;
|
157 |
-
-ms-flex-pack: center;
|
158 |
-
justify-content: center; }
|
159 |
-
|
160 |
-
.wapk-admin .feed-features .feed-features__more {
|
161 |
-
margin-top: 25px; }
|
162 |
-
|
163 |
-
.feed-feature__item {
|
164 |
-
-ms-flex: 0 0 28.9%;
|
165 |
-
flex: 0 0 28.9%;
|
166 |
-
margin: 0 2.2% 4.4% 2.2%;
|
167 |
-
text-align: center;
|
168 |
-
border-radius: 5px;
|
169 |
-
background-color: #ffffff;
|
170 |
-
transition: all 100ms linear;
|
171 |
-
overflow: hidden; }
|
172 |
-
|
173 |
-
.feed-feature__item:hover {
|
174 |
-
box-shadow: 5px 4px 32px -16px rgba(0, 0, 0, 0.63); }
|
175 |
-
|
176 |
-
.feed-feature__thumb {
|
177 |
-
overflow: hidden; }
|
178 |
-
|
179 |
-
.feed-feature__item .feed-feature__thumb img {
|
180 |
-
border-radius: 5px 5px 0 0;
|
181 |
-
max-width: 100%;
|
182 |
-
width: 100%;
|
183 |
-
transition: all 100ms linear; }
|
184 |
-
|
185 |
-
.feed-feature__item:hover .feed-feature__thumb img {
|
186 |
-
-webkit-transform: scale(1.05);
|
187 |
-
transform: scale(1.05); }
|
188 |
-
|
189 |
-
.feed-feature__item .feed-feature__description {
|
190 |
-
padding: 20px 15px 25px; }
|
191 |
-
|
192 |
-
.feed-feature__item .feed-feature__description h3 {
|
193 |
-
font-size: 15px;
|
194 |
-
line-height: 1.5em;
|
195 |
-
font-weight: 300;
|
196 |
-
margin: 0; }
|
197 |
-
|
198 |
-
.wapk-admin .feed-pro-comparison {
|
199 |
-
background-color: #f1f1f1;
|
200 |
-
padding: 75px; }
|
201 |
-
|
202 |
-
.wapk-admin .feed-features .section-title h2,
|
203 |
-
.wapk-admin .wapk-testimonial .section-title h2,
|
204 |
-
.wapk-admin .feed-pro-comparison .section-title h2,
|
205 |
-
.wapk-admin .feed-pricing .section-title h2 {
|
206 |
-
margin-top: 0;
|
207 |
-
margin-bottom: 0; }
|
208 |
-
|
209 |
-
.wapk-admin .comparison-table {
|
210 |
-
display: -ms-flexbox;
|
211 |
-
display: flex;
|
212 |
-
-ms-flex-pack: justify;
|
213 |
-
justify-content: space-between; }
|
214 |
-
|
215 |
-
.wapk-admin .comparison-table .comparison {
|
216 |
-
-ms-flex: 0 0 48%;
|
217 |
-
flex: 0 0 48%;
|
218 |
-
background-color: #fff;
|
219 |
-
border: 1px solid #e0e9ec;
|
220 |
-
border-radius: 5px;
|
221 |
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
222 |
-
padding: 50px;
|
223 |
-
box-sizing: border-box; }
|
224 |
-
|
225 |
-
.wapk-admin .comparison .product-header {
|
226 |
-
margin-bottom: 58px;
|
227 |
-
position: relative; }
|
228 |
-
|
229 |
-
.wapk-admin .comparison .product-header:after {
|
230 |
-
content: "";
|
231 |
-
position: absolute;
|
232 |
-
bottom: -23px;
|
233 |
-
left: 0;
|
234 |
-
width: 38px;
|
235 |
-
height: 5px;
|
236 |
-
border-radius: 3px;
|
237 |
-
background-color: #d7d7d7; }
|
238 |
-
|
239 |
-
.wapk-admin .comparison .product-header img {
|
240 |
-
max-width: 160px;
|
241 |
-
width: 100%; }
|
242 |
-
|
243 |
-
.wapk-admin .comparison .product-features {
|
244 |
-
margin: 0; }
|
245 |
-
|
246 |
-
.wapk-admin .comparison li {
|
247 |
-
position: relative;
|
248 |
-
display: -ms-flexbox;
|
249 |
-
display: flex;
|
250 |
-
margin-bottom: 15px;
|
251 |
-
padding-left: 30px;
|
252 |
-
font-size: 14px;
|
253 |
-
line-height: 1.3em;
|
254 |
-
font-weight: 300;
|
255 |
-
-ms-flex-align: center;
|
256 |
-
align-items: center; }
|
257 |
-
|
258 |
-
.wapk-admin .comparison li.unavailable {
|
259 |
-
color: #CED2D6; }
|
260 |
-
|
261 |
-
.wapk-admin .comparison li span.dashicons {
|
262 |
-
position: absolute;
|
263 |
-
top: 1px;
|
264 |
-
left: 6px;
|
265 |
-
width: 18px;
|
266 |
-
height: 18px;
|
267 |
-
border-radius: 100%;
|
268 |
-
background: #00D4D4;
|
269 |
-
color: #FFF;
|
270 |
-
line-height: 22px;
|
271 |
-
font-size: 14px;
|
272 |
-
text-align: center; }
|
273 |
-
|
274 |
-
.wapk-admin .comparison li.unavailable {
|
275 |
-
color: #CED2D6; }
|
276 |
-
|
277 |
-
.wapk-admin .comparison li.unavailable span.dashicons {
|
278 |
-
background: #CED2D6; }
|
279 |
-
|
280 |
-
.wapk-admin .comparison li span.dashicons-no {
|
281 |
-
font-size: 12px; }
|
282 |
-
|
283 |
-
.wapk-admin .comparison li span.dashicons-no:before {
|
284 |
-
left: 0; }
|
285 |
-
|
286 |
-
.wapk-admin .comparison li span.dashicons:before {
|
287 |
-
position: relative;
|
288 |
-
left: -0.5px;
|
289 |
-
top: -2px; }
|
290 |
-
|
291 |
-
.wapk-admin .comparison li img {
|
292 |
-
width: 18px;
|
293 |
-
margin-right: 12px; }
|
294 |
-
|
295 |
-
.wapk-pricing__table {
|
296 |
-
width: 100%;
|
297 |
-
display: -ms-flexbox;
|
298 |
-
display: flex;
|
299 |
-
-ms-flex-wrap: wrap;
|
300 |
-
flex-wrap: wrap;
|
301 |
-
-ms-flex-line-pack: start;
|
302 |
-
align-content: flex-start;
|
303 |
-
-ms-flex-pack: center;
|
304 |
-
justify-content: center; }
|
305 |
-
|
306 |
-
.wapk-pricing__table__item {
|
307 |
-
position: relative;
|
308 |
-
-ms-flex: 0 0 23%;
|
309 |
-
flex: 0 0 23%; }
|
310 |
-
|
311 |
-
.wapk-price__table__wrapper {
|
312 |
-
position: relative;
|
313 |
-
padding: 10px; }
|
314 |
-
|
315 |
-
.wapk-price__table {
|
316 |
-
text-align: center;
|
317 |
-
display: block;
|
318 |
-
width: 100%;
|
319 |
-
padding: 10px;
|
320 |
-
background-color: #fff;
|
321 |
-
border-radius: 8px 8px 8px 8px;
|
322 |
-
box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
|
323 |
-
overflow: hidden;
|
324 |
-
transition: background .3s, border .3s, border-radius .3s, box-shadow .3s; }
|
325 |
-
|
326 |
-
.wapk-price__table__header {
|
327 |
-
background-color: #fff;
|
328 |
-
padding: 40px 0 0; }
|
329 |
-
|
330 |
-
.wapk-price__table__heading {
|
331 |
-
color: #6d7882;
|
332 |
-
font-size: 17px;
|
333 |
-
font-weight: 500;
|
334 |
-
text-transform: uppercase;
|
335 |
-
letter-spacing: 10px;
|
336 |
-
font-family: sans-serif;
|
337 |
-
margin: 0;
|
338 |
-
padding: 0;
|
339 |
-
line-height: 1.2; }
|
340 |
-
|
341 |
-
.wapk-price__table__price {
|
342 |
-
font-family: sans-serif;
|
343 |
-
font-weight: 600;
|
344 |
-
padding: 30px 0 10px;
|
345 |
-
display: -ms-flexbox;
|
346 |
-
display: flex;
|
347 |
-
-ms-flex-pack: center;
|
348 |
-
justify-content: center;
|
349 |
-
-ms-flex-align: center;
|
350 |
-
align-items: center;
|
351 |
-
-ms-flex-wrap: wrap;
|
352 |
-
flex-wrap: wrap;
|
353 |
-
-ms-flex-direction: row;
|
354 |
-
flex-direction: row;
|
355 |
-
color: #434363;
|
356 |
-
font-size: 45px; }
|
357 |
-
|
358 |
-
.wapk-price__table__currency {
|
359 |
-
-ms-flex-item-align: start;
|
360 |
-
align-self: flex-start;
|
361 |
-
color: #434363;
|
362 |
-
line-height: 1;
|
363 |
-
font-size: .3em;
|
364 |
-
margin-right: 3px; }
|
365 |
-
|
366 |
-
.wapk-price__table__amount .free,
|
367 |
-
.wapk-price__table__amount .integer-part {
|
368 |
-
color: #434363;
|
369 |
-
line-height: .8; }
|
370 |
-
|
371 |
-
.wapk-price__table__amount .decimal-part {
|
372 |
-
font-size: 14px;
|
373 |
-
font-weight: 400; }
|
374 |
-
|
375 |
-
.wapk-price__table__amount .period {
|
376 |
-
font-size: 14px;
|
377 |
-
font-weight: 400; }
|
378 |
-
|
379 |
-
.wapk-price__table__amount___legend {
|
380 |
-
width: 100%;
|
381 |
-
color: #FF4B4B;
|
382 |
-
font-size: 18px;
|
383 |
-
font-weight: 500;
|
384 |
-
line-height: 2.5em; }
|
385 |
-
|
386 |
-
.wapk-price__table__features {
|
387 |
-
list-style-type: none;
|
388 |
-
margin: 0;
|
389 |
-
padding: 0;
|
390 |
-
line-height: 1;
|
391 |
-
color: #697279;
|
392 |
-
text-align: left; }
|
393 |
-
|
394 |
-
.wapk-price__table__features li.item {
|
395 |
-
list-style-type: none;
|
396 |
-
margin: 0;
|
397 |
-
padding: 0;
|
398 |
-
font-size: 13px;
|
399 |
-
line-height: 1.5em; }
|
400 |
-
|
401 |
-
.wapk-price__table__features li:not(:first-child):before {
|
402 |
-
content: "";
|
403 |
-
display: block;
|
404 |
-
/* border: 0 solid hsla(0,0%,48%,.3); */
|
405 |
-
margin: 10px 12.5%; }
|
406 |
-
|
407 |
-
.wapk-price__table__feature {
|
408 |
-
display: block;
|
409 |
-
margin-left: calc(((100% - 80%) / 2) + 20px);
|
410 |
-
margin-right: calc((100% - 80%) / 2); }
|
411 |
-
|
412 |
-
span.wapk-price__table__feature span.dashicons {
|
413 |
-
margin-left: -20px;
|
414 |
-
top: 2px;
|
415 |
-
position: relative; }
|
416 |
-
|
417 |
-
.wapk-price__table__footer {
|
418 |
-
padding: 40px 0; }
|
419 |
-
|
420 |
-
.wapk-price__table__footer a {
|
421 |
-
font-size: 14px;
|
422 |
-
text-transform: uppercase;
|
423 |
-
letter-spacing: 3px;
|
424 |
-
border-radius: 100px 100px 100px 100px;
|
425 |
-
padding: 16px 42px;
|
426 |
-
transition: all 250ms; }
|
427 |
-
|
428 |
-
.wapk-price__table__footer a:hover,
|
429 |
-
.wapk-price__table__footer a:focus,
|
430 |
-
.wapk-price__table__footer a:active {
|
431 |
-
-webkit-transform: scale(1.02) !important;
|
432 |
-
transform: scale(1.02) !important; }
|
433 |
-
|
434 |
-
.wapk-price__table__ribbon {
|
435 |
-
pointer-events: none;
|
436 |
-
-ms-touch-action: none;
|
437 |
-
touch-action: none;
|
438 |
-
-webkit-user-select: none;
|
439 |
-
-moz-user-select: none;
|
440 |
-
-ms-user-select: none;
|
441 |
-
user-select: none;
|
442 |
-
position: absolute;
|
443 |
-
top: 10px;
|
444 |
-
left: auto;
|
445 |
-
right: 10px;
|
446 |
-
-webkit-transform: rotate(90deg);
|
447 |
-
transform: rotate(90deg);
|
448 |
-
width: 150px;
|
449 |
-
overflow: hidden;
|
450 |
-
height: 150px; }
|
451 |
-
|
452 |
-
.wapk-price__table__ribbon__inner {
|
453 |
-
background: #FF4B4B;
|
454 |
-
font-family: sans-serif;
|
455 |
-
font-weight: 500;
|
456 |
-
color: #fff;
|
457 |
-
font-size: 11px;
|
458 |
-
/*noinspection CssFloatPxLength*/
|
459 |
-
letter-spacing: 1.1px;
|
460 |
-
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.21);
|
461 |
-
text-align: center;
|
462 |
-
left: 0;
|
463 |
-
width: 200%;
|
464 |
-
-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
465 |
-
transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
466 |
-
margin-top: 35px;
|
467 |
-
line-height: 2;
|
468 |
-
text-transform: uppercase; }
|
469 |
-
|
470 |
-
.wapk-admin .wapk-payment {
|
471 |
-
display: -ms-flexbox;
|
472 |
-
display: flex;
|
473 |
-
background: #fff;
|
474 |
-
-ms-flex-pack: justify;
|
475 |
-
justify-content: space-between;
|
476 |
-
padding: 85px 65px 85px;
|
477 |
-
-ms-flex-align: center;
|
478 |
-
align-items: center; }
|
479 |
-
|
480 |
-
.wapk-payment .payment-guarantee {
|
481 |
-
display: -ms-flexbox;
|
482 |
-
display: flex;
|
483 |
-
-ms-flex: 0 0 63%;
|
484 |
-
flex: 0 0 63%;
|
485 |
-
-ms-flex-line-pack: center;
|
486 |
-
align-content: center;
|
487 |
-
-ms-flex-align: center;
|
488 |
-
align-items: center;
|
489 |
-
position: relative; }
|
490 |
-
|
491 |
-
.wapk-payment .payment-guarantee:after {
|
492 |
-
content: "";
|
493 |
-
position: absolute;
|
494 |
-
right: -18px;
|
495 |
-
top: 50%;
|
496 |
-
-webkit-transform: translateY(-50%);
|
497 |
-
transform: translateY(-50%);
|
498 |
-
width: 5px;
|
499 |
-
height: 38px;
|
500 |
-
border-radius: 3px;
|
501 |
-
background: #00D4D4; }
|
502 |
-
|
503 |
-
.wapk-payment .payment-guarantee .guarantee-seal img {
|
504 |
-
max-width: 100%;
|
505 |
-
width: 280px; }
|
506 |
-
|
507 |
-
.wapk-payment .payment-guarantee .guarantee-detail {
|
508 |
-
padding-left: 25px; }
|
509 |
-
|
510 |
-
.wapk-payment .payment-guarantee .guarantee-detail h2 {
|
511 |
-
font-size: 24px;
|
512 |
-
line-height: 1.5em;
|
513 |
-
font-weight: 400;
|
514 |
-
margin: 0; }
|
515 |
-
|
516 |
-
.wapk-payment .payment-guarantee .guarantee-detail p {
|
517 |
-
font-size: 15px;
|
518 |
-
line-height: 1.5em;
|
519 |
-
font-weight: 300;
|
520 |
-
margin: 5px 0 20px; }
|
521 |
-
|
522 |
-
.wapk-payment .payment-guarantee .guarantee-detail a {
|
523 |
-
color: #00D4D4;
|
524 |
-
font-size: 15px;
|
525 |
-
line-height: 1.5em;
|
526 |
-
text-decoration: none; }
|
527 |
-
|
528 |
-
.wapk-payment .payment-guarantee .guarantee-detail a span.dashicons,
|
529 |
-
.wapk-payment .payment-guarantee .guarantee-detail a img {
|
530 |
-
width: 18px;
|
531 |
-
margin-right: 4px;
|
532 |
-
margin-top: 1px; }
|
533 |
-
|
534 |
-
.wapk-payment .payment-options {
|
535 |
-
-ms-flex-positive: 0.5;
|
536 |
-
flex-grow: 0.5; }
|
537 |
-
|
538 |
-
.wapk-payment .payment-options h3 {
|
539 |
-
font-size: 15px;
|
540 |
-
font-weight: 300;
|
541 |
-
margin: 0 0 17px; }
|
542 |
-
|
543 |
-
.wapk-payment .payment-options .options h4 {
|
544 |
-
color: #CED2D6; }
|
545 |
-
|
546 |
-
.wapk-payment .payment-options .options li {
|
547 |
-
float: left;
|
548 |
-
overflow: hidden; }
|
549 |
-
|
550 |
-
.wapk-payment .payment-options .options li img {
|
551 |
-
height: 20px;
|
552 |
-
margin-right: 5px; }
|
553 |
-
|
554 |
-
/** Testimonial **/
|
555 |
-
.wapk-admin .wapk-testimonial-wrapper:before {
|
556 |
-
content: '';
|
557 |
-
position: absolute;
|
558 |
-
left: 79px;
|
559 |
-
top: -15px;
|
560 |
-
width: 80px;
|
561 |
-
height: 56px;
|
562 |
-
border-radius: 3px;
|
563 |
-
background: transparent url(../images/block-quote.svg) no-repeat;
|
564 |
-
background-size: cover; }
|
565 |
-
|
566 |
-
.wapk-admin .wapk-testimonial-wrapper {
|
567 |
-
position: relative;
|
568 |
-
display: block;
|
569 |
-
width: 80%;
|
570 |
-
margin: 0 auto;
|
571 |
-
padding: 0;
|
572 |
-
text-align: center; }
|
573 |
-
|
574 |
-
.testimonial-item__user .avatar {
|
575 |
-
width: 100px;
|
576 |
-
height: 100px;
|
577 |
-
margin: 0 auto;
|
578 |
-
border-radius: 100%;
|
579 |
-
border: 3px solid #efefef;
|
580 |
-
overflow: hidden; }
|
581 |
-
|
582 |
-
.testimonial-item {
|
583 |
-
margin-bottom: 25px; }
|
584 |
-
|
585 |
-
.testimonial-item__user .avatar img {
|
586 |
-
max-width: 100%;
|
587 |
-
width: 100%;
|
588 |
-
margin: 0 auto;
|
589 |
-
padding: 0;
|
590 |
-
display: block; }
|
591 |
-
|
592 |
-
.testimonial-item__comment {
|
593 |
-
position: relative;
|
594 |
-
display: block;
|
595 |
-
width: 70%;
|
596 |
-
margin: 0 auto 30px; }
|
597 |
-
|
598 |
-
.testimonial-item__user h4.author-name {
|
599 |
-
font-size: 25px;
|
600 |
-
font-weight: 300;
|
601 |
-
margin: 10px auto; }
|
602 |
-
|
603 |
-
.testimonial-item__user span.author-meta {
|
604 |
-
font-size: 16px;
|
605 |
-
font-weight: 300; }
|
606 |
-
|
607 |
-
@media screen and (min-width: 1281px) {
|
608 |
-
.wapk-admin .wapk-banner,
|
609 |
-
.wapk-admin .feed-features {
|
610 |
-
padding-left: 20%;
|
611 |
-
padding-right: 20%; }
|
612 |
-
.wapk-admin .wapk-payment {
|
613 |
-
padding-left: 15%;
|
614 |
-
padding-right: 15%; }
|
615 |
-
.wapk-admin .feed-pro-comparison {
|
616 |
-
padding-left: 21.2%;
|
617 |
-
padding-right: 21.2%; }
|
618 |
-
.wapk-admin .wapk-testimonial-wrapper {
|
619 |
-
width: 55%; } }
|
620 |
-
|
621 |
-
.wapk-feed-pro-upgrade .wapk-feed-cta,
|
622 |
-
.wapk-feed-docs .wapk-feed-cta,
|
623 |
-
.wapk-admin .feed-pro-comparison,
|
624 |
-
.wapk-admin .wapk-payment,
|
625 |
-
.wapk-admin .feed-features,
|
626 |
-
.wapk-admin .wapk-testimonial,
|
627 |
-
.wapk-admin .wapk-feed-banner {
|
628 |
-
margin: 0; }
|
629 |
-
|
630 |
-
.wapk-feed-banner .wapk-banner {
|
631 |
-
margin: 0;
|
632 |
-
padding: 0; }
|
1 |
+
table.wf-info-table th a,
|
2 |
+
table.wf-rate-table th strong {
|
3 |
+
font-weight: bold; }
|
4 |
+
|
5 |
+
table.wf-info-table th a,
|
6 |
+
table.wf-rate-table a {
|
7 |
+
color: #0073aa; }
|
8 |
+
|
9 |
+
table.wf-info-table th a.get-woo-feed-pro {
|
10 |
+
display: inline-block;
|
11 |
+
text-decoration: none;
|
12 |
+
background: #f3f5f6;
|
13 |
+
color: #ff3355;
|
14 |
+
vertical-align: top;
|
15 |
+
font-size: 14px;
|
16 |
+
line-height: 3.14285714;
|
17 |
+
box-sizing: border-box;
|
18 |
+
margin: 0;
|
19 |
+
border-radius: 35px;
|
20 |
+
box-shadow: 1px 2px 10px 1px rgba(255, 51, 85, 0.5); }
|
21 |
+
|
22 |
+
table.wf-info-table th a.get-woo-feed-pro img {
|
23 |
+
display: block;
|
24 |
+
position: relative;
|
25 |
+
margin: -2px;
|
26 |
+
width: 180px;
|
27 |
+
height: auto; }
|
28 |
+
|
29 |
+
table.wf-info-table th a.button {
|
30 |
+
border-color: #0073aa;
|
31 |
+
border-radius: 35px; }
|
32 |
+
|
33 |
+
table.wf-info-table th a.documentation {
|
34 |
+
color: #0073aa; }
|
35 |
+
|
36 |
+
table.wf-info-table th a.tutorial {
|
37 |
+
color: #ee264a; }
|
38 |
+
|
39 |
+
table.wf-info-table th a.support {
|
40 |
+
color: #0DD41E; }
|
41 |
+
|
42 |
/**
|
43 |
* Premium Page Design
|
44 |
+
*/
|
45 |
+
.wp-submenu li span.woo-feed-premium {
|
46 |
+
font-weight: bold;
|
47 |
+
color: #28e499; }
|
48 |
+
|
49 |
+
.wp-submenu li:hover span.woo-feed-premium,
|
50 |
+
.wp-submenu li.current span.woo-feed-premium {
|
51 |
+
color: #1dc381; }
|
52 |
+
|
53 |
+
.woo_feed_free_manage_attribute {
|
54 |
+
margin: 0 auto;
|
55 |
+
width: 100%; }
|
56 |
+
|
57 |
+
.woo_feed_screenshort {
|
58 |
+
max-width: 100%;
|
59 |
+
width: 1000px;
|
60 |
+
border: 3px solid #00b9eb;
|
61 |
+
display: block;
|
62 |
+
margin: 0 auto; }
|
63 |
+
|
64 |
+
.woo-feed-screen-shot-title {
|
65 |
+
font-size: 36px;
|
66 |
+
text-align: center;
|
67 |
+
box-sizing: content-box;
|
68 |
+
color: #00b9eb; }
|
69 |
+
|
70 |
+
.woo_feed_screen {
|
71 |
+
background: #fff;
|
72 |
+
padding: 25px 20px;
|
73 |
+
margin-bottom: 20px; }
|
74 |
+
|
75 |
+
.woo_feed_screen_des {
|
76 |
+
text-align: center;
|
77 |
+
margin: 20px 50px 20px 50px;
|
78 |
+
font-size: 16px;
|
79 |
+
color: #666; }
|
80 |
+
|
81 |
+
.woo_feed_screen_des_2 {
|
82 |
+
text-align: center;
|
83 |
+
margin: 20px 50px 5px 50px;
|
84 |
+
font-size: 14px;
|
85 |
+
color: #32373c; }
|
86 |
+
|
87 |
+
.wapk-admin .wapk-feed-upgrade {
|
88 |
+
font-family: 'Open Sans', sans-serif;
|
89 |
+
margin: -10px -20px 0 -22px; }
|
90 |
+
|
91 |
+
.wapk-admin .wapk-feed-upgrade a {
|
92 |
+
transition: all 0.2s ease; }
|
93 |
+
|
94 |
+
.wapk-admin .section-title {
|
95 |
+
text-align: center;
|
96 |
+
font-size: 30px;
|
97 |
+
line-height: 1.5em;
|
98 |
+
font-weight: 400;
|
99 |
+
position: relative;
|
100 |
+
margin: 0 0 58px; }
|
101 |
+
|
102 |
+
.wapk-admin .section-title:after {
|
103 |
+
content: '';
|
104 |
+
position: absolute;
|
105 |
+
bottom: -21px;
|
106 |
+
left: 50%;
|
107 |
+
-webkit-transform: translateX(-50%);
|
108 |
+
transform: translateX(-50%);
|
109 |
+
width: 38px;
|
110 |
+
height: 5px;
|
111 |
+
border-radius: 3px;
|
112 |
+
background-color: #00D4D4; }
|
113 |
+
|
114 |
+
.wapk-admin .section-title .section-sub-title {
|
115 |
+
font-size: 22px;
|
116 |
+
font-weight: 300; }
|
117 |
+
|
118 |
+
.wapk-admin .wapk-banner {
|
119 |
+
background-color: #f2f2f2;
|
120 |
+
font-size: 16px;
|
121 |
+
display: -ms-flexbox;
|
122 |
+
display: flex;
|
123 |
+
-ms-flex-align: center;
|
124 |
+
align-items: center;
|
125 |
+
padding: 50px 8%;
|
126 |
+
border-bottom: 1px solid #eee; }
|
127 |
+
|
128 |
+
.wapk-admin .wapk-banner .wapk-banner__graphics {
|
129 |
+
width: 100%; }
|
130 |
+
|
131 |
+
.wapk-admin .wapk-banner .wapk-banner__content h1 {
|
132 |
+
font-size: 27px;
|
133 |
+
line-height: 1.5em; }
|
134 |
+
|
135 |
+
.wapk-admin .wapk-banner .wapk-banner__content p {
|
136 |
+
font-size: 16px;
|
137 |
+
line-height: 1.5em;
|
138 |
+
font-weight: 300;
|
139 |
+
margin: 0;
|
140 |
+
/*noinspection CssFloatPxLength*/
|
141 |
+
letter-spacing: 0.5px; }
|
142 |
+
|
143 |
+
.wapk-admin .feed-features,
|
144 |
+
.wapk-admin .wapk-testimonial,
|
145 |
+
.wapk-admin .feed-pricing {
|
146 |
+
text-align: center;
|
147 |
+
padding: 75px 30px 85px;
|
148 |
+
background-color: #f7f8f9; }
|
149 |
+
|
150 |
+
.wapk-admin .feed-features .feed-feature__list {
|
151 |
+
display: -ms-flexbox;
|
152 |
+
display: flex;
|
153 |
+
-ms-flex-wrap: wrap;
|
154 |
+
flex-wrap: wrap;
|
155 |
+
-ms-flex-align: start;
|
156 |
+
align-items: flex-start;
|
157 |
+
-ms-flex-pack: center;
|
158 |
+
justify-content: center; }
|
159 |
+
|
160 |
+
.wapk-admin .feed-features .feed-features__more {
|
161 |
+
margin-top: 25px; }
|
162 |
+
|
163 |
+
.feed-feature__item {
|
164 |
+
-ms-flex: 0 0 28.9%;
|
165 |
+
flex: 0 0 28.9%;
|
166 |
+
margin: 0 2.2% 4.4% 2.2%;
|
167 |
+
text-align: center;
|
168 |
+
border-radius: 5px;
|
169 |
+
background-color: #ffffff;
|
170 |
+
transition: all 100ms linear;
|
171 |
+
overflow: hidden; }
|
172 |
+
|
173 |
+
.feed-feature__item:hover {
|
174 |
+
box-shadow: 5px 4px 32px -16px rgba(0, 0, 0, 0.63); }
|
175 |
+
|
176 |
+
.feed-feature__thumb {
|
177 |
+
overflow: hidden; }
|
178 |
+
|
179 |
+
.feed-feature__item .feed-feature__thumb img {
|
180 |
+
border-radius: 5px 5px 0 0;
|
181 |
+
max-width: 100%;
|
182 |
+
width: 100%;
|
183 |
+
transition: all 100ms linear; }
|
184 |
+
|
185 |
+
.feed-feature__item:hover .feed-feature__thumb img {
|
186 |
+
-webkit-transform: scale(1.05);
|
187 |
+
transform: scale(1.05); }
|
188 |
+
|
189 |
+
.feed-feature__item .feed-feature__description {
|
190 |
+
padding: 20px 15px 25px; }
|
191 |
+
|
192 |
+
.feed-feature__item .feed-feature__description h3 {
|
193 |
+
font-size: 15px;
|
194 |
+
line-height: 1.5em;
|
195 |
+
font-weight: 300;
|
196 |
+
margin: 0; }
|
197 |
+
|
198 |
+
.wapk-admin .feed-pro-comparison {
|
199 |
+
background-color: #f1f1f1;
|
200 |
+
padding: 75px; }
|
201 |
+
|
202 |
+
.wapk-admin .feed-features .section-title h2,
|
203 |
+
.wapk-admin .wapk-testimonial .section-title h2,
|
204 |
+
.wapk-admin .feed-pro-comparison .section-title h2,
|
205 |
+
.wapk-admin .feed-pricing .section-title h2 {
|
206 |
+
margin-top: 0;
|
207 |
+
margin-bottom: 0; }
|
208 |
+
|
209 |
+
.wapk-admin .comparison-table {
|
210 |
+
display: -ms-flexbox;
|
211 |
+
display: flex;
|
212 |
+
-ms-flex-pack: justify;
|
213 |
+
justify-content: space-between; }
|
214 |
+
|
215 |
+
.wapk-admin .comparison-table .comparison {
|
216 |
+
-ms-flex: 0 0 48%;
|
217 |
+
flex: 0 0 48%;
|
218 |
+
background-color: #fff;
|
219 |
+
border: 1px solid #e0e9ec;
|
220 |
+
border-radius: 5px;
|
221 |
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
222 |
+
padding: 50px;
|
223 |
+
box-sizing: border-box; }
|
224 |
+
|
225 |
+
.wapk-admin .comparison .product-header {
|
226 |
+
margin-bottom: 58px;
|
227 |
+
position: relative; }
|
228 |
+
|
229 |
+
.wapk-admin .comparison .product-header:after {
|
230 |
+
content: "";
|
231 |
+
position: absolute;
|
232 |
+
bottom: -23px;
|
233 |
+
left: 0;
|
234 |
+
width: 38px;
|
235 |
+
height: 5px;
|
236 |
+
border-radius: 3px;
|
237 |
+
background-color: #d7d7d7; }
|
238 |
+
|
239 |
+
.wapk-admin .comparison .product-header img {
|
240 |
+
max-width: 160px;
|
241 |
+
width: 100%; }
|
242 |
+
|
243 |
+
.wapk-admin .comparison .product-features {
|
244 |
+
margin: 0; }
|
245 |
+
|
246 |
+
.wapk-admin .comparison li {
|
247 |
+
position: relative;
|
248 |
+
display: -ms-flexbox;
|
249 |
+
display: flex;
|
250 |
+
margin-bottom: 15px;
|
251 |
+
padding-left: 30px;
|
252 |
+
font-size: 14px;
|
253 |
+
line-height: 1.3em;
|
254 |
+
font-weight: 300;
|
255 |
+
-ms-flex-align: center;
|
256 |
+
align-items: center; }
|
257 |
+
|
258 |
+
.wapk-admin .comparison li.unavailable {
|
259 |
+
color: #CED2D6; }
|
260 |
+
|
261 |
+
.wapk-admin .comparison li span.dashicons {
|
262 |
+
position: absolute;
|
263 |
+
top: 1px;
|
264 |
+
left: 6px;
|
265 |
+
width: 18px;
|
266 |
+
height: 18px;
|
267 |
+
border-radius: 100%;
|
268 |
+
background: #00D4D4;
|
269 |
+
color: #FFF;
|
270 |
+
line-height: 22px;
|
271 |
+
font-size: 14px;
|
272 |
+
text-align: center; }
|
273 |
+
|
274 |
+
.wapk-admin .comparison li.unavailable {
|
275 |
+
color: #CED2D6; }
|
276 |
+
|
277 |
+
.wapk-admin .comparison li.unavailable span.dashicons {
|
278 |
+
background: #CED2D6; }
|
279 |
+
|
280 |
+
.wapk-admin .comparison li span.dashicons-no {
|
281 |
+
font-size: 12px; }
|
282 |
+
|
283 |
+
.wapk-admin .comparison li span.dashicons-no:before {
|
284 |
+
left: 0; }
|
285 |
+
|
286 |
+
.wapk-admin .comparison li span.dashicons:before {
|
287 |
+
position: relative;
|
288 |
+
left: -0.5px;
|
289 |
+
top: -2px; }
|
290 |
+
|
291 |
+
.wapk-admin .comparison li img {
|
292 |
+
width: 18px;
|
293 |
+
margin-right: 12px; }
|
294 |
+
|
295 |
+
.wapk-pricing__table {
|
296 |
+
width: 100%;
|
297 |
+
display: -ms-flexbox;
|
298 |
+
display: flex;
|
299 |
+
-ms-flex-wrap: wrap;
|
300 |
+
flex-wrap: wrap;
|
301 |
+
-ms-flex-line-pack: start;
|
302 |
+
align-content: flex-start;
|
303 |
+
-ms-flex-pack: center;
|
304 |
+
justify-content: center; }
|
305 |
+
|
306 |
+
.wapk-pricing__table__item {
|
307 |
+
position: relative;
|
308 |
+
-ms-flex: 0 0 23%;
|
309 |
+
flex: 0 0 23%; }
|
310 |
+
|
311 |
+
.wapk-price__table__wrapper {
|
312 |
+
position: relative;
|
313 |
+
padding: 10px; }
|
314 |
+
|
315 |
+
.wapk-price__table {
|
316 |
+
text-align: center;
|
317 |
+
display: block;
|
318 |
+
width: 100%;
|
319 |
+
padding: 10px;
|
320 |
+
background-color: #fff;
|
321 |
+
border-radius: 8px 8px 8px 8px;
|
322 |
+
box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
|
323 |
+
overflow: hidden;
|
324 |
+
transition: background .3s, border .3s, border-radius .3s, box-shadow .3s; }
|
325 |
+
|
326 |
+
.wapk-price__table__header {
|
327 |
+
background-color: #fff;
|
328 |
+
padding: 40px 0 0; }
|
329 |
+
|
330 |
+
.wapk-price__table__heading {
|
331 |
+
color: #6d7882;
|
332 |
+
font-size: 17px;
|
333 |
+
font-weight: 500;
|
334 |
+
text-transform: uppercase;
|
335 |
+
letter-spacing: 10px;
|
336 |
+
font-family: sans-serif;
|
337 |
+
margin: 0;
|
338 |
+
padding: 0;
|
339 |
+
line-height: 1.2; }
|
340 |
+
|
341 |
+
.wapk-price__table__price {
|
342 |
+
font-family: sans-serif;
|
343 |
+
font-weight: 600;
|
344 |
+
padding: 30px 0 10px;
|
345 |
+
display: -ms-flexbox;
|
346 |
+
display: flex;
|
347 |
+
-ms-flex-pack: center;
|
348 |
+
justify-content: center;
|
349 |
+
-ms-flex-align: center;
|
350 |
+
align-items: center;
|
351 |
+
-ms-flex-wrap: wrap;
|
352 |
+
flex-wrap: wrap;
|
353 |
+
-ms-flex-direction: row;
|
354 |
+
flex-direction: row;
|
355 |
+
color: #434363;
|
356 |
+
font-size: 45px; }
|
357 |
+
|
358 |
+
.wapk-price__table__currency {
|
359 |
+
-ms-flex-item-align: start;
|
360 |
+
align-self: flex-start;
|
361 |
+
color: #434363;
|
362 |
+
line-height: 1;
|
363 |
+
font-size: .3em;
|
364 |
+
margin-right: 3px; }
|
365 |
+
|
366 |
+
.wapk-price__table__amount .free,
|
367 |
+
.wapk-price__table__amount .integer-part {
|
368 |
+
color: #434363;
|
369 |
+
line-height: .8; }
|
370 |
+
|
371 |
+
.wapk-price__table__amount .decimal-part {
|
372 |
+
font-size: 14px;
|
373 |
+
font-weight: 400; }
|
374 |
+
|
375 |
+
.wapk-price__table__amount .period {
|
376 |
+
font-size: 14px;
|
377 |
+
font-weight: 400; }
|
378 |
+
|
379 |
+
.wapk-price__table__amount___legend {
|
380 |
+
width: 100%;
|
381 |
+
color: #FF4B4B;
|
382 |
+
font-size: 18px;
|
383 |
+
font-weight: 500;
|
384 |
+
line-height: 2.5em; }
|
385 |
+
|
386 |
+
.wapk-price__table__features {
|
387 |
+
list-style-type: none;
|
388 |
+
margin: 0;
|
389 |
+
padding: 0;
|
390 |
+
line-height: 1;
|
391 |
+
color: #697279;
|
392 |
+
text-align: left; }
|
393 |
+
|
394 |
+
.wapk-price__table__features li.item {
|
395 |
+
list-style-type: none;
|
396 |
+
margin: 0;
|
397 |
+
padding: 0;
|
398 |
+
font-size: 13px;
|
399 |
+
line-height: 1.5em; }
|
400 |
+
|
401 |
+
.wapk-price__table__features li:not(:first-child):before {
|
402 |
+
content: "";
|
403 |
+
display: block;
|
404 |
+
/* border: 0 solid hsla(0,0%,48%,.3); */
|
405 |
+
margin: 10px 12.5%; }
|
406 |
+
|
407 |
+
.wapk-price__table__feature {
|
408 |
+
display: block;
|
409 |
+
margin-left: calc(((100% - 80%) / 2) + 20px);
|
410 |
+
margin-right: calc((100% - 80%) / 2); }
|
411 |
+
|
412 |
+
span.wapk-price__table__feature span.dashicons {
|
413 |
+
margin-left: -20px;
|
414 |
+
top: 2px;
|
415 |
+
position: relative; }
|
416 |
+
|
417 |
+
.wapk-price__table__footer {
|
418 |
+
padding: 40px 0; }
|
419 |
+
|
420 |
+
.wapk-price__table__footer a {
|
421 |
+
font-size: 14px;
|
422 |
+
text-transform: uppercase;
|
423 |
+
letter-spacing: 3px;
|
424 |
+
border-radius: 100px 100px 100px 100px;
|
425 |
+
padding: 16px 42px;
|
426 |
+
transition: all 250ms; }
|
427 |
+
|
428 |
+
.wapk-price__table__footer a:hover,
|
429 |
+
.wapk-price__table__footer a:focus,
|
430 |
+
.wapk-price__table__footer a:active {
|
431 |
+
-webkit-transform: scale(1.02) !important;
|
432 |
+
transform: scale(1.02) !important; }
|
433 |
+
|
434 |
+
.wapk-price__table__ribbon {
|
435 |
+
pointer-events: none;
|
436 |
+
-ms-touch-action: none;
|
437 |
+
touch-action: none;
|
438 |
+
-webkit-user-select: none;
|
439 |
+
-moz-user-select: none;
|
440 |
+
-ms-user-select: none;
|
441 |
+
user-select: none;
|
442 |
+
position: absolute;
|
443 |
+
top: 10px;
|
444 |
+
left: auto;
|
445 |
+
right: 10px;
|
446 |
+
-webkit-transform: rotate(90deg);
|
447 |
+
transform: rotate(90deg);
|
448 |
+
width: 150px;
|
449 |
+
overflow: hidden;
|
450 |
+
height: 150px; }
|
451 |
+
|
452 |
+
.wapk-price__table__ribbon__inner {
|
453 |
+
background: #FF4B4B;
|
454 |
+
font-family: sans-serif;
|
455 |
+
font-weight: 500;
|
456 |
+
color: #fff;
|
457 |
+
font-size: 11px;
|
458 |
+
/*noinspection CssFloatPxLength*/
|
459 |
+
letter-spacing: 1.1px;
|
460 |
+
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.21);
|
461 |
+
text-align: center;
|
462 |
+
left: 0;
|
463 |
+
width: 200%;
|
464 |
+
-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
465 |
+
transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
466 |
+
margin-top: 35px;
|
467 |
+
line-height: 2;
|
468 |
+
text-transform: uppercase; }
|
469 |
+
|
470 |
+
.wapk-admin .wapk-payment {
|
471 |
+
display: -ms-flexbox;
|
472 |
+
display: flex;
|
473 |
+
background: #fff;
|
474 |
+
-ms-flex-pack: justify;
|
475 |
+
justify-content: space-between;
|
476 |
+
padding: 85px 65px 85px;
|
477 |
+
-ms-flex-align: center;
|
478 |
+
align-items: center; }
|
479 |
+
|
480 |
+
.wapk-payment .payment-guarantee {
|
481 |
+
display: -ms-flexbox;
|
482 |
+
display: flex;
|
483 |
+
-ms-flex: 0 0 63%;
|
484 |
+
flex: 0 0 63%;
|
485 |
+
-ms-flex-line-pack: center;
|
486 |
+
align-content: center;
|
487 |
+
-ms-flex-align: center;
|
488 |
+
align-items: center;
|
489 |
+
position: relative; }
|
490 |
+
|
491 |
+
.wapk-payment .payment-guarantee:after {
|
492 |
+
content: "";
|
493 |
+
position: absolute;
|
494 |
+
right: -18px;
|
495 |
+
top: 50%;
|
496 |
+
-webkit-transform: translateY(-50%);
|
497 |
+
transform: translateY(-50%);
|
498 |
+
width: 5px;
|
499 |
+
height: 38px;
|
500 |
+
border-radius: 3px;
|
501 |
+
background: #00D4D4; }
|
502 |
+
|
503 |
+
.wapk-payment .payment-guarantee .guarantee-seal img {
|
504 |
+
max-width: 100%;
|
505 |
+
width: 280px; }
|
506 |
+
|
507 |
+
.wapk-payment .payment-guarantee .guarantee-detail {
|
508 |
+
padding-left: 25px; }
|
509 |
+
|
510 |
+
.wapk-payment .payment-guarantee .guarantee-detail h2 {
|
511 |
+
font-size: 24px;
|
512 |
+
line-height: 1.5em;
|
513 |
+
font-weight: 400;
|
514 |
+
margin: 0; }
|
515 |
+
|
516 |
+
.wapk-payment .payment-guarantee .guarantee-detail p {
|
517 |
+
font-size: 15px;
|
518 |
+
line-height: 1.5em;
|
519 |
+
font-weight: 300;
|
520 |
+
margin: 5px 0 20px; }
|
521 |
+
|
522 |
+
.wapk-payment .payment-guarantee .guarantee-detail a {
|
523 |
+
color: #00D4D4;
|
524 |
+
font-size: 15px;
|
525 |
+
line-height: 1.5em;
|
526 |
+
text-decoration: none; }
|
527 |
+
|
528 |
+
.wapk-payment .payment-guarantee .guarantee-detail a span.dashicons,
|
529 |
+
.wapk-payment .payment-guarantee .guarantee-detail a img {
|
530 |
+
width: 18px;
|
531 |
+
margin-right: 4px;
|
532 |
+
margin-top: 1px; }
|
533 |
+
|
534 |
+
.wapk-payment .payment-options {
|
535 |
+
-ms-flex-positive: 0.5;
|
536 |
+
flex-grow: 0.5; }
|
537 |
+
|
538 |
+
.wapk-payment .payment-options h3 {
|
539 |
+
font-size: 15px;
|
540 |
+
font-weight: 300;
|
541 |
+
margin: 0 0 17px; }
|
542 |
+
|
543 |
+
.wapk-payment .payment-options .options h4 {
|
544 |
+
color: #CED2D6; }
|
545 |
+
|
546 |
+
.wapk-payment .payment-options .options li {
|
547 |
+
float: left;
|
548 |
+
overflow: hidden; }
|
549 |
+
|
550 |
+
.wapk-payment .payment-options .options li img {
|
551 |
+
height: 20px;
|
552 |
+
margin-right: 5px; }
|
553 |
+
|
554 |
+
/** Testimonial **/
|
555 |
+
.wapk-admin .wapk-testimonial-wrapper:before {
|
556 |
+
content: '';
|
557 |
+
position: absolute;
|
558 |
+
left: 79px;
|
559 |
+
top: -15px;
|
560 |
+
width: 80px;
|
561 |
+
height: 56px;
|
562 |
+
border-radius: 3px;
|
563 |
+
background: transparent url(../images/block-quote.svg) no-repeat;
|
564 |
+
background-size: cover; }
|
565 |
+
|
566 |
+
.wapk-admin .wapk-testimonial-wrapper {
|
567 |
+
position: relative;
|
568 |
+
display: block;
|
569 |
+
width: 80%;
|
570 |
+
margin: 0 auto;
|
571 |
+
padding: 0;
|
572 |
+
text-align: center; }
|
573 |
+
|
574 |
+
.testimonial-item__user .avatar {
|
575 |
+
width: 100px;
|
576 |
+
height: 100px;
|
577 |
+
margin: 0 auto;
|
578 |
+
border-radius: 100%;
|
579 |
+
border: 3px solid #efefef;
|
580 |
+
overflow: hidden; }
|
581 |
+
|
582 |
+
.testimonial-item {
|
583 |
+
margin-bottom: 25px; }
|
584 |
+
|
585 |
+
.testimonial-item__user .avatar img {
|
586 |
+
max-width: 100%;
|
587 |
+
width: 100%;
|
588 |
+
margin: 0 auto;
|
589 |
+
padding: 0;
|
590 |
+
display: block; }
|
591 |
+
|
592 |
+
.testimonial-item__comment {
|
593 |
+
position: relative;
|
594 |
+
display: block;
|
595 |
+
width: 70%;
|
596 |
+
margin: 0 auto 30px; }
|
597 |
+
|
598 |
+
.testimonial-item__user h4.author-name {
|
599 |
+
font-size: 25px;
|
600 |
+
font-weight: 300;
|
601 |
+
margin: 10px auto; }
|
602 |
+
|
603 |
+
.testimonial-item__user span.author-meta {
|
604 |
+
font-size: 16px;
|
605 |
+
font-weight: 300; }
|
606 |
+
|
607 |
+
@media screen and (min-width: 1281px) {
|
608 |
+
.wapk-admin .wapk-banner,
|
609 |
+
.wapk-admin .feed-features {
|
610 |
+
padding-left: 20%;
|
611 |
+
padding-right: 20%; }
|
612 |
+
.wapk-admin .wapk-payment {
|
613 |
+
padding-left: 15%;
|
614 |
+
padding-right: 15%; }
|
615 |
+
.wapk-admin .feed-pro-comparison {
|
616 |
+
padding-left: 21.2%;
|
617 |
+
padding-right: 21.2%; }
|
618 |
+
.wapk-admin .wapk-testimonial-wrapper {
|
619 |
+
width: 55%; } }
|
620 |
+
|
621 |
+
.wapk-feed-pro-upgrade .wapk-feed-cta,
|
622 |
+
.wapk-feed-docs .wapk-feed-cta,
|
623 |
+
.wapk-admin .feed-pro-comparison,
|
624 |
+
.wapk-admin .wapk-payment,
|
625 |
+
.wapk-admin .feed-features,
|
626 |
+
.wapk-admin .wapk-testimonial,
|
627 |
+
.wapk-admin .wapk-feed-banner {
|
628 |
+
margin: 0; }
|
629 |
+
|
630 |
+
.wapk-feed-banner .wapk-banner {
|
631 |
+
margin: 0;
|
632 |
+
padding: 0; }
|
admin/css/woo-feed-admin.css
CHANGED
@@ -1,1322 +1,1327 @@
|
|
1 |
/**
|
2 |
* All of the CSS for your admin-specific functionality should be
|
3 |
* included in this file.
|
4 |
-
*/
|
5 |
-
.wpf_spin {
|
6 |
-
-webkit-animation: spin 1000ms infinite linear;
|
7 |
-
animation: spin 1000ms infinite linear; }
|
8 |
-
.wpf_spin.reverse_spin {
|
9 |
-
animation-direction: reverse; }
|
10 |
-
|
11 |
-
.wpf_regenerate.disabled {
|
12 |
-
color: #737373;
|
13 |
-
box-shadow: none;
|
14 |
-
cursor: not-allowed; }
|
15 |
-
|
16 |
-
@-webkit-keyframes spin {
|
17 |
-
0% {
|
18 |
-
-webkit-transform: rotate(0deg);
|
19 |
-
transform: rotate(0deg); }
|
20 |
-
100% {
|
21 |
-
-webkit-transform: rotate(359deg);
|
22 |
-
transform: rotate(359deg); } }
|
23 |
-
|
24 |
-
@keyframes spin {
|
25 |
-
0% {
|
26 |
-
-webkit-transform: rotate(0deg);
|
27 |
-
transform: rotate(0deg); }
|
28 |
-
100% {
|
29 |
-
-webkit-transform: rotate(359deg);
|
30 |
-
transform: rotate(359deg); } }
|
31 |
-
|
32 |
-
.wfbtn {
|
33 |
-
background: #3498db;
|
34 |
-
background-image: linear-gradient(125deg, #3cb0fd 0%, #152f8c 140%);
|
35 |
-
border-radius: 17px;
|
36 |
-
box-shadow: inset 0 1px 3px #666666;
|
37 |
-
font-family: Arial, sans-serif;
|
38 |
-
color: #ffffff;
|
39 |
-
font-size: 20px;
|
40 |
-
padding: 10px 20px 10px 20px;
|
41 |
-
border: solid #2b698f 0px;
|
42 |
-
text-decoration: none; }
|
43 |
-
.wfbtn:hover {
|
44 |
-
background: #3cb0fd;
|
45 |
-
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
|
46 |
-
text-decoration: none; }
|
47 |
-
|
48 |
-
.
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
color:
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
.
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
width:
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
.wf_tabs
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
.
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
.selectize-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
.selectize-dropdown
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
color:
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
.
|
362 |
-
color: #
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
.
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
.feed-progress-
|
393 |
-
|
394 |
-
font-weight:
|
395 |
-
color:
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
|
|
|
|
|
|
|
|
|
|
415 |
/**
|
416 |
* Primer Tooltip
|
417 |
-
*/
|
418 |
-
.tooltipped {
|
419 |
-
position: relative; }
|
420 |
-
.tooltipped:after {
|
421 |
-
position: absolute;
|
422 |
-
z-index: 1000000;
|
423 |
-
display: none;
|
424 |
-
padding: 5px 8px;
|
425 |
-
font: normal normal 11px/1.5 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
|
426 |
-
color: #fff;
|
427 |
-
text-align: center;
|
428 |
-
text-decoration: none;
|
429 |
-
text-shadow: none;
|
430 |
-
text-transform: none;
|
431 |
-
letter-spacing: normal;
|
432 |
-
word-wrap: break-word;
|
433 |
-
white-space: pre;
|
434 |
-
pointer-events: none;
|
435 |
-
content: attr(aria-label);
|
436 |
-
background: rgba(0, 0, 0, 0.8);
|
437 |
-
border-radius: 3px;
|
438 |
-
-webkit-font-smoothing: subpixel-antialiased; }
|
439 |
-
.tooltipped:before {
|
440 |
-
position: absolute;
|
441 |
-
z-index: 1000001;
|
442 |
-
display: none;
|
443 |
-
width: 0;
|
444 |
-
height: 0;
|
445 |
-
color: rgba(0, 0, 0, 0.8);
|
446 |
-
pointer-events: none;
|
447 |
-
content: "";
|
448 |
-
border: 5px solid transparent; }
|
449 |
-
.tooltipped:hover:before {
|
450 |
-
display: inline-block;
|
451 |
-
text-decoration: none; }
|
452 |
-
.tooltipped:hover:after {
|
453 |
-
display: inline-block;
|
454 |
-
text-decoration: none; }
|
455 |
-
.tooltipped:active:before {
|
456 |
-
display: inline-block;
|
457 |
-
text-decoration: none; }
|
458 |
-
.tooltipped:active:after {
|
459 |
-
display: inline-block;
|
460 |
-
text-decoration: none; }
|
461 |
-
.tooltipped:focus:before {
|
462 |
-
display: inline-block;
|
463 |
-
text-decoration: none; }
|
464 |
-
.tooltipped:focus:after {
|
465 |
-
display: inline-block;
|
466 |
-
text-decoration: none; }
|
467 |
-
.tooltipped-multiline:hover:after {
|
468 |
-
display: table-cell; }
|
469 |
-
.tooltipped-multiline:active:after {
|
470 |
-
display: table-cell; }
|
471 |
-
.tooltipped-multiline:focus:after {
|
472 |
-
display: table-cell; }
|
473 |
-
.tooltipped-multiline:after {
|
474 |
-
width: -webkit-max-content;
|
475 |
-
width: -moz-max-content;
|
476 |
-
width: max-content;
|
477 |
-
max-width: 250px;
|
478 |
-
word-break: break-word;
|
479 |
-
word-wrap: normal;
|
480 |
-
white-space: pre-line;
|
481 |
-
border-collapse: separate; }
|
482 |
-
.tooltipped-s:after {
|
483 |
-
top: 100%;
|
484 |
-
right: 50%;
|
485 |
-
margin-top: 5px;
|
486 |
-
-webkit-transform: translateX(50%);
|
487 |
-
transform: translateX(50%); }
|
488 |
-
.tooltipped-s:before {
|
489 |
-
top: auto;
|
490 |
-
right: 50%;
|
491 |
-
bottom: -5px;
|
492 |
-
margin-right: -5px;
|
493 |
-
border-bottom-color: rgba(0, 0, 0, 0.8); }
|
494 |
-
.tooltipped-se:after {
|
495 |
-
top: 100%;
|
496 |
-
margin-top: 5px;
|
497 |
-
right: auto;
|
498 |
-
left: 50%;
|
499 |
-
margin-left: -15px; }
|
500 |
-
.tooltipped-se:before {
|
501 |
-
top: auto;
|
502 |
-
right: 50%;
|
503 |
-
bottom: -5px;
|
504 |
-
margin-right: -5px;
|
505 |
-
border-bottom-color: rgba(0, 0, 0, 0.8); }
|
506 |
-
.tooltipped-sw:after {
|
507 |
-
top: 100%;
|
508 |
-
right: 50%;
|
509 |
-
margin-top: 5px;
|
510 |
-
margin-right: -15px; }
|
511 |
-
.tooltipped-sw:before {
|
512 |
-
top: auto;
|
513 |
-
right: 50%;
|
514 |
-
bottom: -5px;
|
515 |
-
margin-right: -5px;
|
516 |
-
border-bottom-color: rgba(0, 0, 0, 0.8); }
|
517 |
-
.tooltipped-n:after {
|
518 |
-
right: 50%;
|
519 |
-
bottom: 100%;
|
520 |
-
margin-bottom: 5px;
|
521 |
-
-webkit-transform: translateX(50%);
|
522 |
-
transform: translateX(50%); }
|
523 |
-
.tooltipped-n:before {
|
524 |
-
top: -5px;
|
525 |
-
right: 50%;
|
526 |
-
bottom: auto;
|
527 |
-
margin-right: -5px;
|
528 |
-
border-top-color: rgba(0, 0, 0, 0.8); }
|
529 |
-
.tooltipped-ne:after {
|
530 |
-
bottom: 100%;
|
531 |
-
margin-bottom: 5px;
|
532 |
-
right: auto;
|
533 |
-
left: 50%;
|
534 |
-
margin-left: -15px; }
|
535 |
-
.tooltipped-ne:before {
|
536 |
-
top: -5px;
|
537 |
-
right: 50%;
|
538 |
-
bottom: auto;
|
539 |
-
margin-right: -5px;
|
540 |
-
border-top-color: rgba(0, 0, 0, 0.8); }
|
541 |
-
.tooltipped-nw:after {
|
542 |
-
right: 50%;
|
543 |
-
bottom: 100%;
|
544 |
-
margin-bottom: 5px;
|
545 |
-
margin-right: -15px; }
|
546 |
-
.tooltipped-nw:before {
|
547 |
-
top: -5px;
|
548 |
-
right: 50%;
|
549 |
-
bottom: auto;
|
550 |
-
margin-right: -5px;
|
551 |
-
border-top-color: rgba(0, 0, 0, 0.8); }
|
552 |
-
.tooltipped-w:after {
|
553 |
-
right: 100%;
|
554 |
-
bottom: 50%;
|
555 |
-
margin-right: 5px;
|
556 |
-
-webkit-transform: translateY(50%);
|
557 |
-
transform: translateY(50%); }
|
558 |
-
.tooltipped-w:before {
|
559 |
-
top: 50%;
|
560 |
-
bottom: 50%;
|
561 |
-
left: -5px;
|
562 |
-
margin-top: -5px;
|
563 |
-
border-left-color: rgba(0, 0, 0, 0.8); }
|
564 |
-
.tooltipped-e:after {
|
565 |
-
bottom: 50%;
|
566 |
-
left: 100%;
|
567 |
-
margin-left: 5px;
|
568 |
-
-webkit-transform: translateY(50%);
|
569 |
-
transform: translateY(50%); }
|
570 |
-
.tooltipped-e:before {
|
571 |
-
top: 50%;
|
572 |
-
right: -5px;
|
573 |
-
bottom: 50%;
|
574 |
-
margin-top: -5px;
|
575 |
-
border-right-color: rgba(0, 0, 0, 0.8); }
|
576 |
-
.tooltipped-multiline.tooltipped-s:after {
|
577 |
-
right: auto;
|
578 |
-
left: 50%;
|
579 |
-
-webkit-transform: translateX(-50%);
|
580 |
-
transform: translateX(-50%); }
|
581 |
-
.tooltipped-multiline.tooltipped-n:after {
|
582 |
-
right: auto;
|
583 |
-
left: 50%;
|
584 |
-
-webkit-transform: translateX(-50%);
|
585 |
-
transform: translateX(-50%); }
|
586 |
-
.tooltipped-multiline.tooltipped-w:after {
|
587 |
-
right: 100%; }
|
588 |
-
.tooltipped-multiline.tooltipped-e:after {
|
589 |
-
right: 100%; }
|
590 |
-
.tooltipped-sticky:before {
|
591 |
-
display: inline-block; }
|
592 |
-
.tooltipped-sticky:after {
|
593 |
-
display: inline-block; }
|
594 |
-
.tooltipped-sticky.tooltipped-multiline:after {
|
595 |
-
display: table-cell; }
|
596 |
-
|
597 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped:after {
|
598 |
-
color: #000;
|
599 |
-
background: rgba(255, 255, 255, 0.8); }
|
600 |
-
|
601 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before {
|
602 |
-
border-bottom-color: rgba(255, 255, 255, 0.8); }
|
603 |
-
|
604 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before {
|
605 |
-
border-bottom-color: rgba(255, 255, 255, 0.8); }
|
606 |
-
|
607 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before {
|
608 |
-
border-bottom-color: rgba(255, 255, 255, 0.8); }
|
609 |
-
|
610 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before {
|
611 |
-
border-top-color: rgba(255, 255, 255, 0.8); }
|
612 |
-
|
613 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before {
|
614 |
-
border-top-color: rgba(255, 255, 255, 0.8); }
|
615 |
-
|
616 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before {
|
617 |
-
border-top-color: rgba(255, 255, 255, 0.8); }
|
618 |
-
|
619 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before {
|
620 |
-
border-right-color: rgba(255, 255, 255, 0.8); }
|
621 |
-
|
622 |
-
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before {
|
623 |
-
border-left-color: rgba(255, 255, 255, 0.8); }
|
624 |
-
|
625 |
-
@media screen and (min-width: 0\0) {
|
626 |
-
.tooltipped-multiline:after {
|
627 |
-
width: 250px; } }
|
628 |
-
|
629 |
-
ul.tracker_collection_list {
|
630 |
-
list-style: initial;
|
631 |
-
padding: initial;
|
632 |
-
margin: -10px 0 0 30px;
|
633 |
-
font-size: 11px !important; }
|
634 |
-
ul.tracker_collection_list li {
|
635 |
-
margin: 0; }
|
636 |
-
|
637 |
-
/** Info Message Table **/
|
638 |
-
table.wf-info-table, table.wf-rate-table {
|
639 |
-
vertical-align: middle;
|
640 |
-
text-align: center;
|
641 |
-
max-width: 100%;
|
642 |
-
font-weight: 500; }
|
643 |
-
table.wf-info-table th, table.wf-rate-table th {
|
644 |
-
text-align: center; }
|
645 |
-
table.wf-info-table th .woo-feed-top-header, table.wf-rate-table th .woo-feed-top-header {
|
646 |
-
display: -ms-flexbox;
|
647 |
-
display: flex;
|
648 |
-
-ms-flex-pack: justify;
|
649 |
-
justify-content: space-between;
|
650 |
-
-ms-flex-align: center;
|
651 |
-
align-items: center; }
|
652 |
-
table.wf-info-table th .woo-feed-top-header .get-woo-feed-pro, table.wf-rate-table th .woo-feed-top-header .get-woo-feed-pro {
|
653 |
-
margin-left: 20px; }
|
654 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons {
|
655 |
-
float: right;
|
656 |
-
display: -ms-flexbox;
|
657 |
-
display: flex;
|
658 |
-
border-radius: 7px;
|
659 |
-
-ms-flex-pack: center;
|
660 |
-
justify-content: center;
|
661 |
-
-ms-flex-align: center;
|
662 |
-
align-items: center; }
|
663 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a {
|
664 |
-
padding: 8px 20px;
|
665 |
-
background: #576574;
|
666 |
-
color: #fff;
|
667 |
-
box-sizing: border-box;
|
668 |
-
display: inline-block;
|
669 |
-
transition: .3s ease; }
|
670 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link {
|
671 |
-
background: #576574;
|
672 |
-
border-top-left-radius: 5px;
|
673 |
-
border-bottom-left-radius: 5px; }
|
674 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link {
|
675 |
-
background: #ee5253; }
|
676 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link {
|
677 |
-
background: #22a6b3;
|
678 |
-
border-top-right-radius: 5px;
|
679 |
-
border-bottom-right-radius: 5px; }
|
680 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons {
|
681 |
-
font-size: 18px;
|
682 |
-
line-height: 1.2; }
|
683 |
-
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a:hover, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a:hover {
|
684 |
-
background: #30336b;
|
685 |
-
box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.12); }
|
686 |
-
table.wf-info-table strong, table.wf-rate-table strong {
|
687 |
-
font-weight: bold; }
|
688 |
-
|
689 |
-
table.wf-info-table th:first-child img {
|
690 |
-
margin: 0 0 -5px 5px; }
|
691 |
-
|
692 |
-
table.wf-rate-table a {
|
693 |
-
color: #0073aa; }
|
694 |
-
|
695 |
-
table.wf-rate-table a.review-star:after {
|
696 |
-
content: "\f155\f155\f155\f155\f155" !important;
|
697 |
-
font-family: dashicons;
|
698 |
-
font-size: 10px;
|
699 |
-
font-weight: 100;
|
700 |
-
text-rendering: auto;
|
701 |
-
-webkit-font-smoothing: antialiased;
|
702 |
-
-moz-osx-font-smoothing: grayscale;
|
703 |
-
color: #0073aa;
|
704 |
-
text-decoration: underline; }
|
705 |
-
|
706 |
-
/** Admin Menu Icon **/
|
707 |
-
#adminmenu #toplevel_page_webappick-manage-feeds div.wp-menu-image::before {
|
708 |
-
content: "";
|
709 |
-
background: url(../images/woo-feed-icon.svg) no-repeat center center;
|
710 |
-
background-size: 20px 20px;
|
711 |
-
opacity: 0.6;
|
712 |
-
filter: alpha(opacity=60); }
|
713 |
-
|
714 |
-
#adminmenu #toplevel_page_webappick-manage-feeds:hover div.wp-menu-image::before {
|
715 |
-
opacity: 1;
|
716 |
-
filter: alpha(opacity=100); }
|
717 |
-
|
718 |
-
#adminmenu #toplevel_page_webappick-manage-feeds.wp-has-current-submenu div.wp-menu-image::before {
|
719 |
-
opacity: 1;
|
720 |
-
filter: alpha(opacity=100); }
|
721 |
-
|
722 |
-
/** Admin Page Wrapper **/
|
723 |
-
.wapk-admin, .wapk-admin * {
|
724 |
-
box-sizing: border-box; }
|
725 |
-
|
726 |
-
.wapk-admin {
|
727 |
-
position: relative;
|
728 |
-
display: block;
|
729 |
-
-webkit-hyphens: manual;
|
730 |
-
-ms-hyphens: manual;
|
731 |
-
-moz-hyphens: manual;
|
732 |
-
hyphens: manual;
|
733 |
-
color: #1B2730;
|
734 |
-
/* reset .warp margin to use full width except menu area */
|
735 |
-
margin: 0 0 0 -10px; }
|
736 |
-
|
737 |
-
@media screen and (min-width: 783px) {
|
738 |
-
.wapk-admin {
|
739 |
-
margin: 0 0 0 -20px; } }
|
740 |
-
|
741 |
-
.text-center {
|
742 |
-
text-align: center; }
|
743 |
-
|
744 |
-
.wapk-admin h1, .wapk-admin h2, .wapk-admin h3,
|
745 |
-
.wapk-admin h4, .wapk-admin h5, .wapk-admin h6,
|
746 |
-
.wapk-admin p {
|
747 |
-
color: #1B2730; }
|
748 |
-
|
749 |
-
.wapk-admin sup {
|
750 |
-
vertical-align: baseline;
|
751 |
-
position: relative;
|
752 |
-
top: -6px; }
|
753 |
-
|
754 |
-
.wapk-admin sub {
|
755 |
-
vertical-align: baseline;
|
756 |
-
position: relative;
|
757 |
-
top: 4px; }
|
758 |
-
|
759 |
-
/* WP.Core.UI Compat */
|
760 |
-
.wapk-admin .wapk-section {
|
761 |
-
margin: 10px 20px 0 22px;
|
762 |
-
position: relative;
|
763 |
-
display: block; }
|
764 |
-
.wapk-admin .wapk-section [class$=icon32] + h2 {
|
765 |
-
font-size: 23px;
|
766 |
-
font-weight: 400;
|
767 |
-
margin: 0;
|
768 |
-
padding: 9px 0 4px 0;
|
769 |
-
line-height: 1.3; }
|
770 |
-
.wapk-admin .wapk-section h1 {
|
771 |
-
font-size: 23px;
|
772 |
-
font-weight: 400;
|
773 |
-
margin: 0;
|
774 |
-
padding: 9px 0 4px 0;
|
775 |
-
line-height: 1.3; }
|
776 |
-
.wapk-admin .wapk-section > h2:first-child {
|
777 |
-
font-size: 23px;
|
778 |
-
font-weight: 400;
|
779 |
-
margin: 0;
|
780 |
-
padding: 9px 0 4px 0;
|
781 |
-
line-height: 1.3; }
|
782 |
-
|
783 |
-
.wapk-admin > .notice {
|
784 |
-
margin: 10px 20px 0 22px;
|
785 |
-
position: relative;
|
786 |
-
display: block; }
|
787 |
-
|
788 |
-
.wapk-admin span.help {
|
789 |
-
display: block;
|
790 |
-
float: left;
|
791 |
-
width: 100%;
|
792 |
-
font-size: 0.9em;
|
793 |
-
color: #636363;
|
794 |
-
margin-top: 5px;
|
795 |
-
font-weight: 500; }
|
796 |
-
.wapk-admin span.help .dashicons {
|
797 |
-
width: 11px;
|
798 |
-
height: 12px;
|
799 |
-
font-size: inherit;
|
800 |
-
vertical-align: middle; }
|
801 |
-
|
802 |
-
.clear:after {
|
803 |
-
content: "";
|
804 |
-
display: table;
|
805 |
-
clear: both; }
|
806 |
-
|
807 |
-
/*.wapk-admin .help a { color: inherit; text-decoration: underline; }*/
|
808 |
-
/** Extend WP Core UI PostBox For Docs **/
|
809 |
-
.wapk-feed-docs .postbox {
|
810 |
-
width: 355px;
|
811 |
-
margin-right: 20px;
|
812 |
-
display: inline-block;
|
813 |
-
vertical-align: top; }
|
814 |
-
.wapk-feed-docs .postbox .hndle {
|
815 |
-
font-size: 14px;
|
816 |
-
padding: 8px 12px;
|
817 |
-
margin: 0;
|
818 |
-
line-height: 1.4;
|
819 |
-
cursor: pointer; }
|
820 |
-
.wapk-feed-docs .postbox .dashicons {
|
821 |
-
color: #ccc; }
|
822 |
-
.wapk-feed-docs .postbox a {
|
823 |
-
text-decoration: none; }
|
824 |
-
.wapk-feed-docs .postbox .inside {
|
825 |
-
margin-bottom: 0; }
|
826 |
-
.wapk-feed-docs .postbox ul {
|
827 |
-
margin-bottom: 0; }
|
828 |
-
.wapk-feed-docs .postbox .toggle-indicator:before {
|
829 |
-
content: "\F142";
|
830 |
-
display: inline-block;
|
831 |
-
font: 400 20px/1 dashicons;
|
832 |
-
speak: none;
|
833 |
-
-webkit-font-smoothing: antialiased;
|
834 |
-
-moz-osx-font-smoothing: grayscale;
|
835 |
-
text-decoration: none !important; }
|
836 |
-
.wapk-feed-docs .postbox li {
|
837 |
-
width: 100%;
|
838 |
-
display: block;
|
839 |
-
float: left; }
|
840 |
-
.wapk-feed-docs .postbox li span {
|
841 |
-
display: inline-block;
|
842 |
-
float: left;
|
843 |
-
margin-right: 4px; }
|
844 |
-
.wapk-feed-docs .postbox li a {
|
845 |
-
display: inline-block;
|
846 |
-
float: left;
|
847 |
-
width: calc(100% - 24px); }
|
848 |
-
|
849 |
-
.wapk-feed-docs .postbox.closed .toggle-indicator:before {
|
850 |
-
content: "\F140"; }
|
851 |
-
|
852 |
-
.wapk-section #post-body.columns-2 #side-sortables {
|
853 |
-
min-height: 196px; }
|
854 |
-
|
855 |
-
#poststuff #feed_merchant_info .inside {
|
856 |
-
margin: 0;
|
857 |
-
padding: 0; }
|
858 |
-
|
859 |
-
#feed_merchant_info ul.data {
|
860 |
-
margin-left: 24px;
|
861 |
-
margin-top: 5px; }
|
862 |
-
#feed_merchant_info ul.data li {
|
863 |
-
margin-bottom: 5px; }
|
864 |
-
|
865 |
-
.merchant-info-section {
|
866 |
-
padding: 6px 10px 8px; }
|
867 |
-
|
868 |
-
.generateFeed .wf-tab-content table:first-child {
|
869 |
-
border: none;
|
870 |
-
box-shadow: none; }
|
871 |
-
|
872 |
-
.generateFeed table th {
|
873 |
-
font-weight: bold; }
|
874 |
-
|
875 |
-
@media only screen and (max-width: 850px) {
|
876 |
-
.wapk-feed-docs .postbox {
|
877 |
-
display: block;
|
878 |
-
width: auto;
|
879 |
-
float: none;
|
880 |
-
margin-right: auto; } }
|
881 |
-
|
882 |
-
/** Admin Feed Help Docs **/
|
883 |
-
.wp-submenu li span.woo-feed-docs {
|
884 |
-
font-weight: bold;
|
885 |
-
color: #f18500; }
|
886 |
-
|
887 |
-
.wp-submenu li:hover span.woo-feed-docs {
|
888 |
-
color: #ce7304; }
|
889 |
-
|
890 |
-
.wp-submenu li.current span.woo-feed-docs {
|
891 |
-
color: #ce7304; }
|
892 |
-
|
893 |
-
.wapk-admin .wapk-feed-docs .postbox .hndle {
|
894 |
-
cursor: default; }
|
895 |
-
|
896 |
-
/** Admin Call-To-Action **/
|
897 |
-
.wapk-cta {
|
898 |
-
position: relative;
|
899 |
-
display: -ms-flexbox;
|
900 |
-
display: flex;
|
901 |
-
width: 100%;
|
902 |
-
padding: 100px 15px;
|
903 |
-
background: linear-gradient(45deg, #6CD5FF 33%, #c2efef 100%);
|
904 |
-
-ms-flex-pack: center;
|
905 |
-
justify-content: center;
|
906 |
-
-ms-flex-align: center;
|
907 |
-
align-items: center; }
|
908 |
-
.wapk-cta-icon .dashicons {
|
909 |
-
font-size: 100px;
|
910 |
-
width: 100px;
|
911 |
-
height: auto;
|
912 |
-
margin: 0 10px -8px 0;
|
913 |
-
color: #02658c; }
|
914 |
-
.wapk-cta-content {
|
915 |
-
width: 50%; }
|
916 |
-
.wapk-cta-content h2 {
|
917 |
-
font-size: 2em;
|
918 |
-
margin: 0.5em 0; }
|
919 |
-
.wapk-cta-action a.wapk-button {
|
920 |
-
font-size: 24px;
|
921 |
-
height: auto !important;
|
922 |
-
padding: 10px 20px; }
|
923 |
-
|
924 |
-
@media (max-width: 600px) {
|
925 |
-
.wapk-cta {
|
926 |
-
display: block;
|
927 |
-
text-align: center;
|
928 |
-
padding: 4em 0; }
|
929 |
-
.wapk-cta-content {
|
930 |
-
width: 100%;
|
931 |
-
margin: 2em 0; } }
|
932 |
-
|
933 |
-
/** Override .wp-core-ui .wapk-button styles with prefix .wapk-admin **/
|
934 |
-
/* Button Skin */
|
935 |
-
.wapk-button {
|
936 |
-
color: #00D4D4;
|
937 |
-
border-color: #00D4D4;
|
938 |
-
display: inline-block;
|
939 |
-
text-decoration: none;
|
940 |
-
font-size: 13px;
|
941 |
-
line-height: 2.15384615;
|
942 |
-
min-height: 30px;
|
943 |
-
margin: 0;
|
944 |
-
padding: 0 10px;
|
945 |
-
cursor: pointer;
|
946 |
-
border-width: 1px;
|
947 |
-
border-style: solid;
|
948 |
-
-webkit-appearance: none;
|
949 |
-
border-radius: 3px;
|
950 |
-
white-space: nowrap;
|
951 |
-
box-sizing: border-box; }
|
952 |
-
.wapk-button > svg {
|
953 |
-
width: 15px;
|
954 |
-
margin-left: 5px;
|
955 |
-
fill: #00D4D4; }
|
956 |
-
.wapk-button > .dashicons {
|
957 |
-
color: #00D4D4; }
|
958 |
-
.wapk-button:hover {
|
959 |
-
border-color: #00bbbb;
|
960 |
-
color: #00bbbb; }
|
961 |
-
.wapk-button:hover > svg {
|
962 |
-
fill: #00bbbb; }
|
963 |
-
.wapk-button:hover > .dashicons {
|
964 |
-
color: #00bbbb; }
|
965 |
-
.wapk-button:focus {
|
966 |
-
border-color: #00D4D4;
|
967 |
-
color: #00bbbb;
|
968 |
-
box-shadow: 0 0 0 1px #00D4D4; }
|
969 |
-
.wapk-button:focus > svg {
|
970 |
-
fill: #00bbbb; }
|
971 |
-
.wapk-button:focus > .dashicons {
|
972 |
-
color: #00bbbb; }
|
973 |
-
.wapk-button:active {
|
974 |
-
background: #00bbbb;
|
975 |
-
border-color: #00bbbb; }
|
976 |
-
.wapk-button-secondary {
|
977 |
-
color: #00D4D4;
|
978 |
-
border-color: #00D4D4;
|
979 |
-
display: inline-block;
|
980 |
-
text-decoration: none;
|
981 |
-
font-size: 13px;
|
982 |
-
line-height: 2.15384615;
|
983 |
-
min-height: 30px;
|
984 |
-
margin: 0;
|
985 |
-
padding: 0 10px;
|
986 |
-
cursor: pointer;
|
987 |
-
border-width: 1px;
|
988 |
-
border-style: solid;
|
989 |
-
-webkit-appearance: none;
|
990 |
-
border-radius: 3px;
|
991 |
-
white-space: nowrap;
|
992 |
-
box-sizing: border-box; }
|
993 |
-
.wapk-button-secondary > svg {
|
994 |
-
width: 15px;
|
995 |
-
margin-left: 5px;
|
996 |
-
fill: #00D4D4; }
|
997 |
-
.wapk-button-secondary > .dashicons {
|
998 |
-
color: #00D4D4; }
|
999 |
-
.wapk-button-secondary:hover {
|
1000 |
-
border-color: #00bbbb;
|
1001 |
-
color: #00bbbb; }
|
1002 |
-
.wapk-button-secondary:hover > svg {
|
1003 |
-
fill: #00bbbb; }
|
1004 |
-
.wapk-button-secondary:hover > .dashicons {
|
1005 |
-
color: #00bbbb; }
|
1006 |
-
.wapk-button-secondary:focus {
|
1007 |
-
border-color: #00D4D4;
|
1008 |
-
color: #00bbbb;
|
1009 |
-
box-shadow: 0 0 0 1px #00D4D4; }
|
1010 |
-
.wapk-button-secondary:focus > svg {
|
1011 |
-
fill: #00bbbb; }
|
1012 |
-
.wapk-button-secondary:focus > .dashicons {
|
1013 |
-
color: #00bbbb; }
|
1014 |
-
.wapk-button-primary {
|
1015 |
-
display: inline-block;
|
1016 |
-
text-decoration: none;
|
1017 |
-
font-size: 13px;
|
1018 |
-
line-height: 2.15384615;
|
1019 |
-
min-height: 30px;
|
1020 |
-
margin: 0;
|
1021 |
-
padding: 0 10px;
|
1022 |
-
cursor: pointer;
|
1023 |
-
border-width: 1px;
|
1024 |
-
border-style: solid;
|
1025 |
-
-webkit-appearance: none;
|
1026 |
-
border-radius: 3px;
|
1027 |
-
white-space: nowrap;
|
1028 |
-
box-sizing: border-box;
|
1029 |
-
background: #00D4D4;
|
1030 |
-
border-color: #00D4D4;
|
1031 |
-
color: #fff;
|
1032 |
-
box-shadow: 0 1px 0 #00bbbb;
|
1033 |
-
text-shadow: 0 -1px 1px #00bbbb, 1px 0 1px #00bbbb, 0 1px 1px #00bbbb, -1px 0 1px #00bbbb; }
|
1034 |
-
.wapk-button-primary > svg {
|
1035 |
-
fill: #fff; }
|
1036 |
-
.wapk-button-primary:hover {
|
1037 |
-
background: #00e3e3;
|
1038 |
-
border-color: #00c5c5;
|
1039 |
-
color: #fff; }
|
1040 |
-
.wapk-button-primary:hover > svg {
|
1041 |
-
fill: #fff; }
|
1042 |
-
.wapk-button-primary:focus {
|
1043 |
-
background: #00e3e3;
|
1044 |
-
border-color: #00c5c5;
|
1045 |
-
color: #fff;
|
1046 |
-
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00D4D4; }
|
1047 |
-
.wapk-button-primary:focus > svg {
|
1048 |
-
fill: #fff; }
|
1049 |
-
.wapk-button-primary:active {
|
1050 |
-
background: #00bbbb;
|
1051 |
-
border-color: #00bbbb;
|
1052 |
-
color: #fff; }
|
1053 |
-
.wapk-button-primary:active > svg {
|
1054 |
-
fill: #fff; }
|
1055 |
-
.wapk-button-primary:disabled {
|
1056 |
-
color: #c7d1d1 !important;
|
1057 |
-
background: #22ffff !important;
|
1058 |
-
border-color: #22ffff !important;
|
1059 |
-
text-shadow: none !important; }
|
1060 |
-
.wapk-button-primary:disabled > svg {
|
1061 |
-
fill: #c7d1d1 !important; }
|
1062 |
-
.wapk-button.hover {
|
1063 |
-
border-color: #00bbbb;
|
1064 |
-
color: #00bbbb; }
|
1065 |
-
.wapk-button.hover > svg {
|
1066 |
-
fill: #00bbbb; }
|
1067 |
-
.wapk-button.hover > .dashicons {
|
1068 |
-
color: #00bbbb; }
|
1069 |
-
.wapk-button.focus {
|
1070 |
-
border-color: #00D4D4;
|
1071 |
-
color: #00bbbb;
|
1072 |
-
box-shadow: 0 0 0 1px #00D4D4; }
|
1073 |
-
.wapk-button.focus > svg {
|
1074 |
-
fill: #00bbbb; }
|
1075 |
-
.wapk-button.focus > .dashicons {
|
1076 |
-
color: #00bbbb; }
|
1077 |
-
.wapk-button.active {
|
1078 |
-
border-color: #00bbbb;
|
1079 |
-
color: #00bbbb;
|
1080 |
-
box-shadow: inset 0 2px 5px -3px #00bbbb; }
|
1081 |
-
.wapk-button.active:focus {
|
1082 |
-
border-color: #00bbbb;
|
1083 |
-
color: #00bbbb;
|
1084 |
-
box-shadow: inset 0 2px 5px -3px #00bbbb; }
|
1085 |
-
.wapk-button.active:focus > svg {
|
1086 |
-
fill: #00bbbb; }
|
1087 |
-
.wapk-button.active:focus > .dashicons {
|
1088 |
-
color: #00bbbb; }
|
1089 |
-
.wapk-button.active:hover {
|
1090 |
-
border-color: #00bbbb;
|
1091 |
-
color: #00bbbb;
|
1092 |
-
box-shadow: inset 0 2px 5px -3px #00bbbb; }
|
1093 |
-
.wapk-button.active:hover > svg {
|
1094 |
-
fill: #00bbbb; }
|
1095 |
-
.wapk-button.active:hover > .dashicons {
|
1096 |
-
color: #00bbbb; }
|
1097 |
-
.wapk-button.active > svg {
|
1098 |
-
fill: #00bbbb; }
|
1099 |
-
.wapk-button.active > .dashicons {
|
1100 |
-
color: #00bbbb; }
|
1101 |
-
.wapk-button-primary.active {
|
1102 |
-
background: #00D4D4;
|
1103 |
-
color: #fff;
|
1104 |
-
border-color: #008888;
|
1105 |
-
box-shadow: inset 0 2px 5px -3px black; }
|
1106 |
-
.wapk-button-primary.active:focus {
|
1107 |
-
background: #00D4D4;
|
1108 |
-
color: #fff;
|
1109 |
-
border-color: #008888;
|
1110 |
-
box-shadow: inset 0 2px 5px -3px black; }
|
1111 |
-
.wapk-button-primary.active:focus > svg {
|
1112 |
-
fill: #fff; }
|
1113 |
-
.wapk-button-primary.active:hover {
|
1114 |
-
background: #00D4D4;
|
1115 |
-
color: #fff;
|
1116 |
-
border-color: #008888;
|
1117 |
-
box-shadow: inset 0 2px 5px -3px black; }
|
1118 |
-
.wapk-button-primary.active:hover > svg {
|
1119 |
-
fill: #fff; }
|
1120 |
-
.wapk-button-primary.active > svg {
|
1121 |
-
fill: #fff; }
|
1122 |
-
.wapk-button-primary[disabled] {
|
1123 |
-
color: #c7d1d1 !important;
|
1124 |
-
background: #22ffff !important;
|
1125 |
-
border-color: #22ffff !important;
|
1126 |
-
text-shadow: none !important; }
|
1127 |
-
.wapk-button-primary[disabled] > svg {
|
1128 |
-
fill: #c7d1d1 !important; }
|
1129 |
-
.wapk-button-primary.wapk-button-primary-disabled {
|
1130 |
-
color: #c7d1d1 !important;
|
1131 |
-
background: #22ffff !important;
|
1132 |
-
border-color: #22ffff !important;
|
1133 |
-
text-shadow: none !important; }
|
1134 |
-
.wapk-button-primary.wapk-button-primary-disabled > svg {
|
1135 |
-
fill: #c7d1d1 !important; }
|
1136 |
-
.wapk-button-primary.disabled {
|
1137 |
-
color: #c7d1d1 !important;
|
1138 |
-
background: #22ffff !important;
|
1139 |
-
border-color: #22ffff !important;
|
1140 |
-
text-shadow: none !important; }
|
1141 |
-
.wapk-button-primary.disabled > svg {
|
1142 |
-
fill: #c7d1d1 !important; }
|
1143 |
-
.wapk-button-primary.wapk-button-hero {
|
1144 |
-
box-shadow: 0 2px 0 #00bbbb; }
|
1145 |
-
.wapk-button-primary.wapk-button-hero:focus {
|
1146 |
-
box-shadow: 0 2px 0 #00bbbb, 0 1px 0 #00c5c5, 0 0 2px 1px #00eeee; }
|
1147 |
-
.wapk-button-primary.wapk-button-hero:active {
|
1148 |
-
box-shadow: inset 0 3px 0 #00a1a1; }
|
1149 |
-
.wapk-button-primary.wapk-button-hero.active {
|
1150 |
-
box-shadow: inset 0 3px 0 #00a1a1; }
|
1151 |
-
.wapk-button-primary.wapk-button-hero.active:hover, .wapk-button-primary.wapk-button-hero.active:focus {
|
1152 |
-
box-shadow: inset 0 3px 0 #00a1a1; }
|
1153 |
-
.wapk-button-group > .wapk-button.active {
|
1154 |
-
border-color: #00D4D4; }
|
1155 |
-
|
1156 |
-
/* Button Sizes */
|
1157 |
-
.wapk-button.wapk-button-xl {
|
1158 |
-
height: 30px;
|
1159 |
-
line-height: 28px;
|
1160 |
-
padding: 0 12px 2px; }
|
1161 |
-
|
1162 |
-
.wapk-button-group.wapk-button-xl .wapk-button {
|
1163 |
-
height: 30px;
|
1164 |
-
line-height: 28px;
|
1165 |
-
padding: 0 12px 2px; }
|
1166 |
-
|
1167 |
-
.wapk-button.wapk-button-hero {
|
1168 |
-
font-size: 18px;
|
1169 |
-
height: 50px;
|
1170 |
-
line-height: 48px;
|
1171 |
-
padding: 0 36px;
|
1172 |
-
min-height: 46px; }
|
1173 |
-
|
1174 |
-
.wapk-button-group.wapk-button-hero .wapk-button {
|
1175 |
-
font-size: 18px;
|
1176 |
-
height: 50px;
|
1177 |
-
line-height: 48px;
|
1178 |
-
padding: 0 36px;
|
1179 |
-
min-height: 46px; }
|
1180 |
-
|
1181 |
-
@media screen and (min-width: 782px) {
|
1182 |
-
th#status,
|
1183 |
-
th#provider {
|
1184 |
-
width: 80px; }
|
1185 |
-
th#type {
|
1186 |
-
width: 50px; }
|
1187 |
-
th#option_name {
|
1188 |
-
width: 100px; }
|
1189 |
-
td.option_name.column-option_name > span:first-child {
|
1190 |
-
display: none; }
|
1191 |
-
th#last_updated {
|
1192 |
-
width: 90px; }
|
1193 |
-
th#view {
|
1194 |
-
width: 111px; } }
|
1195 |
-
|
1196 |
-
@media screen and (min-width: 960px) {
|
1197 |
-
th#status, th#provider {
|
1198 |
-
width: 100px; }
|
1199 |
-
th#type {
|
1200 |
-
width: 80px; }
|
1201 |
-
th#option_name {
|
1202 |
-
width: 150px; }
|
1203 |
-
th#last_updated {
|
1204 |
-
width: 140px; } }
|
1205 |
-
|
1206 |
-
@media screen and (max-width: 782px) {
|
1207 |
-
table.wf-info-table {
|
1208 |
-
margin-top: 10px; }
|
1209 |
-
table.wf-info-table th:first-child img {
|
1210 |
-
margin: 0 auto;
|
1211 |
-
display: block; }
|
1212 |
-
.wapk-button.wapk-button-xl {
|
1213 |
-
padding: 6px 14px;
|
1214 |
-
line-height: normal;
|
1215 |
-
font-size: 14px;
|
1216 |
-
vertical-align: middle;
|
1217 |
-
height: auto;
|
1218 |
-
margin-bottom: 4px; } }
|
1219 |
-
|
1220 |
-
.wapk-feed-docs .wapk-feed-cta {
|
1221 |
-
margin: 0; }
|
1222 |
-
|
1223 |
-
.campaign_configurator {
|
1224 |
-
background: #FFF;
|
1225 |
-
padding: 20px 0; }
|
1226 |
-
.campaign_configurator table {
|
1227 |
-
margin: 0 auto;
|
1228 |
-
width: 51%;
|
1229 |
-
min-width: 574px;
|
1230 |
-
border: none;
|
1231 |
-
box-shadow: none; }
|
1232 |
-
.campaign_configurator th {
|
1233 |
-
min-width: 120px; }
|
1234 |
-
|
1235 |
-
@media screen and (max-width: 782px) {
|
1236 |
-
.campaign_configurator {
|
1237 |
-
padding: 0; }
|
1238 |
-
.campaign_configurator table {
|
1239 |
-
width: auto;
|
1240 |
-
min-width: auto;
|
1241 |
-
max-width: 100%; }
|
1242 |
-
.campaign_configurator th {
|
1243 |
-
min-width: auto; } }
|
1244 |
-
|
1245 |
-
#wf-tab-content-config td > input:not([type="checkbox"]):not([type="radio"]),
|
1246 |
-
#wf-tab-content-config td > select,
|
1247 |
-
#wf-tab-content-config td > textarea {
|
1248 |
-
width: 100% !important; }
|
1249 |
-
|
1250 |
-
.woo-feed-filters td > div:nth-child(2n):not(.clear):not(.selectize) {
|
1251 |
-
width: 120px;
|
1252 |
-
display: block; }
|
1253 |
-
|
1254 |
-
.woo-feed-filters td > div:not(.clear) {
|
1255 |
-
float: left;
|
1256 |
-
margin-right: 10px; }
|
1257 |
-
|
1258 |
-
.woo-feed-filters tr > td:first-child {
|
1259 |
-
width: 290px;
|
1260 |
-
padding-left: 40px; }
|
1261 |
-
|
1262 |
-
.woo-feed-filters,
|
1263 |
-
.woo-feed-ftp {
|
1264 |
-
margin: 15px auto 25px; }
|
1265 |
-
|
1266 |
-
.wf_clean_cache_wrapper {
|
1267 |
-
display: -ms-flexbox;
|
1268 |
-
display: flex;
|
1269 |
-
margin-left: auto; }
|
1270 |
-
|
1271 |
-
@-webkit-keyframes LoaderClockWise {
|
1272 |
-
from {
|
1273 |
-
-webkit-transform: rotate(0deg);
|
1274 |
-
transform: rotate(0deg); }
|
1275 |
-
to {
|
1276 |
-
-webkit-transform: rotate(360deg);
|
1277 |
-
transform: rotate(360deg); } }
|
1278 |
-
|
1279 |
-
@keyframes LoaderClockWise {
|
1280 |
-
from {
|
1281 |
-
-webkit-transform: rotate(0deg);
|
1282 |
-
transform: rotate(0deg); }
|
1283 |
-
to {
|
1284 |
-
-webkit-transform: rotate(360deg);
|
1285 |
-
transform: rotate(360deg); } }
|
1286 |
-
|
1287 |
-
.woo-feed-cache-loader {
|
1288 |
-
width: 18px;
|
1289 |
-
margin-right: 5px;
|
1290 |
-
animation: LoaderClockWise 1s linear infinite;
|
1291 |
-
-webkit-animation: LoaderClockWise 1s linear infinite;
|
1292 |
-
display: none; }
|
1293 |
-
|
1294 |
-
.woo-feed-table-heading .woo-feed-table-heading-title {
|
1295 |
-
float: left;
|
1296 |
-
margin-right: auto;
|
1297 |
-
display: inline-block;
|
1298 |
-
line-height: 30px; }
|
1299 |
-
|
1300 |
-
.woo-feed-table-heading .wf_clean_cache_wrapper {
|
1301 |
-
float: right;
|
1302 |
-
font-weight: normal; }
|
1303 |
-
|
1304 |
-
.wf_clean_cache_wrapper button {
|
1305 |
-
background: #eb4d4b;
|
1306 |
-
color: #fff;
|
1307 |
-
border: none;
|
1308 |
-
font-weight: 500;
|
1309 |
-
display: inline-block;
|
1310 |
-
text-decoration: none;
|
1311 |
-
font-size: 13px;
|
1312 |
-
line-height: 2.15384615;
|
1313 |
-
min-height: 30px;
|
1314 |
-
margin: 0;
|
1315 |
-
padding: 0 10px;
|
1316 |
-
border-radius: 3px;
|
1317 |
-
cursor: pointer;
|
1318 |
-
outline: none; }
|
1319 |
-
|
1320 |
-
.wf_clean_cache_wrapper button:hover {
|
1321 |
-
background: #ff7979;
|
1322 |
-
color: #fff; }
|
1 |
/**
|
2 |
* All of the CSS for your admin-specific functionality should be
|
3 |
* included in this file.
|
4 |
+
*/
|
5 |
+
.wpf_spin {
|
6 |
+
-webkit-animation: spin 1000ms infinite linear;
|
7 |
+
animation: spin 1000ms infinite linear; }
|
8 |
+
.wpf_spin.reverse_spin {
|
9 |
+
animation-direction: reverse; }
|
10 |
+
|
11 |
+
.wpf_regenerate.disabled {
|
12 |
+
color: #737373;
|
13 |
+
box-shadow: none;
|
14 |
+
cursor: not-allowed; }
|
15 |
+
|
16 |
+
@-webkit-keyframes spin {
|
17 |
+
0% {
|
18 |
+
-webkit-transform: rotate(0deg);
|
19 |
+
transform: rotate(0deg); }
|
20 |
+
100% {
|
21 |
+
-webkit-transform: rotate(359deg);
|
22 |
+
transform: rotate(359deg); } }
|
23 |
+
|
24 |
+
@keyframes spin {
|
25 |
+
0% {
|
26 |
+
-webkit-transform: rotate(0deg);
|
27 |
+
transform: rotate(0deg); }
|
28 |
+
100% {
|
29 |
+
-webkit-transform: rotate(359deg);
|
30 |
+
transform: rotate(359deg); } }
|
31 |
+
|
32 |
+
.wfbtn {
|
33 |
+
background: #3498db;
|
34 |
+
background-image: linear-gradient(125deg, #3cb0fd 0%, #152f8c 140%);
|
35 |
+
border-radius: 17px;
|
36 |
+
box-shadow: inset 0 1px 3px #666666;
|
37 |
+
font-family: Arial, sans-serif;
|
38 |
+
color: #ffffff;
|
39 |
+
font-size: 20px;
|
40 |
+
padding: 10px 20px 10px 20px;
|
41 |
+
border: solid #2b698f 0px;
|
42 |
+
text-decoration: none; }
|
43 |
+
.wfbtn:hover {
|
44 |
+
background: #3cb0fd;
|
45 |
+
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
|
46 |
+
text-decoration: none; }
|
47 |
+
|
48 |
+
.woo_feed_manage_list_table .wf_update_interval_btn {
|
49 |
+
background: linear-gradient(125deg, #3cb0fd 0, #152f8c 140%); }
|
50 |
+
.woo_feed_manage_list_table .wf_update_interval_btn:hover {
|
51 |
+
background: linear-gradient(125deg, #3cb0fd 0, #152f8c 140%); }
|
52 |
+
|
53 |
+
.wftooltip {
|
54 |
+
display: none;
|
55 |
+
position: absolute;
|
56 |
+
border: 1px solid #333;
|
57 |
+
background-color: #161616;
|
58 |
+
border-radius: 5px;
|
59 |
+
padding: 10px;
|
60 |
+
color: #fff;
|
61 |
+
font-size: 12px; }
|
62 |
+
|
63 |
+
.feed-actions .makeFeedResponse {
|
64 |
+
width: 70%;
|
65 |
+
color: green; }
|
66 |
+
|
67 |
+
.woo-feed-mapping-input {
|
68 |
+
width: 100%; }
|
69 |
+
|
70 |
+
.requiredIn {
|
71 |
+
color: red; }
|
72 |
+
|
73 |
+
.generalInput {
|
74 |
+
width: 200px; }
|
75 |
+
.generalInput:not(.selectize-control) {
|
76 |
+
margin: 5px auto; }
|
77 |
+
|
78 |
+
.error {
|
79 |
+
color: red; }
|
80 |
+
|
81 |
+
.widefat td select, .widefat td input {
|
82 |
+
max-width: 100%; }
|
83 |
+
|
84 |
+
#wf_newRow {
|
85 |
+
margin-left: 0; }
|
86 |
+
|
87 |
+
.mtable tbody tr {
|
88 |
+
height: 25px;
|
89 |
+
border: 1px solid #CCC;
|
90 |
+
text-align: left;
|
91 |
+
-ms-flex-align: baseline;
|
92 |
+
align-items: baseline;
|
93 |
+
font-weight: bold; }
|
94 |
+
|
95 |
+
.mtable th:nth-child(1) {
|
96 |
+
width: 17px; }
|
97 |
+
|
98 |
+
.mtable th:nth-child(2) {
|
99 |
+
width: 160px; }
|
100 |
+
|
101 |
+
.mtable th:nth-child(3) {
|
102 |
+
width: 100px; }
|
103 |
+
|
104 |
+
.mtable th:nth-child(4) {
|
105 |
+
width: 100px; }
|
106 |
+
|
107 |
+
.mtable th:nth-child(5) {
|
108 |
+
width: 150px; }
|
109 |
+
|
110 |
+
.mtable th:nth-child(6) {
|
111 |
+
width: 100px; }
|
112 |
+
|
113 |
+
.mtable th:nth-child(7) {
|
114 |
+
width: 150px; }
|
115 |
+
|
116 |
+
.mtable th:nth-child(8) {
|
117 |
+
width: 90px; }
|
118 |
+
|
119 |
+
.mtable th:nth-child(9) {
|
120 |
+
width: 29px; }
|
121 |
+
|
122 |
+
.mtable2 tbody tr {
|
123 |
+
height: 25px;
|
124 |
+
border: 1px solid #CCC;
|
125 |
+
text-align: left;
|
126 |
+
-ms-flex-align: baseline;
|
127 |
+
align-items: baseline;
|
128 |
+
font-weight: bold; }
|
129 |
+
|
130 |
+
.mtable2 th:nth-child(1) {
|
131 |
+
width: 30px; }
|
132 |
+
|
133 |
+
.mtable2 th:nth-child(2) {
|
134 |
+
width: 150px; }
|
135 |
+
|
136 |
+
.mtable2 th:nth-child(3) {
|
137 |
+
width: 230px; }
|
138 |
+
|
139 |
+
.mtable2 th:nth-child(4) {
|
140 |
+
width: 220px; }
|
141 |
+
|
142 |
+
.mtable2 th:nth-child(7) {
|
143 |
+
width: 50px; }
|
144 |
+
|
145 |
+
.mtable2 th:nth-child(8) {
|
146 |
+
width: 50px; }
|
147 |
+
|
148 |
+
.mtable2 th:nth-child(9) {
|
149 |
+
width: 29px; }
|
150 |
+
|
151 |
+
.wp-admin select.wf_mattributes {
|
152 |
+
width: 150px;
|
153 |
+
left: 0;
|
154 |
+
height: 25px; }
|
155 |
+
|
156 |
+
div#wf-tab-content1 select:not([name^="output_type"]) {
|
157 |
+
width: 100%; }
|
158 |
+
|
159 |
+
div#wf-tab-content1 input {
|
160 |
+
width: 100%; }
|
161 |
+
|
162 |
+
div#wf-tab-content1 .dashicons {
|
163 |
+
vertical-align: middle; }
|
164 |
+
|
165 |
+
.wf_attributes {
|
166 |
+
width: 150px;
|
167 |
+
left: 0; }
|
168 |
+
|
169 |
+
.wf_compare {
|
170 |
+
max-width: 245px;
|
171 |
+
left: 0; }
|
172 |
+
|
173 |
+
.wf_ps {
|
174 |
+
width: 100px;
|
175 |
+
left: 0; }
|
176 |
+
|
177 |
+
.wf_sortedtable {
|
178 |
+
cursor: move; }
|
179 |
+
|
180 |
+
.sorted_table {
|
181 |
+
position: relative; }
|
182 |
+
.sorted_table .dragged {
|
183 |
+
position: absolute;
|
184 |
+
opacity: 0.8;
|
185 |
+
z-index: 9999;
|
186 |
+
background: #fff;
|
187 |
+
width: 100%;
|
188 |
+
display: table; }
|
189 |
+
.sorted_table tbody tr.placeholder td {
|
190 |
+
border: 1px dashed #2cc185;
|
191 |
+
height: 46px; }
|
192 |
+
|
193 |
+
.wfnoempty {
|
194 |
+
width: 120px; }
|
195 |
+
|
196 |
+
/*==================Tab Design=======================*/
|
197 |
+
p {
|
198 |
+
color: #222; }
|
199 |
+
|
200 |
+
.wf_tabs {
|
201 |
+
position: relative;
|
202 |
+
margin: 0 auto;
|
203 |
+
width: 100%;
|
204 |
+
list-style: none;
|
205 |
+
/*bottom: 50px;*/ }
|
206 |
+
|
207 |
+
.wf_tabs:after {
|
208 |
+
display: table;
|
209 |
+
clear: both;
|
210 |
+
content: ""; }
|
211 |
+
|
212 |
+
.wf_tabs li {
|
213 |
+
float: left;
|
214 |
+
width: 20%;
|
215 |
+
display: block;
|
216 |
+
border: 2px solid #CCC; }
|
217 |
+
|
218 |
+
.wf_tabs li > input[type="radio"][name="wf_tabs"] {
|
219 |
+
position: absolute;
|
220 |
+
top: auto;
|
221 |
+
left: -9999px; }
|
222 |
+
|
223 |
+
.wf-tab-name {
|
224 |
+
display: block;
|
225 |
+
padding: 15px;
|
226 |
+
font-size: 15px;
|
227 |
+
font-weight: bold;
|
228 |
+
line-height: 1;
|
229 |
+
background: #fff;
|
230 |
+
cursor: pointer;
|
231 |
+
position: relative;
|
232 |
+
text-align: center;
|
233 |
+
text-transform: uppercase;
|
234 |
+
color: #2CC185; }
|
235 |
+
|
236 |
+
.wf-tab-name:hover {
|
237 |
+
background: #2CC185;
|
238 |
+
color: white; }
|
239 |
+
|
240 |
+
.wf_tabs [id^="tab"]:checked + label {
|
241 |
+
background: #2CC185;
|
242 |
+
color: white; }
|
243 |
+
|
244 |
+
.wf_tabs .wf-tab-content {
|
245 |
+
z-index: 2;
|
246 |
+
display: none;
|
247 |
+
width: 100%;
|
248 |
+
font-size: 0.9rem;
|
249 |
+
position: absolute;
|
250 |
+
left: 0;
|
251 |
+
background: #fff;
|
252 |
+
border: 2px solid #CCC; }
|
253 |
+
|
254 |
+
.wf_tabs [id^="tab"]:checked ~ [id^="wf-tab-content"] {
|
255 |
+
display: block; }
|
256 |
+
|
257 |
+
[id^="wf-tab-content"] {
|
258 |
+
margin-bottom: 40px; }
|
259 |
+
|
260 |
+
div#wf-tab-content2 table:first-child {
|
261 |
+
padding: 10px 0; }
|
262 |
+
|
263 |
+
div#wf-tab-content2 table:first-child td:nth-child(1) {
|
264 |
+
width: 260px; }
|
265 |
+
|
266 |
+
div#wf-tab-content2 table:first-child td:nth-child(2) {
|
267 |
+
width: 260px; }
|
268 |
+
|
269 |
+
table.feed-actions tr td:last-child {
|
270 |
+
text-align: right; }
|
271 |
+
|
272 |
+
/* Selectize */
|
273 |
+
select.selectize {
|
274 |
+
display: none; }
|
275 |
+
|
276 |
+
body.no-js select.selectize {
|
277 |
+
display: block !important; }
|
278 |
+
|
279 |
+
.wp-list-table .option_name .wf_feed_option_name_link {
|
280 |
+
font-weight: 700;
|
281 |
+
color: #30336b; }
|
282 |
+
|
283 |
+
.wp-list-table #option_name a {
|
284 |
+
color: #32373c; }
|
285 |
+
|
286 |
+
/* fallback combat */
|
287 |
+
.selectize-dropdown .active {
|
288 |
+
background-color: #edf9ff; }
|
289 |
+
|
290 |
+
.selectize-dropdown .create {
|
291 |
+
padding: 5px 8px; }
|
292 |
+
|
293 |
+
.wapk-selectize-item {
|
294 |
+
background: #0073aa !important;
|
295 |
+
color: #f1f1f1 !important;
|
296 |
+
font-weight: bold !important;
|
297 |
+
border-color: #0073aa !important;
|
298 |
+
padding-left: 5px;
|
299 |
+
padding-right: 5px; }
|
300 |
+
|
301 |
+
.selectize-input.full #googleTaxonomyId-selectized {
|
302 |
+
opacity: 0;
|
303 |
+
position: absolute;
|
304 |
+
left: -10000px; }
|
305 |
+
|
306 |
+
.selectize-dropdown [data-selectable].option {
|
307 |
+
cursor: default; }
|
308 |
+
|
309 |
+
.selectize-control.plugin-remove_button [data-value] .remove {
|
310 |
+
border-left: 1px solid #f1f1f1 !important; }
|
311 |
+
|
312 |
+
.selectize-dropdown .optgroup-header {
|
313 |
+
font-weight: 700;
|
314 |
+
background: #efefef;
|
315 |
+
color: #5a5a5a; }
|
316 |
+
|
317 |
+
.selectize-dropdown [data-selectable].option {
|
318 |
+
cursor: pointer; }
|
319 |
+
|
320 |
+
/* Feed active and inactive button CSS */
|
321 |
+
.wf_status_wrap label {
|
322 |
+
width: 55px;
|
323 |
+
height: 30px;
|
324 |
+
box-sizing: border-box;
|
325 |
+
float: left;
|
326 |
+
border-radius: 100px;
|
327 |
+
position: relative;
|
328 |
+
cursor: pointer;
|
329 |
+
transition: .3s ease;
|
330 |
+
background: #d3d3d3; }
|
331 |
+
|
332 |
+
input[class=woo_feed_status_input]:checked + label {
|
333 |
+
background: #4fbe79; }
|
334 |
+
|
335 |
+
input[class=woo_feed_status_input]:checked + label:before {
|
336 |
+
left: 29px; }
|
337 |
+
|
338 |
+
.wf_status_wrap label:before {
|
339 |
+
transition: .3s ease;
|
340 |
+
content: '';
|
341 |
+
width: 20px;
|
342 |
+
height: 20px;
|
343 |
+
position: absolute;
|
344 |
+
background: white;
|
345 |
+
left: 6px;
|
346 |
+
top: 5px;
|
347 |
+
box-sizing: border-box;
|
348 |
+
color: black;
|
349 |
+
border-radius: 100px;
|
350 |
+
box-shadow: 0px 1.5px 2px 0px #000; }
|
351 |
+
|
352 |
+
.view span.dashicons.dashicons-external {
|
353 |
+
color: #30336b; }
|
354 |
+
|
355 |
+
.view span.dashicons.dashicons-sos {
|
356 |
+
color: #22a6b3; }
|
357 |
+
|
358 |
+
.view span.dashicons.dashicons-download {
|
359 |
+
color: #ee5253; }
|
360 |
+
|
361 |
+
.view span.dashicons.dashicons-media-code {
|
362 |
+
color: #576574; }
|
363 |
+
|
364 |
+
/* list table style */
|
365 |
+
.widefat td.column-url, .widefat th.column-url,
|
366 |
+
.column-url {
|
367 |
+
color: #1e8f9a;
|
368 |
+
font-weight: bold; }
|
369 |
+
|
370 |
+
/** Feed Progress **/
|
371 |
+
.feed-progress-container {
|
372 |
+
width: 100%;
|
373 |
+
color: white;
|
374 |
+
text-align: center;
|
375 |
+
font-weight: 300; }
|
376 |
+
|
377 |
+
.feed-progress-bar {
|
378 |
+
width: 100%;
|
379 |
+
background: #eee;
|
380 |
+
padding: 3px;
|
381 |
+
border-radius: 50px;
|
382 |
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }
|
383 |
+
|
384 |
+
.feed-progress-bar-fill {
|
385 |
+
height: 20px;
|
386 |
+
display: block;
|
387 |
+
background: linear-gradient(to right top, #10ac84, #13b389, #15ba8f, #18c194, #1ac89a, #13cba1, #0acfa9, #00d2b0, #00d2ba, #00d2c3, #00d2cb, #00d2d3);
|
388 |
+
width: 0;
|
389 |
+
border-radius: 50px;
|
390 |
+
transition: width 0.8s ease; }
|
391 |
+
|
392 |
+
.feed-progress-status {
|
393 |
+
float: left;
|
394 |
+
font-weight: bold;
|
395 |
+
color: darkblue; }
|
396 |
+
|
397 |
+
.feed-progress-percentage {
|
398 |
+
text-align: right;
|
399 |
+
font-weight: bolder;
|
400 |
+
color: #1dd1a1;
|
401 |
+
font-family: 'Arial Black', sans-serif;
|
402 |
+
font-size: large; }
|
403 |
+
|
404 |
+
#wpbody-content.woofeed-body-content {
|
405 |
+
overflow: visible !important; }
|
406 |
+
|
407 |
+
.clippy {
|
408 |
+
position: relative;
|
409 |
+
width: 13px;
|
410 |
+
margin-top: -3px;
|
411 |
+
margin-left: 3px;
|
412 |
+
top: 3px; }
|
413 |
+
|
414 |
+
.column-url .clippy {
|
415 |
+
display: none; }
|
416 |
+
|
417 |
+
.column-url:hover .clippy {
|
418 |
+
display: inline-block; }
|
419 |
+
|
420 |
/**
|
421 |
* Primer Tooltip
|
422 |
+
*/
|
423 |
+
.tooltipped {
|
424 |
+
position: relative; }
|
425 |
+
.tooltipped:after {
|
426 |
+
position: absolute;
|
427 |
+
z-index: 1000000;
|
428 |
+
display: none;
|
429 |
+
padding: 5px 8px;
|
430 |
+
font: normal normal 11px/1.5 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
|
431 |
+
color: #fff;
|
432 |
+
text-align: center;
|
433 |
+
text-decoration: none;
|
434 |
+
text-shadow: none;
|
435 |
+
text-transform: none;
|
436 |
+
letter-spacing: normal;
|
437 |
+
word-wrap: break-word;
|
438 |
+
white-space: pre;
|
439 |
+
pointer-events: none;
|
440 |
+
content: attr(aria-label);
|
441 |
+
background: rgba(0, 0, 0, 0.8);
|
442 |
+
border-radius: 3px;
|
443 |
+
-webkit-font-smoothing: subpixel-antialiased; }
|
444 |
+
.tooltipped:before {
|
445 |
+
position: absolute;
|
446 |
+
z-index: 1000001;
|
447 |
+
display: none;
|
448 |
+
width: 0;
|
449 |
+
height: 0;
|
450 |
+
color: rgba(0, 0, 0, 0.8);
|
451 |
+
pointer-events: none;
|
452 |
+
content: "";
|
453 |
+
border: 5px solid transparent; }
|
454 |
+
.tooltipped:hover:before {
|
455 |
+
display: inline-block;
|
456 |
+
text-decoration: none; }
|
457 |
+
.tooltipped:hover:after {
|
458 |
+
display: inline-block;
|
459 |
+
text-decoration: none; }
|
460 |
+
.tooltipped:active:before {
|
461 |
+
display: inline-block;
|
462 |
+
text-decoration: none; }
|
463 |
+
.tooltipped:active:after {
|
464 |
+
display: inline-block;
|
465 |
+
text-decoration: none; }
|
466 |
+
.tooltipped:focus:before {
|
467 |
+
display: inline-block;
|
468 |
+
text-decoration: none; }
|
469 |
+
.tooltipped:focus:after {
|
470 |
+
display: inline-block;
|
471 |
+
text-decoration: none; }
|
472 |
+
.tooltipped-multiline:hover:after {
|
473 |
+
display: table-cell; }
|
474 |
+
.tooltipped-multiline:active:after {
|
475 |
+
display: table-cell; }
|
476 |
+
.tooltipped-multiline:focus:after {
|
477 |
+
display: table-cell; }
|
478 |
+
.tooltipped-multiline:after {
|
479 |
+
width: -webkit-max-content;
|
480 |
+
width: -moz-max-content;
|
481 |
+
width: max-content;
|
482 |
+
max-width: 250px;
|
483 |
+
word-break: break-word;
|
484 |
+
word-wrap: normal;
|
485 |
+
white-space: pre-line;
|
486 |
+
border-collapse: separate; }
|
487 |
+
.tooltipped-s:after {
|
488 |
+
top: 100%;
|
489 |
+
right: 50%;
|
490 |
+
margin-top: 5px;
|
491 |
+
-webkit-transform: translateX(50%);
|
492 |
+
transform: translateX(50%); }
|
493 |
+
.tooltipped-s:before {
|
494 |
+
top: auto;
|
495 |
+
right: 50%;
|
496 |
+
bottom: -5px;
|
497 |
+
margin-right: -5px;
|
498 |
+
border-bottom-color: rgba(0, 0, 0, 0.8); }
|
499 |
+
.tooltipped-se:after {
|
500 |
+
top: 100%;
|
501 |
+
margin-top: 5px;
|
502 |
+
right: auto;
|
503 |
+
left: 50%;
|
504 |
+
margin-left: -15px; }
|
505 |
+
.tooltipped-se:before {
|
506 |
+
top: auto;
|
507 |
+
right: 50%;
|
508 |
+
bottom: -5px;
|
509 |
+
margin-right: -5px;
|
510 |
+
border-bottom-color: rgba(0, 0, 0, 0.8); }
|
511 |
+
.tooltipped-sw:after {
|
512 |
+
top: 100%;
|
513 |
+
right: 50%;
|
514 |
+
margin-top: 5px;
|
515 |
+
margin-right: -15px; }
|
516 |
+
.tooltipped-sw:before {
|
517 |
+
top: auto;
|
518 |
+
right: 50%;
|
519 |
+
bottom: -5px;
|
520 |
+
margin-right: -5px;
|
521 |
+
border-bottom-color: rgba(0, 0, 0, 0.8); }
|
522 |
+
.tooltipped-n:after {
|
523 |
+
right: 50%;
|
524 |
+
bottom: 100%;
|
525 |
+
margin-bottom: 5px;
|
526 |
+
-webkit-transform: translateX(50%);
|
527 |
+
transform: translateX(50%); }
|
528 |
+
.tooltipped-n:before {
|
529 |
+
top: -5px;
|
530 |
+
right: 50%;
|
531 |
+
bottom: auto;
|
532 |
+
margin-right: -5px;
|
533 |
+
border-top-color: rgba(0, 0, 0, 0.8); }
|
534 |
+
.tooltipped-ne:after {
|
535 |
+
bottom: 100%;
|
536 |
+
margin-bottom: 5px;
|
537 |
+
right: auto;
|
538 |
+
left: 50%;
|
539 |
+
margin-left: -15px; }
|
540 |
+
.tooltipped-ne:before {
|
541 |
+
top: -5px;
|
542 |
+
right: 50%;
|
543 |
+
bottom: auto;
|
544 |
+
margin-right: -5px;
|
545 |
+
border-top-color: rgba(0, 0, 0, 0.8); }
|
546 |
+
.tooltipped-nw:after {
|
547 |
+
right: 50%;
|
548 |
+
bottom: 100%;
|
549 |
+
margin-bottom: 5px;
|
550 |
+
margin-right: -15px; }
|
551 |
+
.tooltipped-nw:before {
|
552 |
+
top: -5px;
|
553 |
+
right: 50%;
|
554 |
+
bottom: auto;
|
555 |
+
margin-right: -5px;
|
556 |
+
border-top-color: rgba(0, 0, 0, 0.8); }
|
557 |
+
.tooltipped-w:after {
|
558 |
+
right: 100%;
|
559 |
+
bottom: 50%;
|
560 |
+
margin-right: 5px;
|
561 |
+
-webkit-transform: translateY(50%);
|
562 |
+
transform: translateY(50%); }
|
563 |
+
.tooltipped-w:before {
|
564 |
+
top: 50%;
|
565 |
+
bottom: 50%;
|
566 |
+
left: -5px;
|
567 |
+
margin-top: -5px;
|
568 |
+
border-left-color: rgba(0, 0, 0, 0.8); }
|
569 |
+
.tooltipped-e:after {
|
570 |
+
bottom: 50%;
|
571 |
+
left: 100%;
|
572 |
+
margin-left: 5px;
|
573 |
+
-webkit-transform: translateY(50%);
|
574 |
+
transform: translateY(50%); }
|
575 |
+
.tooltipped-e:before {
|
576 |
+
top: 50%;
|
577 |
+
right: -5px;
|
578 |
+
bottom: 50%;
|
579 |
+
margin-top: -5px;
|
580 |
+
border-right-color: rgba(0, 0, 0, 0.8); }
|
581 |
+
.tooltipped-multiline.tooltipped-s:after {
|
582 |
+
right: auto;
|
583 |
+
left: 50%;
|
584 |
+
-webkit-transform: translateX(-50%);
|
585 |
+
transform: translateX(-50%); }
|
586 |
+
.tooltipped-multiline.tooltipped-n:after {
|
587 |
+
right: auto;
|
588 |
+
left: 50%;
|
589 |
+
-webkit-transform: translateX(-50%);
|
590 |
+
transform: translateX(-50%); }
|
591 |
+
.tooltipped-multiline.tooltipped-w:after {
|
592 |
+
right: 100%; }
|
593 |
+
.tooltipped-multiline.tooltipped-e:after {
|
594 |
+
right: 100%; }
|
595 |
+
.tooltipped-sticky:before {
|
596 |
+
display: inline-block; }
|
597 |
+
.tooltipped-sticky:after {
|
598 |
+
display: inline-block; }
|
599 |
+
.tooltipped-sticky.tooltipped-multiline:after {
|
600 |
+
display: table-cell; }
|
601 |
+
|
602 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped:after {
|
603 |
+
color: #000;
|
604 |
+
background: rgba(255, 255, 255, 0.8); }
|
605 |
+
|
606 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before {
|
607 |
+
border-bottom-color: rgba(255, 255, 255, 0.8); }
|
608 |
+
|
609 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before {
|
610 |
+
border-bottom-color: rgba(255, 255, 255, 0.8); }
|
611 |
+
|
612 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before {
|
613 |
+
border-bottom-color: rgba(255, 255, 255, 0.8); }
|
614 |
+
|
615 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before {
|
616 |
+
border-top-color: rgba(255, 255, 255, 0.8); }
|
617 |
+
|
618 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before {
|
619 |
+
border-top-color: rgba(255, 255, 255, 0.8); }
|
620 |
+
|
621 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before {
|
622 |
+
border-top-color: rgba(255, 255, 255, 0.8); }
|
623 |
+
|
624 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before {
|
625 |
+
border-right-color: rgba(255, 255, 255, 0.8); }
|
626 |
+
|
627 |
+
.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before {
|
628 |
+
border-left-color: rgba(255, 255, 255, 0.8); }
|
629 |
+
|
630 |
+
@media screen and (min-width: 0\0) {
|
631 |
+
.tooltipped-multiline:after {
|
632 |
+
width: 250px; } }
|
633 |
+
|
634 |
+
ul.tracker_collection_list {
|
635 |
+
list-style: initial;
|
636 |
+
padding: initial;
|
637 |
+
margin: -10px 0 0 30px;
|
638 |
+
font-size: 11px !important; }
|
639 |
+
ul.tracker_collection_list li {
|
640 |
+
margin: 0; }
|
641 |
+
|
642 |
+
/** Info Message Table **/
|
643 |
+
table.wf-info-table, table.wf-rate-table {
|
644 |
+
vertical-align: middle;
|
645 |
+
text-align: center;
|
646 |
+
max-width: 100%;
|
647 |
+
font-weight: 500; }
|
648 |
+
table.wf-info-table th, table.wf-rate-table th {
|
649 |
+
text-align: center; }
|
650 |
+
table.wf-info-table th .woo-feed-top-header, table.wf-rate-table th .woo-feed-top-header {
|
651 |
+
display: -ms-flexbox;
|
652 |
+
display: flex;
|
653 |
+
-ms-flex-pack: justify;
|
654 |
+
justify-content: space-between;
|
655 |
+
-ms-flex-align: center;
|
656 |
+
align-items: center; }
|
657 |
+
table.wf-info-table th .woo-feed-top-header .get-woo-feed-pro, table.wf-rate-table th .woo-feed-top-header .get-woo-feed-pro {
|
658 |
+
margin-left: 20px; }
|
659 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons {
|
660 |
+
float: right;
|
661 |
+
display: -ms-flexbox;
|
662 |
+
display: flex;
|
663 |
+
border-radius: 7px;
|
664 |
+
-ms-flex-pack: center;
|
665 |
+
justify-content: center;
|
666 |
+
-ms-flex-align: center;
|
667 |
+
align-items: center; }
|
668 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a {
|
669 |
+
padding: 8px 20px;
|
670 |
+
background: #576574;
|
671 |
+
color: #fff;
|
672 |
+
box-sizing: border-box;
|
673 |
+
display: inline-block;
|
674 |
+
transition: .3s ease; }
|
675 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link {
|
676 |
+
background: #576574;
|
677 |
+
border-top-left-radius: 5px;
|
678 |
+
border-bottom-left-radius: 5px; }
|
679 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link {
|
680 |
+
background: #ee5253; }
|
681 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link {
|
682 |
+
background: #22a6b3;
|
683 |
+
border-top-right-radius: 5px;
|
684 |
+
border-bottom-right-radius: 5px; }
|
685 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons {
|
686 |
+
font-size: 18px;
|
687 |
+
line-height: 1.2; }
|
688 |
+
table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a:hover, table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a:hover {
|
689 |
+
background: #30336b;
|
690 |
+
box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.12); }
|
691 |
+
table.wf-info-table strong, table.wf-rate-table strong {
|
692 |
+
font-weight: bold; }
|
693 |
+
|
694 |
+
table.wf-info-table th:first-child img {
|
695 |
+
margin: 0 0 -5px 5px; }
|
696 |
+
|
697 |
+
table.wf-rate-table a {
|
698 |
+
color: #0073aa; }
|
699 |
+
|
700 |
+
table.wf-rate-table a.review-star:after {
|
701 |
+
content: "\f155\f155\f155\f155\f155" !important;
|
702 |
+
font-family: dashicons;
|
703 |
+
font-size: 10px;
|
704 |
+
font-weight: 100;
|
705 |
+
text-rendering: auto;
|
706 |
+
-webkit-font-smoothing: antialiased;
|
707 |
+
-moz-osx-font-smoothing: grayscale;
|
708 |
+
color: #0073aa;
|
709 |
+
text-decoration: underline; }
|
710 |
+
|
711 |
+
/** Admin Menu Icon **/
|
712 |
+
#adminmenu #toplevel_page_webappick-manage-feeds div.wp-menu-image::before {
|
713 |
+
content: "";
|
714 |
+
background: url(../images/woo-feed-icon.svg) no-repeat center center;
|
715 |
+
background-size: 20px 20px;
|
716 |
+
opacity: 0.6;
|
717 |
+
filter: alpha(opacity=60); }
|
718 |
+
|
719 |
+
#adminmenu #toplevel_page_webappick-manage-feeds:hover div.wp-menu-image::before {
|
720 |
+
opacity: 1;
|
721 |
+
filter: alpha(opacity=100); }
|
722 |
+
|
723 |
+
#adminmenu #toplevel_page_webappick-manage-feeds.wp-has-current-submenu div.wp-menu-image::before {
|
724 |
+
opacity: 1;
|
725 |
+
filter: alpha(opacity=100); }
|
726 |
+
|
727 |
+
/** Admin Page Wrapper **/
|
728 |
+
.wapk-admin, .wapk-admin * {
|
729 |
+
box-sizing: border-box; }
|
730 |
+
|
731 |
+
.wapk-admin {
|
732 |
+
position: relative;
|
733 |
+
display: block;
|
734 |
+
-webkit-hyphens: manual;
|
735 |
+
-ms-hyphens: manual;
|
736 |
+
-moz-hyphens: manual;
|
737 |
+
hyphens: manual;
|
738 |
+
color: #1B2730;
|
739 |
+
/* reset .warp margin to use full width except menu area */
|
740 |
+
margin: 0 0 0 -10px; }
|
741 |
+
|
742 |
+
@media screen and (min-width: 783px) {
|
743 |
+
.wapk-admin {
|
744 |
+
margin: 0 0 0 -20px; } }
|
745 |
+
|
746 |
+
.text-center {
|
747 |
+
text-align: center; }
|
748 |
+
|
749 |
+
.wapk-admin h1, .wapk-admin h2, .wapk-admin h3,
|
750 |
+
.wapk-admin h4, .wapk-admin h5, .wapk-admin h6,
|
751 |
+
.wapk-admin p {
|
752 |
+
color: #1B2730; }
|
753 |
+
|
754 |
+
.wapk-admin sup {
|
755 |
+
vertical-align: baseline;
|
756 |
+
position: relative;
|
757 |
+
top: -6px; }
|
758 |
+
|
759 |
+
.wapk-admin sub {
|
760 |
+
vertical-align: baseline;
|
761 |
+
position: relative;
|
762 |
+
top: 4px; }
|
763 |
+
|
764 |
+
/* WP.Core.UI Compat */
|
765 |
+
.wapk-admin .wapk-section {
|
766 |
+
margin: 10px 20px 0 22px;
|
767 |
+
position: relative;
|
768 |
+
display: block; }
|
769 |
+
.wapk-admin .wapk-section [class$=icon32] + h2 {
|
770 |
+
font-size: 23px;
|
771 |
+
font-weight: 400;
|
772 |
+
margin: 0;
|
773 |
+
padding: 9px 0 4px 0;
|
774 |
+
line-height: 1.3; }
|
775 |
+
.wapk-admin .wapk-section h1 {
|
776 |
+
font-size: 23px;
|
777 |
+
font-weight: 400;
|
778 |
+
margin: 0;
|
779 |
+
padding: 9px 0 4px 0;
|
780 |
+
line-height: 1.3; }
|
781 |
+
.wapk-admin .wapk-section > h2:first-child {
|
782 |
+
font-size: 23px;
|
783 |
+
font-weight: 400;
|
784 |
+
margin: 0;
|
785 |
+
padding: 9px 0 4px 0;
|
786 |
+
line-height: 1.3; }
|
787 |
+
|
788 |
+
.wapk-admin > .notice {
|
789 |
+
margin: 10px 20px 0 22px;
|
790 |
+
position: relative;
|
791 |
+
display: block; }
|
792 |
+
|
793 |
+
.wapk-admin span.help {
|
794 |
+
display: block;
|
795 |
+
float: left;
|
796 |
+
width: 100%;
|
797 |
+
font-size: 0.9em;
|
798 |
+
color: #636363;
|
799 |
+
margin-top: 5px;
|
800 |
+
font-weight: 500; }
|
801 |
+
.wapk-admin span.help .dashicons {
|
802 |
+
width: 11px;
|
803 |
+
height: 12px;
|
804 |
+
font-size: inherit;
|
805 |
+
vertical-align: middle; }
|
806 |
+
|
807 |
+
.clear:after {
|
808 |
+
content: "";
|
809 |
+
display: table;
|
810 |
+
clear: both; }
|
811 |
+
|
812 |
+
/*.wapk-admin .help a { color: inherit; text-decoration: underline; }*/
|
813 |
+
/** Extend WP Core UI PostBox For Docs **/
|
814 |
+
.wapk-feed-docs .postbox {
|
815 |
+
width: 355px;
|
816 |
+
margin-right: 20px;
|
817 |
+
display: inline-block;
|
818 |
+
vertical-align: top; }
|
819 |
+
.wapk-feed-docs .postbox .hndle {
|
820 |
+
font-size: 14px;
|
821 |
+
padding: 8px 12px;
|
822 |
+
margin: 0;
|
823 |
+
line-height: 1.4;
|
824 |
+
cursor: pointer; }
|
825 |
+
.wapk-feed-docs .postbox .dashicons {
|
826 |
+
color: #ccc; }
|
827 |
+
.wapk-feed-docs .postbox a {
|
828 |
+
text-decoration: none; }
|
829 |
+
.wapk-feed-docs .postbox .inside {
|
830 |
+
margin-bottom: 0; }
|
831 |
+
.wapk-feed-docs .postbox ul {
|
832 |
+
margin-bottom: 0; }
|
833 |
+
.wapk-feed-docs .postbox .toggle-indicator:before {
|
834 |
+
content: "\F142";
|
835 |
+
display: inline-block;
|
836 |
+
font: 400 20px/1 dashicons;
|
837 |
+
speak: none;
|
838 |
+
-webkit-font-smoothing: antialiased;
|
839 |
+
-moz-osx-font-smoothing: grayscale;
|
840 |
+
text-decoration: none !important; }
|
841 |
+
.wapk-feed-docs .postbox li {
|
842 |
+
width: 100%;
|
843 |
+
display: block;
|
844 |
+
float: left; }
|
845 |
+
.wapk-feed-docs .postbox li span {
|
846 |
+
display: inline-block;
|
847 |
+
float: left;
|
848 |
+
margin-right: 4px; }
|
849 |
+
.wapk-feed-docs .postbox li a {
|
850 |
+
display: inline-block;
|
851 |
+
float: left;
|
852 |
+
width: calc(100% - 24px); }
|
853 |
+
|
854 |
+
.wapk-feed-docs .postbox.closed .toggle-indicator:before {
|
855 |
+
content: "\F140"; }
|
856 |
+
|
857 |
+
.wapk-section #post-body.columns-2 #side-sortables {
|
858 |
+
min-height: 196px; }
|
859 |
+
|
860 |
+
#poststuff #feed_merchant_info .inside {
|
861 |
+
margin: 0;
|
862 |
+
padding: 0; }
|
863 |
+
|
864 |
+
#feed_merchant_info ul.data {
|
865 |
+
margin-left: 24px;
|
866 |
+
margin-top: 5px; }
|
867 |
+
#feed_merchant_info ul.data li {
|
868 |
+
margin-bottom: 5px; }
|
869 |
+
|
870 |
+
.merchant-info-section {
|
871 |
+
padding: 6px 10px 8px; }
|
872 |
+
|
873 |
+
.generateFeed .wf-tab-content table:first-child {
|
874 |
+
border: none;
|
875 |
+
box-shadow: none; }
|
876 |
+
|
877 |
+
.generateFeed table th {
|
878 |
+
font-weight: bold; }
|
879 |
+
|
880 |
+
@media only screen and (max-width: 850px) {
|
881 |
+
.wapk-feed-docs .postbox {
|
882 |
+
display: block;
|
883 |
+
width: auto;
|
884 |
+
float: none;
|
885 |
+
margin-right: auto; } }
|
886 |
+
|
887 |
+
/** Admin Feed Help Docs **/
|
888 |
+
.wp-submenu li span.woo-feed-docs {
|
889 |
+
font-weight: bold;
|
890 |
+
color: #f18500; }
|
891 |
+
|
892 |
+
.wp-submenu li:hover span.woo-feed-docs {
|
893 |
+
color: #ce7304; }
|
894 |
+
|
895 |
+
.wp-submenu li.current span.woo-feed-docs {
|
896 |
+
color: #ce7304; }
|
897 |
+
|
898 |
+
.wapk-admin .wapk-feed-docs .postbox .hndle {
|
899 |
+
cursor: default; }
|
900 |
+
|
901 |
+
/** Admin Call-To-Action **/
|
902 |
+
.wapk-cta {
|
903 |
+
position: relative;
|
904 |
+
display: -ms-flexbox;
|
905 |
+
display: flex;
|
906 |
+
width: 100%;
|
907 |
+
padding: 100px 15px;
|
908 |
+
background: linear-gradient(45deg, #6CD5FF 33%, #c2efef 100%);
|
909 |
+
-ms-flex-pack: center;
|
910 |
+
justify-content: center;
|
911 |
+
-ms-flex-align: center;
|
912 |
+
align-items: center; }
|
913 |
+
.wapk-cta-icon .dashicons {
|
914 |
+
font-size: 100px;
|
915 |
+
width: 100px;
|
916 |
+
height: auto;
|
917 |
+
margin: 0 10px -8px 0;
|
918 |
+
color: #02658c; }
|
919 |
+
.wapk-cta-content {
|
920 |
+
width: 50%; }
|
921 |
+
.wapk-cta-content h2 {
|
922 |
+
font-size: 2em;
|
923 |
+
margin: 0.5em 0; }
|
924 |
+
.wapk-cta-action a.wapk-button {
|
925 |
+
font-size: 24px;
|
926 |
+
height: auto !important;
|
927 |
+
padding: 10px 20px; }
|
928 |
+
|
929 |
+
@media (max-width: 600px) {
|
930 |
+
.wapk-cta {
|
931 |
+
display: block;
|
932 |
+
text-align: center;
|
933 |
+
padding: 4em 0; }
|
934 |
+
.wapk-cta-content {
|
935 |
+
width: 100%;
|
936 |
+
margin: 2em 0; } }
|
937 |
+
|
938 |
+
/** Override .wp-core-ui .wapk-button styles with prefix .wapk-admin **/
|
939 |
+
/* Button Skin */
|
940 |
+
.wapk-button {
|
941 |
+
color: #00D4D4;
|
942 |
+
border-color: #00D4D4;
|
943 |
+
display: inline-block;
|
944 |
+
text-decoration: none;
|
945 |
+
font-size: 13px;
|
946 |
+
line-height: 2.15384615;
|
947 |
+
min-height: 30px;
|
948 |
+
margin: 0;
|
949 |
+
padding: 0 10px;
|
950 |
+
cursor: pointer;
|
951 |
+
border-width: 1px;
|
952 |
+
border-style: solid;
|
953 |
+
-webkit-appearance: none;
|
954 |
+
border-radius: 3px;
|
955 |
+
white-space: nowrap;
|
956 |
+
box-sizing: border-box; }
|
957 |
+
.wapk-button > svg {
|
958 |
+
width: 15px;
|
959 |
+
margin-left: 5px;
|
960 |
+
fill: #00D4D4; }
|
961 |
+
.wapk-button > .dashicons {
|
962 |
+
color: #00D4D4; }
|
963 |
+
.wapk-button:hover {
|
964 |
+
border-color: #00bbbb;
|
965 |
+
color: #00bbbb; }
|
966 |
+
.wapk-button:hover > svg {
|
967 |
+
fill: #00bbbb; }
|
968 |
+
.wapk-button:hover > .dashicons {
|
969 |
+
color: #00bbbb; }
|
970 |
+
.wapk-button:focus {
|
971 |
+
border-color: #00D4D4;
|
972 |
+
color: #00bbbb;
|
973 |
+
box-shadow: 0 0 0 1px #00D4D4; }
|
974 |
+
.wapk-button:focus > svg {
|
975 |
+
fill: #00bbbb; }
|
976 |
+
.wapk-button:focus > .dashicons {
|
977 |
+
color: #00bbbb; }
|
978 |
+
.wapk-button:active {
|
979 |
+
background: #00bbbb;
|
980 |
+
border-color: #00bbbb; }
|
981 |
+
.wapk-button-secondary {
|
982 |
+
color: #00D4D4;
|
983 |
+
border-color: #00D4D4;
|
984 |
+
display: inline-block;
|
985 |
+
text-decoration: none;
|
986 |
+
font-size: 13px;
|
987 |
+
line-height: 2.15384615;
|
988 |
+
min-height: 30px;
|
989 |
+
margin: 0;
|
990 |
+
padding: 0 10px;
|
991 |
+
cursor: pointer;
|
992 |
+
border-width: 1px;
|
993 |
+
border-style: solid;
|
994 |
+
-webkit-appearance: none;
|
995 |
+
border-radius: 3px;
|
996 |
+
white-space: nowrap;
|
997 |
+
box-sizing: border-box; }
|
998 |
+
.wapk-button-secondary > svg {
|
999 |
+
width: 15px;
|
1000 |
+
margin-left: 5px;
|
1001 |
+
fill: #00D4D4; }
|
1002 |
+
.wapk-button-secondary > .dashicons {
|
1003 |
+
color: #00D4D4; }
|
1004 |
+
.wapk-button-secondary:hover {
|
1005 |
+
border-color: #00bbbb;
|
1006 |
+
color: #00bbbb; }
|
1007 |
+
.wapk-button-secondary:hover > svg {
|
1008 |
+
fill: #00bbbb; }
|
1009 |
+
.wapk-button-secondary:hover > .dashicons {
|
1010 |
+
color: #00bbbb; }
|
1011 |
+
.wapk-button-secondary:focus {
|
1012 |
+
border-color: #00D4D4;
|
1013 |
+
color: #00bbbb;
|
1014 |
+
box-shadow: 0 0 0 1px #00D4D4; }
|
1015 |
+
.wapk-button-secondary:focus > svg {
|
1016 |
+
fill: #00bbbb; }
|
1017 |
+
.wapk-button-secondary:focus > .dashicons {
|
1018 |
+
color: #00bbbb; }
|
1019 |
+
.wapk-button-primary {
|
1020 |
+
display: inline-block;
|
1021 |
+
text-decoration: none;
|
1022 |
+
font-size: 13px;
|
1023 |
+
line-height: 2.15384615;
|
1024 |
+
min-height: 30px;
|
1025 |
+
margin: 0;
|
1026 |
+
padding: 0 10px;
|
1027 |
+
cursor: pointer;
|
1028 |
+
border-width: 1px;
|
1029 |
+
border-style: solid;
|
1030 |
+
-webkit-appearance: none;
|
1031 |
+
border-radius: 3px;
|
1032 |
+
white-space: nowrap;
|
1033 |
+
box-sizing: border-box;
|
1034 |
+
background: #00D4D4;
|
1035 |
+
border-color: #00D4D4;
|
1036 |
+
color: #fff;
|
1037 |
+
box-shadow: 0 1px 0 #00bbbb;
|
1038 |
+
text-shadow: 0 -1px 1px #00bbbb, 1px 0 1px #00bbbb, 0 1px 1px #00bbbb, -1px 0 1px #00bbbb; }
|
1039 |
+
.wapk-button-primary > svg {
|
1040 |
+
fill: #fff; }
|
1041 |
+
.wapk-button-primary:hover {
|
1042 |
+
background: #00e3e3;
|
1043 |
+
border-color: #00c5c5;
|
1044 |
+
color: #fff; }
|
1045 |
+
.wapk-button-primary:hover > svg {
|
1046 |
+
fill: #fff; }
|
1047 |
+
.wapk-button-primary:focus {
|
1048 |
+
background: #00e3e3;
|
1049 |
+
border-color: #00c5c5;
|
1050 |
+
color: #fff;
|
1051 |
+
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00D4D4; }
|
1052 |
+
.wapk-button-primary:focus > svg {
|
1053 |
+
fill: #fff; }
|
1054 |
+
.wapk-button-primary:active {
|
1055 |
+
background: #00bbbb;
|
1056 |
+
border-color: #00bbbb;
|
1057 |
+
color: #fff; }
|
1058 |
+
.wapk-button-primary:active > svg {
|
1059 |
+
fill: #fff; }
|
1060 |
+
.wapk-button-primary:disabled {
|
1061 |
+
color: #c7d1d1 !important;
|
1062 |
+
background: #22ffff !important;
|
1063 |
+
border-color: #22ffff !important;
|
1064 |
+
text-shadow: none !important; }
|
1065 |
+
.wapk-button-primary:disabled > svg {
|
1066 |
+
fill: #c7d1d1 !important; }
|
1067 |
+
.wapk-button.hover {
|
1068 |
+
border-color: #00bbbb;
|
1069 |
+
color: #00bbbb; }
|
1070 |
+
.wapk-button.hover > svg {
|
1071 |
+
fill: #00bbbb; }
|
1072 |
+
.wapk-button.hover > .dashicons {
|
1073 |
+
color: #00bbbb; }
|
1074 |
+
.wapk-button.focus {
|
1075 |
+
border-color: #00D4D4;
|
1076 |
+
color: #00bbbb;
|
1077 |
+
box-shadow: 0 0 0 1px #00D4D4; }
|
1078 |
+
.wapk-button.focus > svg {
|
1079 |
+
fill: #00bbbb; }
|
1080 |
+
.wapk-button.focus > .dashicons {
|
1081 |
+
color: #00bbbb; }
|
1082 |
+
.wapk-button.active {
|
1083 |
+
border-color: #00bbbb;
|
1084 |
+
color: #00bbbb;
|
1085 |
+
box-shadow: inset 0 2px 5px -3px #00bbbb; }
|
1086 |
+
.wapk-button.active:focus {
|
1087 |
+
border-color: #00bbbb;
|
1088 |
+
color: #00bbbb;
|
1089 |
+
box-shadow: inset 0 2px 5px -3px #00bbbb; }
|
1090 |
+
.wapk-button.active:focus > svg {
|
1091 |
+
fill: #00bbbb; }
|
1092 |
+
.wapk-button.active:focus > .dashicons {
|
1093 |
+
color: #00bbbb; }
|
1094 |
+
.wapk-button.active:hover {
|
1095 |
+
border-color: #00bbbb;
|
1096 |
+
color: #00bbbb;
|
1097 |
+
box-shadow: inset 0 2px 5px -3px #00bbbb; }
|
1098 |
+
.wapk-button.active:hover > svg {
|
1099 |
+
fill: #00bbbb; }
|
1100 |
+
.wapk-button.active:hover > .dashicons {
|
1101 |
+
color: #00bbbb; }
|
1102 |
+
.wapk-button.active > svg {
|
1103 |
+
fill: #00bbbb; }
|
1104 |
+
.wapk-button.active > .dashicons {
|
1105 |
+
color: #00bbbb; }
|
1106 |
+
.wapk-button-primary.active {
|
1107 |
+
background: #00D4D4;
|
1108 |
+
color: #fff;
|
1109 |
+
border-color: #008888;
|
1110 |
+
box-shadow: inset 0 2px 5px -3px black; }
|
1111 |
+
.wapk-button-primary.active:focus {
|
1112 |
+
background: #00D4D4;
|
1113 |
+
color: #fff;
|
1114 |
+
border-color: #008888;
|
1115 |
+
box-shadow: inset 0 2px 5px -3px black; }
|
1116 |
+
.wapk-button-primary.active:focus > svg {
|
1117 |
+
fill: #fff; }
|
1118 |
+
.wapk-button-primary.active:hover {
|
1119 |
+
background: #00D4D4;
|
1120 |
+
color: #fff;
|
1121 |
+
border-color: #008888;
|
1122 |
+
box-shadow: inset 0 2px 5px -3px black; }
|
1123 |
+
.wapk-button-primary.active:hover > svg {
|
1124 |
+
fill: #fff; }
|
1125 |
+
.wapk-button-primary.active > svg {
|
1126 |
+
fill: #fff; }
|
1127 |
+
.wapk-button-primary[disabled] {
|
1128 |
+
color: #c7d1d1 !important;
|
1129 |
+
background: #22ffff !important;
|
1130 |
+
border-color: #22ffff !important;
|
1131 |
+
text-shadow: none !important; }
|
1132 |
+
.wapk-button-primary[disabled] > svg {
|
1133 |
+
fill: #c7d1d1 !important; }
|
1134 |
+
.wapk-button-primary.wapk-button-primary-disabled {
|
1135 |
+
color: #c7d1d1 !important;
|
1136 |
+
background: #22ffff !important;
|
1137 |
+
border-color: #22ffff !important;
|
1138 |
+
text-shadow: none !important; }
|
1139 |
+
.wapk-button-primary.wapk-button-primary-disabled > svg {
|
1140 |
+
fill: #c7d1d1 !important; }
|
1141 |
+
.wapk-button-primary.disabled {
|
1142 |
+
color: #c7d1d1 !important;
|
1143 |
+
background: #22ffff !important;
|
1144 |
+
border-color: #22ffff !important;
|
1145 |
+
text-shadow: none !important; }
|
1146 |
+
.wapk-button-primary.disabled > svg {
|
1147 |
+
fill: #c7d1d1 !important; }
|
1148 |
+
.wapk-button-primary.wapk-button-hero {
|
1149 |
+
box-shadow: 0 2px 0 #00bbbb; }
|
1150 |
+
.wapk-button-primary.wapk-button-hero:focus {
|
1151 |
+
box-shadow: 0 2px 0 #00bbbb, 0 1px 0 #00c5c5, 0 0 2px 1px #00eeee; }
|
1152 |
+
.wapk-button-primary.wapk-button-hero:active {
|
1153 |
+
box-shadow: inset 0 3px 0 #00a1a1; }
|
1154 |
+
.wapk-button-primary.wapk-button-hero.active {
|
1155 |
+
box-shadow: inset 0 3px 0 #00a1a1; }
|
1156 |
+
.wapk-button-primary.wapk-button-hero.active:hover, .wapk-button-primary.wapk-button-hero.active:focus {
|
1157 |
+
box-shadow: inset 0 3px 0 #00a1a1; }
|
1158 |
+
.wapk-button-group > .wapk-button.active {
|
1159 |
+
border-color: #00D4D4; }
|
1160 |
+
|
1161 |
+
/* Button Sizes */
|
1162 |
+
.wapk-button.wapk-button-xl {
|
1163 |
+
height: 30px;
|
1164 |
+
line-height: 28px;
|
1165 |
+
padding: 0 12px 2px; }
|
1166 |
+
|
1167 |
+
.wapk-button-group.wapk-button-xl .wapk-button {
|
1168 |
+
height: 30px;
|
1169 |
+
line-height: 28px;
|
1170 |
+
padding: 0 12px 2px; }
|
1171 |
+
|
1172 |
+
.wapk-button.wapk-button-hero {
|
1173 |
+
font-size: 18px;
|
1174 |
+
height: 50px;
|
1175 |
+
line-height: 48px;
|
1176 |
+
padding: 0 36px;
|
1177 |
+
min-height: 46px; }
|
1178 |
+
|
1179 |
+
.wapk-button-group.wapk-button-hero .wapk-button {
|
1180 |
+
font-size: 18px;
|
1181 |
+
height: 50px;
|
1182 |
+
line-height: 48px;
|
1183 |
+
padding: 0 36px;
|
1184 |
+
min-height: 46px; }
|
1185 |
+
|
1186 |
+
@media screen and (min-width: 782px) {
|
1187 |
+
th#status,
|
1188 |
+
th#provider {
|
1189 |
+
width: 80px; }
|
1190 |
+
th#type {
|
1191 |
+
width: 50px; }
|
1192 |
+
th#option_name {
|
1193 |
+
width: 100px; }
|
1194 |
+
td.option_name.column-option_name > span:first-child {
|
1195 |
+
display: none; }
|
1196 |
+
th#last_updated {
|
1197 |
+
width: 90px; }
|
1198 |
+
th#view {
|
1199 |
+
width: 111px; } }
|
1200 |
+
|
1201 |
+
@media screen and (min-width: 960px) {
|
1202 |
+
th#status, th#provider {
|
1203 |
+
width: 100px; }
|
1204 |
+
th#type {
|
1205 |
+
width: 80px; }
|
1206 |
+
th#option_name {
|
1207 |
+
width: 150px; }
|
1208 |
+
th#last_updated {
|
1209 |
+
width: 140px; } }
|
1210 |
+
|
1211 |
+
@media screen and (max-width: 782px) {
|
1212 |
+
table.wf-info-table {
|
1213 |
+
margin-top: 10px; }
|
1214 |
+
table.wf-info-table th:first-child img {
|
1215 |
+
margin: 0 auto;
|
1216 |
+
display: block; }
|
1217 |
+
.wapk-button.wapk-button-xl {
|
1218 |
+
padding: 6px 14px;
|
1219 |
+
line-height: normal;
|
1220 |
+
font-size: 14px;
|
1221 |
+
vertical-align: middle;
|
1222 |
+
height: auto;
|
1223 |
+
margin-bottom: 4px; } }
|
1224 |
+
|
1225 |
+
.wapk-feed-docs .wapk-feed-cta {
|
1226 |
+
margin: 0; }
|
1227 |
+
|
1228 |
+
.campaign_configurator {
|
1229 |
+
background: #FFF;
|
1230 |
+
padding: 20px 0; }
|
1231 |
+
.campaign_configurator table {
|
1232 |
+
margin: 0 auto;
|
1233 |
+
width: 51%;
|
1234 |
+
min-width: 574px;
|
1235 |
+
border: none;
|
1236 |
+
box-shadow: none; }
|
1237 |
+
.campaign_configurator th {
|
1238 |
+
min-width: 120px; }
|
1239 |
+
|
1240 |
+
@media screen and (max-width: 782px) {
|
1241 |
+
.campaign_configurator {
|
1242 |
+
padding: 0; }
|
1243 |
+
.campaign_configurator table {
|
1244 |
+
width: auto;
|
1245 |
+
min-width: auto;
|
1246 |
+
max-width: 100%; }
|
1247 |
+
.campaign_configurator th {
|
1248 |
+
min-width: auto; } }
|
1249 |
+
|
1250 |
+
#wf-tab-content-config td > input:not([type="checkbox"]):not([type="radio"]),
|
1251 |
+
#wf-tab-content-config td > select,
|
1252 |
+
#wf-tab-content-config td > textarea {
|
1253 |
+
width: 100% !important; }
|
1254 |
+
|
1255 |
+
.woo-feed-filters td > div:nth-child(2n):not(.clear):not(.selectize) {
|
1256 |
+
width: 120px;
|
1257 |
+
display: block; }
|
1258 |
+
|
1259 |
+
.woo-feed-filters td > div:not(.clear) {
|
1260 |
+
float: left;
|
1261 |
+
margin-right: 10px; }
|
1262 |
+
|
1263 |
+
.woo-feed-filters tr > td:first-child {
|
1264 |
+
width: 290px;
|
1265 |
+
padding-left: 40px; }
|
1266 |
+
|
1267 |
+
.woo-feed-filters,
|
1268 |
+
.woo-feed-ftp {
|
1269 |
+
margin: 15px auto 25px; }
|
1270 |
+
|
1271 |
+
.wf_clean_cache_wrapper {
|
1272 |
+
display: -ms-flexbox;
|
1273 |
+
display: flex;
|
1274 |
+
margin-left: auto; }
|
1275 |
+
|
1276 |
+
@-webkit-keyframes LoaderClockWise {
|
1277 |
+
from {
|
1278 |
+
-webkit-transform: rotate(0deg);
|
1279 |
+
transform: rotate(0deg); }
|
1280 |
+
to {
|
1281 |
+
-webkit-transform: rotate(360deg);
|
1282 |
+
transform: rotate(360deg); } }
|
1283 |
+
|
1284 |
+
@keyframes LoaderClockWise {
|
1285 |
+
from {
|
1286 |
+
-webkit-transform: rotate(0deg);
|
1287 |
+
transform: rotate(0deg); }
|
1288 |
+
to {
|
1289 |
+
-webkit-transform: rotate(360deg);
|
1290 |
+
transform: rotate(360deg); } }
|
1291 |
+
|
1292 |
+
.woo-feed-cache-loader {
|
1293 |
+
width: 18px;
|
1294 |
+
margin-right: 5px;
|
1295 |
+
animation: LoaderClockWise 1s linear infinite;
|
1296 |
+
-webkit-animation: LoaderClockWise 1s linear infinite;
|
1297 |
+
display: none; }
|
1298 |
+
|
1299 |
+
.woo-feed-table-heading .woo-feed-table-heading-title {
|
1300 |
+
float: left;
|
1301 |
+
margin-right: auto;
|
1302 |
+
display: inline-block;
|
1303 |
+
line-height: 30px; }
|
1304 |
+
|
1305 |
+
.woo-feed-table-heading .wf_clean_cache_wrapper {
|
1306 |
+
float: right;
|
1307 |
+
font-weight: normal; }
|
1308 |
+
|
1309 |
+
.wf_clean_cache_wrapper button {
|
1310 |
+
background: linear-gradient(125deg, #eb4d4b 0, #FF9671 130%);
|
1311 |
+
color: #fff;
|
1312 |
+
border: none;
|
1313 |
+
font-weight: 500;
|
1314 |
+
display: inline-block;
|
1315 |
+
text-decoration: none;
|
1316 |
+
font-size: 13px;
|
1317 |
+
line-height: 2.15384615;
|
1318 |
+
min-height: 30px;
|
1319 |
+
margin: 0;
|
1320 |
+
padding: 0 10px;
|
1321 |
+
border-radius: 3px;
|
1322 |
+
cursor: pointer;
|
1323 |
+
outline: none; }
|
1324 |
+
|
1325 |
+
.wf_clean_cache_wrapper button:hover {
|
1326 |
+
background: #ff7979;
|
1327 |
+
color: #fff; }
|
admin/css/woo-feed-admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wpf_spin{-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear}.wpf_spin.reverse_spin{animation-direction:reverse}.wpf_regenerate.disabled{color:#737373;box-shadow:none;cursor:not-allowed}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.wfbtn{background:#3498db;background-image:linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);border-radius:17px;box-shadow:inset 0 1px 3px #666;font-family:Arial,sans-serif;color:#fff;font-size:20px;padding:10px 20px 10px 20px;border:solid #2b698f 0;text-decoration:none}.wfbtn:hover{background:#3cb0fd;background-image:linear-gradient(to bottom,#3cb0fd,#3498db);text-decoration:none}.wftooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px}.feed-actions .makeFeedResponse{width:70%;color:green}.woo-feed-mapping-input{width:100%}.requiredIn{color:red}.generalInput{width:200px}.generalInput:not(.selectize-control){margin:5px auto}.error{color:red}.widefat td input,.widefat td select{max-width:100%}#wf_newRow{margin-left:0}.mtable tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable th:nth-child(1){width:17px}.mtable th:nth-child(2){width:160px}.mtable th:nth-child(3){width:100px}.mtable th:nth-child(4){width:100px}.mtable th:nth-child(5){width:150px}.mtable th:nth-child(6){width:100px}.mtable th:nth-child(7){width:150px}.mtable th:nth-child(8){width:90px}.mtable th:nth-child(9){width:29px}.mtable2 tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable2 th:nth-child(1){width:30px}.mtable2 th:nth-child(2){width:150px}.mtable2 th:nth-child(3){width:230px}.mtable2 th:nth-child(4){width:220px}.mtable2 th:nth-child(7){width:50px}.mtable2 th:nth-child(8){width:50px}.mtable2 th:nth-child(9){width:29px}.wp-admin select.wf_mattributes{width:150px;left:0;height:25px}div#wf-tab-content1 select:not([name^=output_type]){width:100%}div#wf-tab-content1 input{width:100%}div#wf-tab-content1 .dashicons{vertical-align:middle}.wf_attributes{width:150px;left:0}.wf_compare{max-width:245px;left:0}.wf_ps{width:100px;left:0}.wf_sortedtable{cursor:move}.sorted_table{position:relative}.sorted_table .dragged{position:absolute;opacity:.8;z-index:9999;background:#fff;width:100%;display:table}.sorted_table tbody tr.placeholder td{border:1px dashed #2cc185;height:46px}.wfnoempty{width:120px}p{color:#222}.wf_tabs{position:relative;margin:0 auto;width:100%;list-style:none}.wf_tabs:after{display:table;clear:both;content:""}.wf_tabs li{float:left;width:20%;display:block;border:2px solid #ccc}.wf_tabs li>input[type=radio][name=wf_tabs]{position:absolute;top:auto;left:-9999px}.wf-tab-name{display:block;padding:15px;font-size:15px;font-weight:700;line-height:1;background:#fff;cursor:pointer;position:relative;text-align:center;text-transform:uppercase;color:#2cc185}.wf-tab-name:hover{background:#2cc185;color:#fff}.wf_tabs [id^=tab]:checked+label{background:#2cc185;color:#fff}.wf_tabs .wf-tab-content{z-index:2;display:none;width:100%;font-size:.9rem;position:absolute;left:0;background:#fff;border:2px solid #ccc}.wf_tabs [id^=tab]:checked~[id^=wf-tab-content]{display:block}[id^=wf-tab-content]{margin-bottom:40px}div#wf-tab-content2 table:first-child{padding:10px 0}div#wf-tab-content2 table:first-child td:nth-child(1){width:260px}div#wf-tab-content2 table:first-child td:nth-child(2){width:260px}table.feed-actions tr td:last-child{text-align:right}select.selectize{display:none}body.no-js select.selectize{display:block!important}.wp-list-table .option_name .wf_feed_option_name_link{font-weight:700;color:#30336b}.wp-list-table #option_name a{color:#32373c}.selectize-dropdown .active{background-color:#edf9ff}.selectize-dropdown .create{padding:5px 8px}.wapk-selectize-item{background:#0073aa!important;color:#f1f1f1!important;font-weight:700!important;border-color:#0073aa!important;padding-left:5px;padding-right:5px}.selectize-input.full #googleTaxonomyId-selectized{opacity:0;position:absolute;left:-10000px}.selectize-dropdown [data-selectable].option{cursor:default}.selectize-control.plugin-remove_button [data-value] .remove{border-left:1px solid #f1f1f1!important}.selectize-dropdown .optgroup-header{font-weight:700;background:#efefef;color:#5a5a5a}.selectize-dropdown [data-selectable].option{cursor:pointer}.wf_status_wrap label{width:55px;height:30px;box-sizing:border-box;float:left;border-radius:100px;position:relative;cursor:pointer;transition:.3s ease;background:#d3d3d3}input[class=woo_feed_status_input]:checked+label{background:#4fbe79}input[class=woo_feed_status_input]:checked+label:before{left:29px}.wf_status_wrap label:before{transition:.3s ease;content:'';width:20px;height:20px;position:absolute;background:#fff;left:6px;top:5px;box-sizing:border-box;color:#000;border-radius:100px;box-shadow:0 1.5px 2px 0 #000}.view span.dashicons.dashicons-external{color:#30336b}.view span.dashicons.dashicons-sos{color:#22a6b3}.view span.dashicons.dashicons-download{color:#ee5253}.view span.dashicons.dashicons-media-code{color:#576574}.column-url,.widefat td.column-url,.widefat th.column-url{color:#1e8f9a;font-weight:700}.feed-progress-container{width:100%;color:#fff;text-align:center;font-weight:300}.feed-progress-bar{width:100%;background:#eee;padding:3px;border-radius:50px;box-shadow:inset 0 1px 3px rgba(0,0,0,.2)}.feed-progress-bar-fill{height:20px;display:block;background:linear-gradient(to right top,#10ac84,#13b389,#15ba8f,#18c194,#1ac89a,#13cba1,#0acfa9,#00d2b0,#00d2ba,#00d2c3,#00d2cb,#00d2d3);width:0;border-radius:50px;transition:width .8s ease}.feed-progress-status{float:left;font-weight:700;color:#00008b}.feed-progress-percentage{text-align:right;font-weight:bolder;color:#1dd1a1;font-family:'Arial Black',sans-serif;font-size:large}#wpbody-content.woofeed-body-content{overflow:visible!important}.clippy{position:relative;width:13px;margin-top:-3px;margin-left:3px;top:3px}.column-url .clippy{display:none}.column-url:hover .clippy{display:inline-block}.tooltipped{position:relative}.tooltipped:after{position:absolute;z-index:1000000;display:none;padding:5px 8px;font:normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:rgba(0,0,0,.8);border-radius:3px;-webkit-font-smoothing:subpixel-antialiased}.tooltipped:before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:rgba(0,0,0,.8);pointer-events:none;content:"";border:5px solid transparent}.tooltipped:hover:before{display:inline-block;text-decoration:none}.tooltipped:hover:after{display:inline-block;text-decoration:none}.tooltipped:active:before{display:inline-block;text-decoration:none}.tooltipped:active:after{display:inline-block;text-decoration:none}.tooltipped:focus:before{display:inline-block;text-decoration:none}.tooltipped:focus:after{display:inline-block;text-decoration:none}.tooltipped-multiline:hover:after{display:table-cell}.tooltipped-multiline:active:after{display:table-cell}.tooltipped-multiline:focus:after{display:table-cell}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate}.tooltipped-s:after{top:100%;right:50%;margin-top:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-s:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-se:after{top:100%;margin-top:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-se:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-sw:after{top:100%;right:50%;margin-top:5px;margin-right:-15px}.tooltipped-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-n:after{right:50%;bottom:100%;margin-bottom:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-n:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-ne:after{bottom:100%;margin-bottom:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-ne:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:5px;margin-right:-15px}.tooltipped-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.tooltipped-multiline.tooltipped-s:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-w:after{right:100%}.tooltipped-multiline.tooltipped-e:after{right:100%}.tooltipped-sticky:before{display:inline-block}.tooltipped-sticky:after{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.fullscreen-overlay-enabled.dark-theme .tooltipped:after{color:#000;background:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before{border-right-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before{border-left-color:rgba(255,255,255,.8)}@media screen and (min-width:0\0){.tooltipped-multiline:after{width:250px}}ul.tracker_collection_list{list-style:initial;padding:initial;margin:-10px 0 0 30px;font-size:11px!important}ul.tracker_collection_list li{margin:0}table.wf-info-table,table.wf-rate-table{vertical-align:middle;text-align:center;max-width:100%;font-weight:500}table.wf-info-table th,table.wf-rate-table th{text-align:center}table.wf-info-table th .woo-feed-top-header,table.wf-rate-table th .woo-feed-top-header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .get-woo-feed-pro,table.wf-rate-table th .woo-feed-top-header .get-woo-feed-pro{margin-left:20px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons{float:right;display:-ms-flexbox;display:flex;border-radius:7px;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a{padding:8px 20px;background:#576574;color:#fff;box-sizing:border-box;display:inline-block;transition:.3s ease}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link{background:#576574;border-top-left-radius:5px;border-bottom-left-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link{background:#ee5253}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link{background:#22a6b3;border-top-right-radius:5px;border-bottom-right-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons{font-size:18px;line-height:1.2}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a:hover,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a:hover{background:#30336b;box-shadow:0 0 33px 0 rgba(0,0,0,.12)}table.wf-info-table strong,table.wf-rate-table strong{font-weight:700}table.wf-info-table th:first-child img{margin:0 0 -5px 5px}table.wf-rate-table a{color:#0073aa}table.wf-rate-table a.review-star:after{content:"\f155\f155\f155\f155\f155"!important;font-family:dashicons;font-size:10px;font-weight:100;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#0073aa;text-decoration:underline}#adminmenu #toplevel_page_webappick-manage-feeds div.wp-menu-image::before{content:"";background:url(../images/woo-feed-icon.svg) no-repeat center center;background-size:20px 20px;opacity:.6}#adminmenu #toplevel_page_webappick-manage-feeds:hover div.wp-menu-image::before{opacity:1}#adminmenu #toplevel_page_webappick-manage-feeds.wp-has-current-submenu div.wp-menu-image::before{opacity:1}.wapk-admin,.wapk-admin *{box-sizing:border-box}.wapk-admin{position:relative;display:block;-webkit-hyphens:manual;-ms-hyphens:manual;-moz-hyphens:manual;hyphens:manual;color:#1b2730;margin:0 0 0 -10px}@media screen and (min-width:783px){.wapk-admin{margin:0 0 0 -20px}}.text-center{text-align:center}.wapk-admin h1,.wapk-admin h2,.wapk-admin h3,.wapk-admin h4,.wapk-admin h5,.wapk-admin h6,.wapk-admin p{color:#1b2730}.wapk-admin sup{vertical-align:baseline;position:relative;top:-6px}.wapk-admin sub{vertical-align:baseline;position:relative;top:4px}.wapk-admin .wapk-section{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin .wapk-section [class$=icon32]+h2{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section h1{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin>.notice{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin span.help{display:block;float:left;width:100%;font-size:.9em;color:#636363;margin-top:5px;font-weight:500}.wapk-admin span.help .dashicons{width:11px;height:12px;font-size:inherit;vertical-align:middle}.clear:after{content:"";display:table;clear:both}.wapk-feed-docs .postbox{width:355px;margin-right:20px;display:inline-block;vertical-align:top}.wapk-feed-docs .postbox .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4;cursor:pointer}.wapk-feed-docs .postbox .dashicons{color:#ccc}.wapk-feed-docs .postbox a{text-decoration:none}.wapk-feed-docs .postbox .inside{margin-bottom:0}.wapk-feed-docs .postbox ul{margin-bottom:0}.wapk-feed-docs .postbox .toggle-indicator:before{content:"\F142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.wapk-feed-docs .postbox li{width:100%;display:block;float:left}.wapk-feed-docs .postbox li span{display:inline-block;float:left;margin-right:4px}.wapk-feed-docs .postbox li a{display:inline-block;float:left;width:calc(100% - 24px)}.wapk-feed-docs .postbox.closed .toggle-indicator:before{content:"\F140"}.wapk-section #post-body.columns-2 #side-sortables{min-height:196px}#poststuff #feed_merchant_info .inside{margin:0;padding:0}#feed_merchant_info ul.data{margin-left:24px;margin-top:5px}#feed_merchant_info ul.data li{margin-bottom:5px}.merchant-info-section{padding:6px 10px 8px}.generateFeed .wf-tab-content table:first-child{border:none;box-shadow:none}.generateFeed table th{font-weight:700}@media only screen and (max-width:850px){.wapk-feed-docs .postbox{display:block;width:auto;float:none;margin-right:auto}}.wp-submenu li span.woo-feed-docs{font-weight:700;color:#f18500}.wp-submenu li:hover span.woo-feed-docs{color:#ce7304}.wp-submenu li.current span.woo-feed-docs{color:#ce7304}.wapk-admin .wapk-feed-docs .postbox .hndle{cursor:default}.wapk-cta{position:relative;display:-ms-flexbox;display:flex;width:100%;padding:100px 15px;background:linear-gradient(45deg,#6cd5ff 33%,#c2efef 100%);-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.wapk-cta-icon .dashicons{font-size:100px;width:100px;height:auto;margin:0 10px -8px 0;color:#02658c}.wapk-cta-content{width:50%}.wapk-cta-content h2{font-size:2em;margin:.5em 0}.wapk-cta-action a.wapk-button{font-size:24px;height:auto!important;padding:10px 20px}@media (max-width:600px){.wapk-cta{display:block;text-align:center;padding:4em 0}.wapk-cta-content{width:100%;margin:2em 0}}.wapk-button{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button>.dashicons{color:#00d4d4}.wapk-button:hover{border-color:#0bb;color:#0bb}.wapk-button:hover>svg{fill:#0bb}.wapk-button:hover>.dashicons{color:#0bb}.wapk-button:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button:focus>svg{fill:#0bb}.wapk-button:focus>.dashicons{color:#0bb}.wapk-button:active{background:#0bb;border-color:#0bb}.wapk-button-secondary{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button-secondary>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button-secondary>.dashicons{color:#00d4d4}.wapk-button-secondary:hover{border-color:#0bb;color:#0bb}.wapk-button-secondary:hover>svg{fill:#0bb}.wapk-button-secondary:hover>.dashicons{color:#0bb}.wapk-button-secondary:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button-secondary:focus>svg{fill:#0bb}.wapk-button-secondary:focus>.dashicons{color:#0bb}.wapk-button-primary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;background:#00d4d4;border-color:#00d4d4;color:#fff;box-shadow:0 1px 0 #0bb;text-shadow:0 -1px 1px #0bb,1px 0 1px #0bb,0 1px 1px #0bb,-1px 0 1px #0bb}.wapk-button-primary>svg{fill:#fff}.wapk-button-primary:hover{background:#00e3e3;border-color:#00c5c5;color:#fff}.wapk-button-primary:hover>svg{fill:#fff}.wapk-button-primary:focus{background:#00e3e3;border-color:#00c5c5;color:#fff;box-shadow:0 0 0 1px #fff,0 0 0 3px #00d4d4}.wapk-button-primary:focus>svg{fill:#fff}.wapk-button-primary:active{background:#0bb;border-color:#0bb;color:#fff}.wapk-button-primary:active>svg{fill:#fff}.wapk-button-primary:disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary:disabled>svg{fill:#c7d1d1!important}.wapk-button.hover{border-color:#0bb;color:#0bb}.wapk-button.hover>svg{fill:#0bb}.wapk-button.hover>.dashicons{color:#0bb}.wapk-button.focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button.focus>svg{fill:#0bb}.wapk-button.focus>.dashicons{color:#0bb}.wapk-button.active{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus>svg{fill:#0bb}.wapk-button.active:focus>.dashicons{color:#0bb}.wapk-button.active:hover{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:hover>svg{fill:#0bb}.wapk-button.active:hover>.dashicons{color:#0bb}.wapk-button.active>svg{fill:#0bb}.wapk-button.active>.dashicons{color:#0bb}.wapk-button-primary.active{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus>svg{fill:#fff}.wapk-button-primary.active:hover{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:hover>svg{fill:#fff}.wapk-button-primary.active>svg{fill:#fff}.wapk-button-primary[disabled]{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary[disabled]>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-primary-disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.wapk-button-primary-disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-hero{box-shadow:0 2px 0 #0bb}.wapk-button-primary.wapk-button-hero:focus{box-shadow:0 2px 0 #0bb,0 1px 0 #00c5c5,0 0 2px 1px #0ee}.wapk-button-primary.wapk-button-hero:active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active:focus,.wapk-button-primary.wapk-button-hero.active:hover{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-group>.wapk-button.active{border-color:#00d4d4}.wapk-button.wapk-button-xl{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button-group.wapk-button-xl .wapk-button{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button.wapk-button-hero{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}.wapk-button-group.wapk-button-hero .wapk-button{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}@media screen and (min-width:782px){th#provider,th#status{width:80px}th#type{width:50px}th#option_name{width:100px}td.option_name.column-option_name>span:first-child{display:none}th#last_updated{width:90px}th#view{width:111px}}@media screen and (min-width:960px){th#provider,th#status{width:100px}th#type{width:80px}th#option_name{width:150px}th#last_updated{width:140px}}@media screen and (max-width:782px){table.wf-info-table{margin-top:10px}table.wf-info-table th:first-child img{margin:0 auto;display:block}.wapk-button.wapk-button-xl{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.wapk-feed-docs .wapk-feed-cta{margin:0}.campaign_configurator{background:#fff;padding:20px 0}.campaign_configurator table{margin:0 auto;width:51%;min-width:574px;border:none;box-shadow:none}.campaign_configurator th{min-width:120px}@media screen and (max-width:782px){.campaign_configurator{padding:0}.campaign_configurator table{width:auto;min-width:auto;max-width:100%}.campaign_configurator th{min-width:auto}}#wf-tab-content-config td>input:not([type=checkbox]):not([type=radio]),#wf-tab-content-config td>select,#wf-tab-content-config td>textarea{width:100%!important}.woo-feed-filters td>div:nth-child(2n):not(.clear):not(.selectize){width:120px;display:block}.woo-feed-filters td>div:not(.clear){float:left;margin-right:10px}.woo-feed-filters tr>td:first-child{width:290px;padding-left:40px}.woo-feed-filters,.woo-feed-ftp{margin:15px auto 25px}.wf_clean_cache_wrapper{display:-ms-flexbox;display:flex;margin-left:auto}@-webkit-keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.woo-feed-cache-loader{width:18px;margin-right:5px;animation:LoaderClockWise 1s linear infinite;-webkit-animation:LoaderClockWise 1s linear infinite;display:none}.woo-feed-table-heading .woo-feed-table-heading-title{float:left;margin-right:auto;display:inline-block;line-height:30px}.woo-feed-table-heading .wf_clean_cache_wrapper{float:right;font-weight:400}.wf_clean_cache_wrapper button{background:#eb4d4b;color:#fff;border:none;font-weight:500;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;border-radius:3px;cursor:pointer;outline:0}.wf_clean_cache_wrapper button:hover{background:#ff7979;color:#fff}
|
1 |
+
.wpf_spin{-webkit-animation:spin 1s infinite linear;animation:spin 1s infinite linear}.wpf_spin.reverse_spin{animation-direction:reverse}.wpf_regenerate.disabled{color:#737373;box-shadow:none;cursor:not-allowed}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.wfbtn{background:#3498db;background-image:linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);border-radius:17px;box-shadow:inset 0 1px 3px #666;font-family:Arial,sans-serif;color:#fff;font-size:20px;padding:10px 20px 10px 20px;border:solid #2b698f 0;text-decoration:none}.wfbtn:hover{background:#3cb0fd;background-image:linear-gradient(to bottom,#3cb0fd,#3498db);text-decoration:none}.woo_feed_manage_list_table .wf_update_interval_btn{background:linear-gradient(125deg,#3cb0fd 0,#152f8c 140%)}.woo_feed_manage_list_table .wf_update_interval_btn:hover{background:linear-gradient(125deg,#3cb0fd 0,#152f8c 140%)}.wftooltip{display:none;position:absolute;border:1px solid #333;background-color:#161616;border-radius:5px;padding:10px;color:#fff;font-size:12px}.feed-actions .makeFeedResponse{width:70%;color:green}.woo-feed-mapping-input{width:100%}.requiredIn{color:red}.generalInput{width:200px}.generalInput:not(.selectize-control){margin:5px auto}.error{color:red}.widefat td input,.widefat td select{max-width:100%}#wf_newRow{margin-left:0}.mtable tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable th:nth-child(1){width:17px}.mtable th:nth-child(2){width:160px}.mtable th:nth-child(3){width:100px}.mtable th:nth-child(4){width:100px}.mtable th:nth-child(5){width:150px}.mtable th:nth-child(6){width:100px}.mtable th:nth-child(7){width:150px}.mtable th:nth-child(8){width:90px}.mtable th:nth-child(9){width:29px}.mtable2 tbody tr{height:25px;border:1px solid #ccc;text-align:left;-ms-flex-align:baseline;align-items:baseline;font-weight:700}.mtable2 th:nth-child(1){width:30px}.mtable2 th:nth-child(2){width:150px}.mtable2 th:nth-child(3){width:230px}.mtable2 th:nth-child(4){width:220px}.mtable2 th:nth-child(7){width:50px}.mtable2 th:nth-child(8){width:50px}.mtable2 th:nth-child(9){width:29px}.wp-admin select.wf_mattributes{width:150px;left:0;height:25px}div#wf-tab-content1 select:not([name^=output_type]){width:100%}div#wf-tab-content1 input{width:100%}div#wf-tab-content1 .dashicons{vertical-align:middle}.wf_attributes{width:150px;left:0}.wf_compare{max-width:245px;left:0}.wf_ps{width:100px;left:0}.wf_sortedtable{cursor:move}.sorted_table{position:relative}.sorted_table .dragged{position:absolute;opacity:.8;z-index:9999;background:#fff;width:100%;display:table}.sorted_table tbody tr.placeholder td{border:1px dashed #2cc185;height:46px}.wfnoempty{width:120px}p{color:#222}.wf_tabs{position:relative;margin:0 auto;width:100%;list-style:none}.wf_tabs:after{display:table;clear:both;content:""}.wf_tabs li{float:left;width:20%;display:block;border:2px solid #ccc}.wf_tabs li>input[type=radio][name=wf_tabs]{position:absolute;top:auto;left:-9999px}.wf-tab-name{display:block;padding:15px;font-size:15px;font-weight:700;line-height:1;background:#fff;cursor:pointer;position:relative;text-align:center;text-transform:uppercase;color:#2cc185}.wf-tab-name:hover{background:#2cc185;color:#fff}.wf_tabs [id^=tab]:checked+label{background:#2cc185;color:#fff}.wf_tabs .wf-tab-content{z-index:2;display:none;width:100%;font-size:.9rem;position:absolute;left:0;background:#fff;border:2px solid #ccc}.wf_tabs [id^=tab]:checked~[id^=wf-tab-content]{display:block}[id^=wf-tab-content]{margin-bottom:40px}div#wf-tab-content2 table:first-child{padding:10px 0}div#wf-tab-content2 table:first-child td:nth-child(1){width:260px}div#wf-tab-content2 table:first-child td:nth-child(2){width:260px}table.feed-actions tr td:last-child{text-align:right}select.selectize{display:none}body.no-js select.selectize{display:block!important}.wp-list-table .option_name .wf_feed_option_name_link{font-weight:700;color:#30336b}.wp-list-table #option_name a{color:#32373c}.selectize-dropdown .active{background-color:#edf9ff}.selectize-dropdown .create{padding:5px 8px}.wapk-selectize-item{background:#0073aa!important;color:#f1f1f1!important;font-weight:700!important;border-color:#0073aa!important;padding-left:5px;padding-right:5px}.selectize-input.full #googleTaxonomyId-selectized{opacity:0;position:absolute;left:-10000px}.selectize-dropdown [data-selectable].option{cursor:default}.selectize-control.plugin-remove_button [data-value] .remove{border-left:1px solid #f1f1f1!important}.selectize-dropdown .optgroup-header{font-weight:700;background:#efefef;color:#5a5a5a}.selectize-dropdown [data-selectable].option{cursor:pointer}.wf_status_wrap label{width:55px;height:30px;box-sizing:border-box;float:left;border-radius:100px;position:relative;cursor:pointer;transition:.3s ease;background:#d3d3d3}input[class=woo_feed_status_input]:checked+label{background:#4fbe79}input[class=woo_feed_status_input]:checked+label:before{left:29px}.wf_status_wrap label:before{transition:.3s ease;content:'';width:20px;height:20px;position:absolute;background:#fff;left:6px;top:5px;box-sizing:border-box;color:#000;border-radius:100px;box-shadow:0 1.5px 2px 0 #000}.view span.dashicons.dashicons-external{color:#30336b}.view span.dashicons.dashicons-sos{color:#22a6b3}.view span.dashicons.dashicons-download{color:#ee5253}.view span.dashicons.dashicons-media-code{color:#576574}.column-url,.widefat td.column-url,.widefat th.column-url{color:#1e8f9a;font-weight:700}.feed-progress-container{width:100%;color:#fff;text-align:center;font-weight:300}.feed-progress-bar{width:100%;background:#eee;padding:3px;border-radius:50px;box-shadow:inset 0 1px 3px rgba(0,0,0,.2)}.feed-progress-bar-fill{height:20px;display:block;background:linear-gradient(to right top,#10ac84,#13b389,#15ba8f,#18c194,#1ac89a,#13cba1,#0acfa9,#00d2b0,#00d2ba,#00d2c3,#00d2cb,#00d2d3);width:0;border-radius:50px;transition:width .8s ease}.feed-progress-status{float:left;font-weight:700;color:#00008b}.feed-progress-percentage{text-align:right;font-weight:bolder;color:#1dd1a1;font-family:'Arial Black',sans-serif;font-size:large}#wpbody-content.woofeed-body-content{overflow:visible!important}.clippy{position:relative;width:13px;margin-top:-3px;margin-left:3px;top:3px}.column-url .clippy{display:none}.column-url:hover .clippy{display:inline-block}.tooltipped{position:relative}.tooltipped:after{position:absolute;z-index:1000000;display:none;padding:5px 8px;font:normal normal 11px/1.5 Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:rgba(0,0,0,.8);border-radius:3px;-webkit-font-smoothing:subpixel-antialiased}.tooltipped:before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:rgba(0,0,0,.8);pointer-events:none;content:"";border:5px solid transparent}.tooltipped:hover:before{display:inline-block;text-decoration:none}.tooltipped:hover:after{display:inline-block;text-decoration:none}.tooltipped:active:before{display:inline-block;text-decoration:none}.tooltipped:active:after{display:inline-block;text-decoration:none}.tooltipped:focus:before{display:inline-block;text-decoration:none}.tooltipped:focus:after{display:inline-block;text-decoration:none}.tooltipped-multiline:hover:after{display:table-cell}.tooltipped-multiline:active:after{display:table-cell}.tooltipped-multiline:focus:after{display:table-cell}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-break:break-word;word-wrap:normal;white-space:pre-line;border-collapse:separate}.tooltipped-s:after{top:100%;right:50%;margin-top:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-s:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-se:after{top:100%;margin-top:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-se:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-sw:after{top:100%;right:50%;margin-top:5px;margin-right:-15px}.tooltipped-sw:before{top:auto;right:50%;bottom:-5px;margin-right:-5px;border-bottom-color:rgba(0,0,0,.8)}.tooltipped-n:after{right:50%;bottom:100%;margin-bottom:5px;-webkit-transform:translateX(50%);transform:translateX(50%)}.tooltipped-n:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-ne:after{bottom:100%;margin-bottom:5px;right:auto;left:50%;margin-left:-15px}.tooltipped-ne:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:5px;margin-right:-15px}.tooltipped-nw:before{top:-5px;right:50%;bottom:auto;margin-right:-5px;border-top-color:rgba(0,0,0,.8)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-5px;margin-top:-5px;border-left-color:rgba(0,0,0,.8)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:5px;-webkit-transform:translateY(50%);transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-5px;bottom:50%;margin-top:-5px;border-right-color:rgba(0,0,0,.8)}.tooltipped-multiline.tooltipped-s:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-n:after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped-multiline.tooltipped-w:after{right:100%}.tooltipped-multiline.tooltipped-e:after{right:100%}.tooltipped-sticky:before{display:inline-block}.tooltipped-sticky:after{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.fullscreen-overlay-enabled.dark-theme .tooltipped:after{color:#000;background:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-s:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-se:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped .tooltipped-sw:before{border-bottom-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-n:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-ne:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-nw:before{border-top-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-e:before{border-right-color:rgba(255,255,255,.8)}.fullscreen-overlay-enabled.dark-theme .tooltipped.tooltipped-w:before{border-left-color:rgba(255,255,255,.8)}@media screen and (min-width:0\0){.tooltipped-multiline:after{width:250px}}ul.tracker_collection_list{list-style:initial;padding:initial;margin:-10px 0 0 30px;font-size:11px!important}ul.tracker_collection_list li{margin:0}table.wf-info-table,table.wf-rate-table{vertical-align:middle;text-align:center;max-width:100%;font-weight:500}table.wf-info-table th,table.wf-rate-table th{text-align:center}table.wf-info-table th .woo-feed-top-header,table.wf-rate-table th .woo-feed-top-header{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .get-woo-feed-pro,table.wf-rate-table th .woo-feed-top-header .get-woo-feed-pro{margin-left:20px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons{float:right;display:-ms-flexbox;display:flex;border-radius:7px;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a{padding:8px 20px;background:#576574;color:#fff;box-sizing:border-box;display:inline-block;transition:.3s ease}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-doc-link{background:#576574;border-top-left-radius:5px;border-bottom-left-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-video-link{background:#ee5253}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a.woo-feed-support-link{background:#22a6b3;border-top-right-radius:5px;border-bottom-right-radius:5px}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a span.dashicons{font-size:18px;line-height:1.2}table.wf-info-table th .woo-feed-top-header .woo-feed-top-buttons a:hover,table.wf-rate-table th .woo-feed-top-header .woo-feed-top-buttons a:hover{background:#30336b;box-shadow:0 0 33px 0 rgba(0,0,0,.12)}table.wf-info-table strong,table.wf-rate-table strong{font-weight:700}table.wf-info-table th:first-child img{margin:0 0 -5px 5px}table.wf-rate-table a{color:#0073aa}table.wf-rate-table a.review-star:after{content:"\f155\f155\f155\f155\f155"!important;font-family:dashicons;font-size:10px;font-weight:100;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#0073aa;text-decoration:underline}#adminmenu #toplevel_page_webappick-manage-feeds div.wp-menu-image::before{content:"";background:url(../images/woo-feed-icon.svg) no-repeat center center;background-size:20px 20px;opacity:.6}#adminmenu #toplevel_page_webappick-manage-feeds:hover div.wp-menu-image::before{opacity:1}#adminmenu #toplevel_page_webappick-manage-feeds.wp-has-current-submenu div.wp-menu-image::before{opacity:1}.wapk-admin,.wapk-admin *{box-sizing:border-box}.wapk-admin{position:relative;display:block;-webkit-hyphens:manual;-ms-hyphens:manual;-moz-hyphens:manual;hyphens:manual;color:#1b2730;margin:0 0 0 -10px}@media screen and (min-width:783px){.wapk-admin{margin:0 0 0 -20px}}.text-center{text-align:center}.wapk-admin h1,.wapk-admin h2,.wapk-admin h3,.wapk-admin h4,.wapk-admin h5,.wapk-admin h6,.wapk-admin p{color:#1b2730}.wapk-admin sup{vertical-align:baseline;position:relative;top:-6px}.wapk-admin sub{vertical-align:baseline;position:relative;top:4px}.wapk-admin .wapk-section{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin .wapk-section [class$=icon32]+h2{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section h1{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin .wapk-section>h2:first-child{font-size:23px;font-weight:400;margin:0;padding:9px 0 4px 0;line-height:1.3}.wapk-admin>.notice{margin:10px 20px 0 22px;position:relative;display:block}.wapk-admin span.help{display:block;float:left;width:100%;font-size:.9em;color:#636363;margin-top:5px;font-weight:500}.wapk-admin span.help .dashicons{width:11px;height:12px;font-size:inherit;vertical-align:middle}.clear:after{content:"";display:table;clear:both}.wapk-feed-docs .postbox{width:355px;margin-right:20px;display:inline-block;vertical-align:top}.wapk-feed-docs .postbox .hndle{font-size:14px;padding:8px 12px;margin:0;line-height:1.4;cursor:pointer}.wapk-feed-docs .postbox .dashicons{color:#ccc}.wapk-feed-docs .postbox a{text-decoration:none}.wapk-feed-docs .postbox .inside{margin-bottom:0}.wapk-feed-docs .postbox ul{margin-bottom:0}.wapk-feed-docs .postbox .toggle-indicator:before{content:"\F142";display:inline-block;font:400 20px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none!important}.wapk-feed-docs .postbox li{width:100%;display:block;float:left}.wapk-feed-docs .postbox li span{display:inline-block;float:left;margin-right:4px}.wapk-feed-docs .postbox li a{display:inline-block;float:left;width:calc(100% - 24px)}.wapk-feed-docs .postbox.closed .toggle-indicator:before{content:"\F140"}.wapk-section #post-body.columns-2 #side-sortables{min-height:196px}#poststuff #feed_merchant_info .inside{margin:0;padding:0}#feed_merchant_info ul.data{margin-left:24px;margin-top:5px}#feed_merchant_info ul.data li{margin-bottom:5px}.merchant-info-section{padding:6px 10px 8px}.generateFeed .wf-tab-content table:first-child{border:none;box-shadow:none}.generateFeed table th{font-weight:700}@media only screen and (max-width:850px){.wapk-feed-docs .postbox{display:block;width:auto;float:none;margin-right:auto}}.wp-submenu li span.woo-feed-docs{font-weight:700;color:#f18500}.wp-submenu li:hover span.woo-feed-docs{color:#ce7304}.wp-submenu li.current span.woo-feed-docs{color:#ce7304}.wapk-admin .wapk-feed-docs .postbox .hndle{cursor:default}.wapk-cta{position:relative;display:-ms-flexbox;display:flex;width:100%;padding:100px 15px;background:linear-gradient(45deg,#6cd5ff 33%,#c2efef 100%);-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.wapk-cta-icon .dashicons{font-size:100px;width:100px;height:auto;margin:0 10px -8px 0;color:#02658c}.wapk-cta-content{width:50%}.wapk-cta-content h2{font-size:2em;margin:.5em 0}.wapk-cta-action a.wapk-button{font-size:24px;height:auto!important;padding:10px 20px}@media (max-width:600px){.wapk-cta{display:block;text-align:center;padding:4em 0}.wapk-cta-content{width:100%;margin:2em 0}}.wapk-button{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button>.dashicons{color:#00d4d4}.wapk-button:hover{border-color:#0bb;color:#0bb}.wapk-button:hover>svg{fill:#0bb}.wapk-button:hover>.dashicons{color:#0bb}.wapk-button:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button:focus>svg{fill:#0bb}.wapk-button:focus>.dashicons{color:#0bb}.wapk-button:active{background:#0bb;border-color:#0bb}.wapk-button-secondary{color:#00d4d4;border-color:#00d4d4;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wapk-button-secondary>svg{width:15px;margin-left:5px;fill:#00d4d4}.wapk-button-secondary>.dashicons{color:#00d4d4}.wapk-button-secondary:hover{border-color:#0bb;color:#0bb}.wapk-button-secondary:hover>svg{fill:#0bb}.wapk-button-secondary:hover>.dashicons{color:#0bb}.wapk-button-secondary:focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button-secondary:focus>svg{fill:#0bb}.wapk-button-secondary:focus>.dashicons{color:#0bb}.wapk-button-primary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;background:#00d4d4;border-color:#00d4d4;color:#fff;box-shadow:0 1px 0 #0bb;text-shadow:0 -1px 1px #0bb,1px 0 1px #0bb,0 1px 1px #0bb,-1px 0 1px #0bb}.wapk-button-primary>svg{fill:#fff}.wapk-button-primary:hover{background:#00e3e3;border-color:#00c5c5;color:#fff}.wapk-button-primary:hover>svg{fill:#fff}.wapk-button-primary:focus{background:#00e3e3;border-color:#00c5c5;color:#fff;box-shadow:0 0 0 1px #fff,0 0 0 3px #00d4d4}.wapk-button-primary:focus>svg{fill:#fff}.wapk-button-primary:active{background:#0bb;border-color:#0bb;color:#fff}.wapk-button-primary:active>svg{fill:#fff}.wapk-button-primary:disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary:disabled>svg{fill:#c7d1d1!important}.wapk-button.hover{border-color:#0bb;color:#0bb}.wapk-button.hover>svg{fill:#0bb}.wapk-button.hover>.dashicons{color:#0bb}.wapk-button.focus{border-color:#00d4d4;color:#0bb;box-shadow:0 0 0 1px #00d4d4}.wapk-button.focus>svg{fill:#0bb}.wapk-button.focus>.dashicons{color:#0bb}.wapk-button.active{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:focus>svg{fill:#0bb}.wapk-button.active:focus>.dashicons{color:#0bb}.wapk-button.active:hover{border-color:#0bb;color:#0bb;box-shadow:inset 0 2px 5px -3px #0bb}.wapk-button.active:hover>svg{fill:#0bb}.wapk-button.active:hover>.dashicons{color:#0bb}.wapk-button.active>svg{fill:#0bb}.wapk-button.active>.dashicons{color:#0bb}.wapk-button-primary.active{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:focus>svg{fill:#fff}.wapk-button-primary.active:hover{background:#00d4d4;color:#fff;border-color:#088;box-shadow:inset 0 2px 5px -3px #000}.wapk-button-primary.active:hover>svg{fill:#fff}.wapk-button-primary.active>svg{fill:#fff}.wapk-button-primary[disabled]{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary[disabled]>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-primary-disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.wapk-button-primary-disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.disabled{color:#c7d1d1!important;background:#2ff!important;border-color:#2ff!important;text-shadow:none!important}.wapk-button-primary.disabled>svg{fill:#c7d1d1!important}.wapk-button-primary.wapk-button-hero{box-shadow:0 2px 0 #0bb}.wapk-button-primary.wapk-button-hero:focus{box-shadow:0 2px 0 #0bb,0 1px 0 #00c5c5,0 0 2px 1px #0ee}.wapk-button-primary.wapk-button-hero:active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-primary.wapk-button-hero.active:focus,.wapk-button-primary.wapk-button-hero.active:hover{box-shadow:inset 0 3px 0 #00a1a1}.wapk-button-group>.wapk-button.active{border-color:#00d4d4}.wapk-button.wapk-button-xl{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button-group.wapk-button-xl .wapk-button{height:30px;line-height:28px;padding:0 12px 2px}.wapk-button.wapk-button-hero{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}.wapk-button-group.wapk-button-hero .wapk-button{font-size:18px;height:50px;line-height:48px;padding:0 36px;min-height:46px}@media screen and (min-width:782px){th#provider,th#status{width:80px}th#type{width:50px}th#option_name{width:100px}td.option_name.column-option_name>span:first-child{display:none}th#last_updated{width:90px}th#view{width:111px}}@media screen and (min-width:960px){th#provider,th#status{width:100px}th#type{width:80px}th#option_name{width:150px}th#last_updated{width:140px}}@media screen and (max-width:782px){table.wf-info-table{margin-top:10px}table.wf-info-table th:first-child img{margin:0 auto;display:block}.wapk-button.wapk-button-xl{padding:6px 14px;line-height:normal;font-size:14px;vertical-align:middle;height:auto;margin-bottom:4px}}.wapk-feed-docs .wapk-feed-cta{margin:0}.campaign_configurator{background:#fff;padding:20px 0}.campaign_configurator table{margin:0 auto;width:51%;min-width:574px;border:none;box-shadow:none}.campaign_configurator th{min-width:120px}@media screen and (max-width:782px){.campaign_configurator{padding:0}.campaign_configurator table{width:auto;min-width:auto;max-width:100%}.campaign_configurator th{min-width:auto}}#wf-tab-content-config td>input:not([type=checkbox]):not([type=radio]),#wf-tab-content-config td>select,#wf-tab-content-config td>textarea{width:100%!important}.woo-feed-filters td>div:nth-child(2n):not(.clear):not(.selectize){width:120px;display:block}.woo-feed-filters td>div:not(.clear){float:left;margin-right:10px}.woo-feed-filters tr>td:first-child{width:290px;padding-left:40px}.woo-feed-filters,.woo-feed-ftp{margin:15px auto 25px}.wf_clean_cache_wrapper{display:-ms-flexbox;display:flex;margin-left:auto}@-webkit-keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes LoaderClockWise{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.woo-feed-cache-loader{width:18px;margin-right:5px;animation:LoaderClockWise 1s linear infinite;-webkit-animation:LoaderClockWise 1s linear infinite;display:none}.woo-feed-table-heading .woo-feed-table-heading-title{float:left;margin-right:auto;display:inline-block;line-height:30px}.woo-feed-table-heading .wf_clean_cache_wrapper{float:right;font-weight:400}.wf_clean_cache_wrapper button{background:linear-gradient(125deg,#eb4d4b 0,#ff9671 130%);color:#fff;border:none;font-weight:500;display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;border-radius:3px;cursor:pointer;outline:0}.wf_clean_cache_wrapper button:hover{background:#ff7979;color:#fff}
|
admin/css/woo-feed-admin.scss
CHANGED
@@ -55,6 +55,19 @@
|
|
55 |
text-decoration: none;
|
56 |
}
|
57 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
|
60 |
.wftooltip {
|
@@ -1788,7 +1801,7 @@ table {
|
|
1788 |
font-weight: normal;
|
1789 |
}
|
1790 |
.wf_clean_cache_wrapper button {
|
1791 |
-
background:
|
1792 |
color: #fff;
|
1793 |
border: none;
|
1794 |
font-weight: 500;
|
55 |
text-decoration: none;
|
56 |
}
|
57 |
}
|
58 |
+
.woo_feed_manage_list_table {
|
59 |
+
.wf_update_interval_btn {
|
60 |
+
background: -webkit-linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);
|
61 |
+
background: -moz-linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);
|
62 |
+
background: -ms-linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);
|
63 |
+
background: -o-linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);
|
64 |
+
background: linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);
|
65 |
+
|
66 |
+
&:hover {
|
67 |
+
background: linear-gradient(125deg,#3cb0fd 0,#152f8c 140%);
|
68 |
+
}
|
69 |
+
}
|
70 |
+
}
|
71 |
|
72 |
|
73 |
.wftooltip {
|
1801 |
font-weight: normal;
|
1802 |
}
|
1803 |
.wf_clean_cache_wrapper button {
|
1804 |
+
background: linear-gradient(125deg,#eb4d4b 0,#FF9671 130%);
|
1805 |
color: #fff;
|
1806 |
border: none;
|
1807 |
font-weight: 500;
|
admin/partials/woo-feed-manage-list.php
CHANGED
@@ -62,7 +62,7 @@ if ( ( isset( $_GET['feed_created'] ) || isset( $_GET['feed_updated'] ) || isset
|
|
62 |
<hr class="wp-header-end">
|
63 |
<?php WPFFWMessage()->displayMessages(); ?>
|
64 |
<?php woo_feed_progress_bar(); ?>
|
65 |
-
<table class=" widefat fixed">
|
66 |
<thead>
|
67 |
<tr>
|
68 |
<th>
|
@@ -85,7 +85,7 @@ if ( ( isset( $_GET['feed_created'] ) || isset( $_GET['feed_updated'] ) || isset
|
|
85 |
}
|
86 |
?>
|
87 |
</select>
|
88 |
-
<button type="submit" class="button button-primary"><?php esc_html_e( 'Update Interval', 'woo-feed' ); ?></button>
|
89 |
<?php woo_feed_clear_cache_button(); ?>
|
90 |
</form>
|
91 |
</td>
|
62 |
<hr class="wp-header-end">
|
63 |
<?php WPFFWMessage()->displayMessages(); ?>
|
64 |
<?php woo_feed_progress_bar(); ?>
|
65 |
+
<table class="woo_feed_manage_list_table widefat fixed">
|
66 |
<thead>
|
67 |
<tr>
|
68 |
<th>
|
85 |
}
|
86 |
?>
|
87 |
</select>
|
88 |
+
<button type="submit" class="button button-primary wf_update_interval_btn"><?php esc_html_e( 'Update Interval', 'woo-feed' ); ?></button>
|
89 |
<?php woo_feed_clear_cache_button(); ?>
|
90 |
</form>
|
91 |
</td>
|
woo-feed.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: WooCommerce Product Feed
|
11 |
* Plugin URI: https://webappick.com/
|
12 |
* Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
|
13 |
-
* Version: 4.
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
@@ -38,7 +38,7 @@ if ( ! defined( 'WOO_FEED_FREE_VERSION' ) ) {
|
|
38 |
* @var string
|
39 |
* @since 3.1.6
|
40 |
*/
|
41 |
-
define( 'WOO_FEED_FREE_VERSION', '4.
|
42 |
}
|
43 |
|
44 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|
10 |
* Plugin Name: WooCommerce Product Feed
|
11 |
* Plugin URI: https://webappick.com/
|
12 |
* Description: Easily generate woocommerce product feed for any marketing channel like Google Shopping(Merchant), Facebook Remarketing, Bing, eBay & more. Support 100+ Merchants.
|
13 |
+
* Version: 4.2.0
|
14 |
* Author: WebAppick
|
15 |
* Author URI: https://webappick.com/
|
16 |
* License: GPL v2
|
38 |
* @var string
|
39 |
* @since 3.1.6
|
40 |
*/
|
41 |
+
define( 'WOO_FEED_FREE_VERSION', '4.2.0' );
|
42 |
}
|
43 |
|
44 |
if ( ! defined( 'WOO_FEED_FREE_FILE' ) ) {
|