Version Description
- Fix: Never show ads on ajax generated pages
- New: Filter to ignore display conditions for short code generated ads
- New: Announcement for the integration of the video SSP vi.ai
- New: Add filter 'quads_show_ads' to overwrite the default ad visibility conditions
Download this release
Release Info
Developer | ReneHermi |
Plugin | ![]() |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.0 to 1.6.1
- assets/css/quads-admin-all.css +121 -0
- assets/css/quads-admin.css +987 -875
- assets/css/quads-admin.min.css +1 -1
- assets/images/vi_quads_logo.png +0 -0
- assets/images/vi_quads_logo_1.png +0 -0
- includes/admin/admin-actions.php +63 -43
- includes/admin/admin-notices.php +449 -401
- includes/admin/admin-pages.php +83 -85
- includes/admin/settings/display-settings.php +350 -349
- includes/admin/settings/register-settings.php +2160 -2230
- includes/admin/welcome.php +1 -9
- includes/conditions.php +204 -194
- includes/post_types.php +49 -47
- includes/scripts.php +278 -258
- includes/shortcodes.php +133 -133
- includes/template-functions.php +810 -810
- includes/viIntegration.php +96 -0
- quick-adsense-reloaded.php +2 -2
- readme.txt +205 -199
assets/css/quads-admin-all.css
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* QUADS Admin All CSS
|
3 |
+
*
|
4 |
+
* @package QUADS
|
5 |
+
* @subpackage Admin CSS
|
6 |
+
* @copyright Copyright (c) 2017, René Hermenau
|
7 |
+
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
8 |
+
*/
|
9 |
+
|
10 |
+
|
11 |
+
@media (max-width:506px){
|
12 |
+
.quads-banner-columns {
|
13 |
+
display: block !important;
|
14 |
+
}
|
15 |
+
.quads-banner-sidebar-second{
|
16 |
+
width: 100% !important;
|
17 |
+
}
|
18 |
+
}
|
19 |
+
@media (max-width:780px){
|
20 |
+
.quads-banner-wrapper{
|
21 |
+
margin-right:12px !important;
|
22 |
+
}
|
23 |
+
}
|
24 |
+
|
25 |
+
.quads-banner-wrapper{
|
26 |
+
display: flex;
|
27 |
+
flex-direction: column;
|
28 |
+
clear:both;
|
29 |
+
background: #fff;
|
30 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
31 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
32 |
+
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
33 |
+
margin: 5px 5px 2px;
|
34 |
+
margin-right:20px;
|
35 |
+
padding: 1px 12px;
|
36 |
+
}
|
37 |
+
.quads-banner-content {
|
38 |
+
display: flex;
|
39 |
+
flex: 1;
|
40 |
+
color: #000;
|
41 |
+
}
|
42 |
+
.quads-banner-columns{
|
43 |
+
display: flex;
|
44 |
+
flex:1;
|
45 |
+
-ms-flex-align: center;
|
46 |
+
-webkit-align-items: center;
|
47 |
+
-webkit-box-align: center;
|
48 |
+
|
49 |
+
align-items: center;
|
50 |
+
}
|
51 |
+
.quads-banner-main{
|
52 |
+
flex: 1;
|
53 |
+
order: 2;
|
54 |
+
}
|
55 |
+
.quads-banner-sidebar-first{
|
56 |
+
min-width: 160px;
|
57 |
+
width: 13%;
|
58 |
+
order: 1;
|
59 |
+
}
|
60 |
+
.quads-banner-sidebar-second{
|
61 |
+
width: 19%;
|
62 |
+
order: 3;
|
63 |
+
}
|
64 |
+
|
65 |
+
|
66 |
+
.quads-button-primary {
|
67 |
+
display: inline-block;
|
68 |
+
text-decoration: none;
|
69 |
+
font-size: 16px;
|
70 |
+
line-height: 32px;
|
71 |
+
height: 36px;
|
72 |
+
margin: 0;
|
73 |
+
padding: 0 13px 1px;
|
74 |
+
cursor: pointer;
|
75 |
+
border-width: 1px;
|
76 |
+
border-style: solid;
|
77 |
+
-webkit-appearance: none;
|
78 |
+
-webkit-border-radius: 3px;
|
79 |
+
border-radius: 3px;
|
80 |
+
white-space: nowrap;
|
81 |
+
-webkit-box-sizing: border-box;
|
82 |
+
-moz-box-sizing: border-box;
|
83 |
+
box-sizing: border-box;
|
84 |
+
font-weight: bold;
|
85 |
+
}
|
86 |
+
|
87 |
+
.quads-button-primary {
|
88 |
+
background: #0085ba;
|
89 |
+
border-color: #0073aa #006799 #006799;
|
90 |
+
-webkit-box-shadow: 0 1px 0 #006799;
|
91 |
+
box-shadow: 0 1px 0 #006799;
|
92 |
+
color: #fff;
|
93 |
+
text-decoration: none;
|
94 |
+
text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
|
95 |
+
}
|
96 |
+
|
97 |
+
.quads-notice-dismiss {
|
98 |
+
display: inline-block;
|
99 |
+
position: relative;
|
100 |
+
top: 0;
|
101 |
+
right: 1px;
|
102 |
+
border: none;
|
103 |
+
margin: 0;
|
104 |
+
padding: 0px;
|
105 |
+
background: 0 0;
|
106 |
+
color: #72777c;
|
107 |
+
cursor: pointer;
|
108 |
+
}
|
109 |
+
|
110 |
+
.quads-notice-dismiss:before{
|
111 |
+
display: inline-block;
|
112 |
+
background: 0 0;
|
113 |
+
color: #72777c;
|
114 |
+
content: "\f153";
|
115 |
+
font: 400 16px/20px dashicons;
|
116 |
+
speak: none;
|
117 |
+
height: 20px;
|
118 |
+
text-align: center;
|
119 |
+
width: 20px;
|
120 |
+
-webkit-font-smoothing: antialiased;
|
121 |
+
}
|
assets/css/quads-admin.css
CHANGED
@@ -1,875 +1,987 @@
|
|
1 |
-
/**
|
2 |
-
* QUADS Admin CSS
|
3 |
-
*
|
4 |
-
* @package QUADS
|
5 |
-
* @subpackage Admin CSS
|
6 |
-
* @copyright Copyright (c) 2015, René Hermenau
|
7 |
-
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
8 |
-
*/
|
9 |
-
|
10 |
-
.quads-share-button-container{
|
11 |
-
margin: 5px 0;
|
12 |
-
}
|
13 |
-
|
14 |
-
.quads-share-button-container p{
|
15 |
-
margin:0px 0 10px 0;
|
16 |
-
}
|
17 |
-
|
18 |
-
.quads-share-button {
|
19 |
-
display: inline-block;
|
20 |
-
}
|
21 |
-
|
22 |
-
.quads-share-button a{
|
23 |
-
text-decoration:none;
|
24 |
-
}
|
25 |
-
|
26 |
-
.quads-share-button .quads-share {
|
27 |
-
font-family:sans-serif;
|
28 |
-
font-weight:bold;
|
29 |
-
text-decoration:none;
|
30 |
-
text-align:center;
|
31 |
-
}
|
32 |
-
|
33 |
-
|
34 |
-
.quads-share-button .quads-share {
|
35 |
-
-webkit-border-radius:2px;
|
36 |
-
-moz-border-radius:2px;
|
37 |
-
border-radius:2px;
|
38 |
-
color:#FFF;
|
39 |
-
display:inline;
|
40 |
-
font-size:16px;
|
41 |
-
width:40px;
|
42 |
-
padding:4px 8px;
|
43 |
-
}
|
44 |
-
|
45 |
-
.quads-share-button-twitter .quads-share {
|
46 |
-
background-color:#00ABF0;
|
47 |
-
}
|
48 |
-
|
49 |
-
.quads-share-button-facebook .quads-share {
|
50 |
-
background-color:#3b5998;
|
51 |
-
}
|
52 |
-
|
53 |
-
.quads-share-button-googleplus .quads-share {
|
54 |
-
background-color:#F53424;
|
55 |
-
}
|
56 |
-
|
57 |
-
.quads-share-button-twitter .share:active,.quads-share-button-facebook .share:active,.quads-share-button-googleplus .share:active {
|
58 |
-
background-color:#353535;
|
59 |
-
}
|
60 |
-
|
61 |
-
/* Responsive */
|
62 |
-
@media (max-width: 925px) {
|
63 |
-
.quads-share-button .quads-share{
|
64 |
-
font-size:15px;
|
65 |
-
padding: 8px 16px; /* Double the padding */
|
66 |
-
}
|
67 |
-
|
68 |
-
}
|
69 |
-
|
70 |
-
|
71 |
-
/* Input forms */
|
72 |
-
/*.quads-textarea{
|
73 |
-
font-size:11px;
|
74 |
-
}*/
|
75 |
-
.quads-richeditor{
|
76 |
-
font-size:11px;
|
77 |
-
}
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
/* =Add Ons Styles
|
82 |
-
-------------------------------------------------------------- */
|
83 |
-
#quads-add-ons h2 { margin: 0 0 15px; }
|
84 |
-
#quads-add-ons .quadsshare-addons { float: left; margin: 0 15px 15px 0; background: #f0f0f0; border: 1px solid #ccc; width: 320px; padding: 8px; height: 315px; position: relative; }
|
85 |
-
#quads-add-ons .quadsshare-addons h3 { margin: 0 0 8px; font-size: 13px; }
|
86 |
-
#quads-add-ons .quadsshare-addons .button-secondary { position: absolute; bottom: 8px; left: 8px; }
|
87 |
-
/*#quads-add-ons .quadsshare-addons { clear:both; width:100%; }*/
|
88 |
-
#quads-add-ons .quadsshare-addons .third-party { display: none; }
|
89 |
-
|
90 |
-
|
91 |
-
/* System Info page styles
|
92 |
-
-------------------------------------------------------------- */
|
93 |
-
#system-info-textarea { width: 580px; height: 400px; font-family: Menlo, Monaco, monospace; background: none; white-space: pre; overflow: auto; display: block; }
|
94 |
-
|
95 |
-
|
96 |
-
/* General styles
|
97 |
-
-------------------------------------------------------------- */
|
98 |
-
.quads-select-chosen { width: 300px; }
|
99 |
-
|
100 |
-
input.large-text, textarea.large-text {
|
101 |
-
max-width: 600px;
|
102 |
-
}
|
103 |
-
input.medium-text, textarea.medium-text {
|
104 |
-
min-width: 190px;
|
105 |
-
}
|
106 |
-
|
107 |
-
/* CSS for Tabs */
|
108 |
-
|
109 |
-
#quads_tab_container ul {
|
110 |
-
/*height: 200px;*/
|
111 |
-
list-style: none;
|
112 |
-
margin: 0;
|
113 |
-
padding: 0;
|
114 |
-
background: #fff;
|
115 |
-
float: left;
|
116 |
-
padding-top: 0px;
|
117 |
-
/*list-style-type: square;*/
|
118 |
-
}
|
119 |
-
|
120 |
-
#quads_tab_container ul li:first-child.selected-tab {
|
121 |
-
border-top: none;
|
122 |
-
}
|
123 |
-
|
124 |
-
#quads_tab_container ul li a.selected-tab {
|
125 |
-
font-weight: bold;
|
126 |
-
text-decoration: none;
|
127 |
-
}
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
#quads_tab_container .quads-row{
|
132 |
-
padding-top:12px;
|
133 |
-
padding-bottom:12px;
|
134 |
-
}
|
135 |
-
|
136 |
-
|
137 |
-
#quads_tab_container .quads-row label strong, #tab_container .quads-row strong {
|
138 |
-
font-weight: bold;
|
139 |
-
}
|
140 |
-
|
141 |
-
.quads-tabs a {
|
142 |
-
padding:5px;
|
143 |
-
color:#a1a1a1;
|
144 |
-
text-transform: uppercase;
|
145 |
-
}
|
146 |
-
.quads-tabs a strong {
|
147 |
-
font-weight: 700;
|
148 |
-
}
|
149 |
-
|
150 |
-
li.quads-tabs {
|
151 |
-
float:left;
|
152 |
-
margin-left:0px;
|
153 |
-
background-color: #e5e5e5;
|
154 |
-
}
|
155 |
-
|
156 |
-
/*@media only screen and (min-width:400px) {
|
157 |
-
li.quads-tabs {
|
158 |
-
float:left;
|
159 |
-
margin-left:14px;
|
160 |
-
}
|
161 |
-
}*/
|
162 |
-
|
163 |
-
#quads_tab_container > ul > li.quads-tabs.active {
|
164 |
-
background-color:#fff;
|
165 |
-
}
|
166 |
-
#quads_tab_container > ul > li.quads-tabs.active a {
|
167 |
-
color: #83c11f;
|
168 |
-
}
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
/* Layout of admin table and rows
|
173 |
-
*/
|
174 |
-
|
175 |
-
|
176 |
-
#quads_tab_container .quads-panel-container {
|
177 |
-
background: #FFF;
|
178 |
-
padding:20px;
|
179 |
-
overflow:auto;
|
180 |
-
text-align:left;
|
181 |
-
margin-bottom:10px;
|
182 |
-
max-width: 640px;
|
183 |
-
float: left;
|
184 |
-
clear:both;
|
185 |
-
}
|
186 |
-
|
187 |
-
.form-table{
|
188 |
-
margin-top:-20px;
|
189 |
-
}
|
190 |
-
|
191 |
-
#quads_tab_container .form-table th {
|
192 |
-
vertical-align: top;
|
193 |
-
text-align: left;
|
194 |
-
padding: 20px 10px 20px 0;
|
195 |
-
width: 200px;
|
196 |
-
line-height: 1.3;
|
197 |
-
font-weight: bold;
|
198 |
-
font-size: 14px;
|
199 |
-
color:#484848;
|
200 |
-
width: 30%;
|
201 |
-
}
|
202 |
-
|
203 |
-
/*#quads_tab_container .form-table tr{
|
204 |
-
padding:0px;
|
205 |
-
}*/
|
206 |
-
|
207 |
-
#quads_tab_container .form-table tr {
|
208 |
-
border-bottom: 1px solid #E7E7E7;
|
209 |
-
}
|
210 |
-
|
211 |
-
#quads_tab_container span.description{
|
212 |
-
display: block;
|
213 |
-
font-weight: 400;
|
214 |
-
font-style: normal;
|
215 |
-
font-size: 13px;
|
216 |
-
margin-top: 7px;
|
217 |
-
color:#484848;
|
218 |
-
}
|
219 |
-
|
220 |
-
#quads_tab_container .col-title{
|
221 |
-
font-size: 18px;
|
222 |
-
color:#484848;
|
223 |
-
}
|
224 |
-
|
225 |
-
@media only screen and (max-width:680px) {
|
226 |
-
#quads_tab_container ul {
|
227 |
-
float:none;
|
228 |
-
background: #fff;
|
229 |
-
}
|
230 |
-
#quads_tab_container .form-table tr > th {
|
231 |
-
width:100%;
|
232 |
-
}
|
233 |
-
#quads_tab_container span.description{
|
234 |
-
font-size: 14px;
|
235 |
-
}
|
236 |
-
#quads_tab_container .form-table tr > th, #tab_container .form-table tr > td {
|
237 |
-
padding:10px;
|
238 |
-
}
|
239 |
-
#quads_tab_container .quads-tabs a{
|
240 |
-
text-align: left;
|
241 |
-
}
|
242 |
-
#quads_tab_container li.quads-tabs {
|
243 |
-
float:none;
|
244 |
-
margin-left:0px;
|
245 |
-
}
|
246 |
-
}
|
247 |
-
|
248 |
-
#quads_tab_container ul li.quads-tabs {
|
249 |
-
margin-bottom:0px;
|
250 |
-
}
|
251 |
-
|
252 |
-
#quads_tab_container ul li.quads-tabs a {
|
253 |
-
display: block;
|
254 |
-
padding:10px 10px 10px 10px;
|
255 |
-
text-decoration: none;
|
256 |
-
font-weight: bold;
|
257 |
-
}
|
258 |
-
#quads_tab_container ul li.quads-tabs a:hover {
|
259 |
-
color:#383838;
|
260 |
-
}
|
261 |
-
#quads_tab_container ul li.quads-tabs a.active {
|
262 |
-
text-decoration: underline;
|
263 |
-
}
|
264 |
-
|
265 |
-
|
266 |
-
#quads_tab_container table tbody tr:nth-child(1) > th > div {
|
267 |
-
font-size: 20px;
|
268 |
-
}
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
/* End layout of admin table and rows
|
273 |
-
*/
|
274 |
-
#quadstabcontainer > .quadstabs {
|
275 |
-
background-color: #ffffff;
|
276 |
-
}
|
277 |
-
|
278 |
-
#quadstabcontainer ul .active {
|
279 |
-
background-color: #00adef;
|
280 |
-
color: white;
|
281 |
-
border-bottom-color: #0098D2;
|
282 |
-
}
|
283 |
-
|
284 |
-
#quadstabcontainer ul .active:hover {
|
285 |
-
background-color: #00A4E2;
|
286 |
-
color: white;
|
287 |
-
border-bottom-color: #0098D2;
|
288 |
-
}
|
289 |
-
|
290 |
-
#quadstabcontainer ul li a {
|
291 |
-
padding: 10px 14px 10px 14px;
|
292 |
-
background-color: #f3f3f3
|
293 |
-
|
294 |
-
}
|
295 |
-
|
296 |
-
#quadstabcontainer .quadstab-container {
|
297 |
-
border: 0px solid #ececec;
|
298 |
-
}
|
299 |
-
|
300 |
-
.quads-quote-docs {
|
301 |
-
font-family:Courier New,Courier,Fixed;
|
302 |
-
color:#050;
|
303 |
-
}
|
304 |
-
|
305 |
-
.quads-desc{
|
306 |
-
display:block;
|
307 |
-
font-style:italic;
|
308 |
-
padding-top:10px;
|
309 |
-
}
|
310 |
-
|
311 |
-
.quads-postbox {
|
312 |
-
padding:10px;
|
313 |
-
position: relative;
|
314 |
-
min-width: 255px;
|
315 |
-
border: 1px solid #e5e5e5;
|
316 |
-
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
317 |
-
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
318 |
-
background: #fff;
|
319 |
-
margin-bottom:20px;
|
320 |
-
}
|
321 |
-
|
322 |
-
.nav-tab-active{
|
323 |
-
background-color: white;
|
324 |
-
border-bottom:0px;
|
325 |
-
}
|
326 |
-
|
327 |
-
/*.wp-admin .quads-align-input{
|
328 |
-
padding: 0px;
|
329 |
-
line-height: 23px;
|
330 |
-
height: 24px;
|
331 |
-
vertical-align: top;
|
332 |
-
}*/
|
333 |
-
|
334 |
-
|
335 |
-
#quads-add-ons {
|
336 |
-
padding: 20px;
|
337 |
-
}
|
338 |
-
.quads-toggle {
|
339 |
-
position: absolute;
|
340 |
-
right: 0px;
|
341 |
-
top: 0px;
|
342 |
-
}
|
343 |
-
|
344 |
-
.quads-box-close .quads-close-open-icon {
|
345 |
-
background-position: 0px -38px;
|
346 |
-
}
|
347 |
-
|
348 |
-
.quads-close-open-icon {
|
349 |
-
width: 38px;
|
350 |
-
height: 38px;
|
351 |
-
background: #f4f4f4 url("../images/arrow-close.png") repeat-y;
|
352 |
-
background-position: 0px 0px;
|
353 |
-
}
|
354 |
-
.quads-ad-toggle-header {
|
355 |
-
position: relative;
|
356 |
-
background-color: #f4f4f4;
|
357 |
-
margin-bottom: 2px;
|
358 |
-
padding: 10px 10px 10px 15px;
|
359 |
-
-moz-user-select: -moz-none;
|
360 |
-
-khtml-user-select: none;
|
361 |
-
-webkit-user-select: none;
|
362 |
-
-o-user-select: none;
|
363 |
-
user-select: none;
|
364 |
-
cursor: pointer !important;
|
365 |
-
min-height: 20px;
|
366 |
-
}
|
367 |
-
|
368 |
-
.quads-ad-toggle-container{
|
369 |
-
padding:20px;
|
370 |
-
background-color: #f4f4f4;
|
371 |
-
}
|
372 |
-
|
373 |
-
.quads-toogle-title{
|
374 |
-
font-size:16px;
|
375 |
-
font-weight: bold;
|
376 |
-
}
|
377 |
-
|
378 |
-
.quads-advanced-description label{
|
379 |
-
float:left;
|
380 |
-
width:215px;
|
381 |
-
font-size: 12px;
|
382 |
-
font-weight: 600;
|
383 |
-
text-transform: uppercase;
|
384 |
-
}
|
385 |
-
|
386 |
-
.quads-advanced-ad-box{
|
387 |
-
clear: both;
|
388 |
-
margin-top:20px;
|
389 |
-
margin-bottom:20px;
|
390 |
-
}
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
.adsense-size-title {
|
395 |
-
margin-right: 0px;
|
396 |
-
float: left;
|
397 |
-
line-height: 32px;
|
398 |
-
margin-left: 14px;
|
399 |
-
min-width: 100px;
|
400 |
-
font-weight: 600;
|
401 |
-
font-size: 12px;
|
402 |
-
text-transform: uppercase;
|
403 |
-
}
|
404 |
-
|
405 |
-
.quads-select-style-overwrite {
|
406 |
-
border: 1px solid #e6e6e6;
|
407 |
-
width: 150px;
|
408 |
-
overflow: hidden;
|
409 |
-
background: #ffffff url("../images/box_arrow.png") repeat-y 120px 0px;
|
410 |
-
margin: 0px 0px 5px 0px;
|
411 |
-
}
|
412 |
-
.quads-select-style-overwrite select {
|
413 |
-
width:150px;
|
414 |
-
}
|
415 |
-
|
416 |
-
/*.quads-select{
|
417 |
-
max-width:100px;
|
418 |
-
}*/
|
419 |
-
|
420 |
-
.quads-size-input {
|
421 |
-
position: relative;
|
422 |
-
top: -1px;
|
423 |
-
width: 110%;
|
424 |
-
border: none;
|
425 |
-
box-shadow: none;
|
426 |
-
background: transparent;
|
427 |
-
background-image: none;
|
428 |
-
-webkit-appearance: none;
|
429 |
-
font-family: 'Open Sans', arial, sans-serif;
|
430 |
-
color: #555555;
|
431 |
-
font-size: 12px;
|
432 |
-
/*margin-left:5px;*/
|
433 |
-
}
|
434 |
-
|
435 |
-
.quads-pro-overlay{
|
436 |
-
height: 200px;
|
437 |
-
}
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
.quads-license-error-notice,
|
442 |
-
.quads-license-expires-soon-notice {
|
443 |
-
background-color: #fff;
|
444 |
-
padding: 10px;
|
445 |
-
border-left: 4px solid #7ad03a;
|
446 |
-
overflow: auto;
|
447 |
-
-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
448 |
-
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
449 |
-
border: 1px solid #ECECEC;
|
450 |
-
border-radius: 3px;
|
451 |
-
}
|
452 |
-
.quads-license-error-notice a {
|
453 |
-
color: #0097df;
|
454 |
-
text-decoration: underline;
|
455 |
-
}
|
456 |
-
.quads-license-error-notice { border-left: 4px solid #dd3d36; }
|
457 |
-
.quads-license-lifetime-notice,
|
458 |
-
.quads-license-expiration-date-notice,
|
459 |
-
.quads-license-null { padding: 0 0 0 0px; }
|
460 |
-
.quads-license-lifetime-notice .quads-license-data p,
|
461 |
-
.quads-license-expiration-date-notice .quads-license-data p { color: #666; font-size: 14px; font-style: italic; margin: 4px 0 0; }
|
462 |
-
|
463 |
-
#quads_settingslicenses_header-nav{
|
464 |
-
display:none;
|
465 |
-
}
|
466 |
-
|
467 |
-
#quads_settingslicenses_header{
|
468 |
-
max-width:640px;
|
469 |
-
}
|
470 |
-
|
471 |
-
#quads_settingslicenses_header .quads-row.th{
|
472 |
-
min-width:250px;
|
473 |
-
}
|
474 |
-
|
475 |
-
.quads-notice{
|
476 |
-
background: #fff;
|
477 |
-
border-left: 4px solid #46b450;
|
478 |
-
-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
479 |
-
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
480 |
-
margin: 5px 15px 2px;
|
481 |
-
padding: 1px 12px;
|
482 |
-
}
|
483 |
-
|
484 |
-
.quads_admin h2.nav-tab-wrapper{
|
485 |
-
border:0px;
|
486 |
-
}
|
487 |
-
|
488 |
-
.quads_admin .nav-tab{
|
489 |
-
border:0px;
|
490 |
-
text-transform: uppercase;
|
491 |
-
color: #a1a1a1;
|
492 |
-
font-weight: 700;
|
493 |
-
}
|
494 |
-
|
495 |
-
.quads-h1 {
|
496 |
-
font-size: 2.75em;
|
497 |
-
margin-bottom: 1.35rem;
|
498 |
-
font-size: 2.5em;
|
499 |
-
line-height: 3.68rem;
|
500 |
-
letter-spacing: normal;
|
501 |
-
}
|
502 |
-
|
503 |
-
.quads-h2 {
|
504 |
-
margin-top:0px;
|
505 |
-
margin-bottom: 1.2rem;
|
506 |
-
font-size: 30px;
|
507 |
-
line-height: 2.5rem;
|
508 |
-
}
|
509 |
-
|
510 |
-
.quads-heading-pro{
|
511 |
-
color: #83c11f;
|
512 |
-
font-weight: bold;
|
513 |
-
}
|
514 |
-
|
515 |
-
.quads-button.green {
|
516 |
-
display:inline-block;
|
517 |
-
background-color: #83c11f;
|
518 |
-
padding:10px;
|
519 |
-
min-width: 170px;
|
520 |
-
color: white;
|
521 |
-
font-size: 16px;
|
522 |
-
text-decoration: none;
|
523 |
-
text-align:center;
|
524 |
-
margin-top:20px;
|
525 |
-
}
|
526 |
-
|
527 |
-
#quads-add-ons .quads-footer {
|
528 |
-
clear:both;
|
529 |
-
margin-top:20px;
|
530 |
-
font-style: italic;
|
531 |
-
}
|
532 |
-
|
533 |
-
#quads-add-ons li {
|
534 |
-
font-size:18px;
|
535 |
-
line-height: 29px;
|
536 |
-
position: relative;
|
537 |
-
padding-left: 23px;
|
538 |
-
list-style: none!important;
|
539 |
-
}
|
540 |
-
|
541 |
-
#quads-add-ons li:before {
|
542 |
-
width: 1em;
|
543 |
-
height: 100%;
|
544 |
-
background: url(data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E) left .4em no-repeat;
|
545 |
-
background-size: contain;
|
546 |
-
content: "";
|
547 |
-
position: absolute;
|
548 |
-
top: 0;
|
549 |
-
left: 0;
|
550 |
-
color: #77b227;
|
551 |
-
}
|
552 |
-
|
553 |
-
.adsense_admin_header {
|
554 |
-
font-size: 14px;
|
555 |
-
font-weight: 500;
|
556 |
-
}
|
557 |
-
|
558 |
-
#quads-adsense-bg-div{
|
559 |
-
position: fixed;
|
560 |
-
top: 0;
|
561 |
-
left: 0;
|
562 |
-
width: 100%;
|
563 |
-
height: 100%;
|
564 |
-
background-color: rgba(0, 0, 0, 0.65);
|
565 |
-
z-index: 250000;
|
566 |
-
}
|
567 |
-
|
568 |
-
#quads-adsense-container {
|
569 |
-
text-align: center;
|
570 |
-
width: 480px;
|
571 |
-
margin: 85px auto 0 auto;
|
572 |
-
background-color: #fff;
|
573 |
-
padding: 2%;
|
574 |
-
border-radius: 2px;
|
575 |
-
}
|
576 |
-
#quads-adsense-container h3{
|
577 |
-
margin-top:0px;
|
578 |
-
}
|
579 |
-
|
580 |
-
#quads-adsense-container textarea{
|
581 |
-
width: 100%;
|
582 |
-
}
|
583 |
-
|
584 |
-
|
585 |
-
.quads-ad-toggle-container textarea{
|
586 |
-
width: 100%;
|
587 |
-
}
|
588 |
-
|
589 |
-
.quads-ad-toggle-container input{
|
590 |
-
margin-top: 7px;
|
591 |
-
margin-bottom:10px;
|
592 |
-
}
|
593 |
-
|
594 |
-
.quads-adsense-code label, input{
|
595 |
-
margin-right:2px;
|
596 |
-
}
|
597 |
-
|
598 |
-
#quads_settings\5b ad2\5d \5b g_data_ad_client\5d {
|
599 |
-
width:200px;
|
600 |
-
}
|
601 |
-
|
602 |
-
.quads-ad-toggle-container label {
|
603 |
-
display: inline-block;
|
604 |
-
margin-right:2px;
|
605 |
-
margin-top:-3px;
|
606 |
-
}
|
607 |
-
|
608 |
-
/*.quads-adsense-code > label:nth-child(1){
|
609 |
-
min-width: 74px;
|
610 |
-
}*/
|
611 |
-
|
612 |
-
.quads_adsense_code .quads-add-adsense {
|
613 |
-
margin:20px;
|
614 |
-
margin-left:0px;
|
615 |
-
margin-right:5px;
|
616 |
-
}
|
617 |
-
|
618 |
-
.quads-label-left {
|
619 |
-
min-width: 71px;
|
620 |
-
}
|
621 |
-
|
622 |
-
#quads-label-Type {
|
623 |
-
min-width: 67px;
|
624 |
-
}
|
625 |
-
|
626 |
-
.quads-medium-size{
|
627 |
-
width: 110px;
|
628 |
-
}
|
629 |
-
|
630 |
-
#quads-msg{
|
631 |
-
display:none;
|
632 |
-
margin: 5px;
|
633 |
-
background-color: #c55c5c;
|
634 |
-
color: white;
|
635 |
-
}
|
636 |
-
|
637 |
-
.quads-success-modal {
|
638 |
-
display: block;
|
639 |
-
position: fixed;
|
640 |
-
top: 45%;
|
641 |
-
left: 25%;
|
642 |
-
width: 200px;
|
643 |
-
height: auto;
|
644 |
-
padding: 5px 20px;
|
645 |
-
z-index:1002;
|
646 |
-
overflow: auto;
|
647 |
-
}
|
648 |
-
.quads-loader {
|
649 |
-
display: block;
|
650 |
-
position: fixed;
|
651 |
-
top: 45%;
|
652 |
-
left: 25%;
|
653 |
-
width: 200px;
|
654 |
-
height: auto;
|
655 |
-
padding: 5px 20px;
|
656 |
-
z-index:1002;
|
657 |
-
overflow: auto;
|
658 |
-
}
|
659 |
-
|
660 |
-
.quads-form-table{
|
661 |
-
width: 100%;
|
662 |
-
}
|
663 |
-
|
664 |
-
.quads-left-box{
|
665 |
-
width:45%;
|
666 |
-
min-height:100px;
|
667 |
-
float:left;
|
668 |
-
line-height: 35px;
|
669 |
-
min-width: 300px;
|
670 |
-
}
|
671 |
-
|
672 |
-
@media screen and (max-width:700px){
|
673 |
-
.adsense-size-title {
|
674 |
-
margin-left: 0px;
|
675 |
-
}
|
676 |
-
.quads-left-box{
|
677 |
-
width:45%;
|
678 |
-
min-height:100px;
|
679 |
-
float:none;
|
680 |
-
line-height: 35px;
|
681 |
-
min-width: 300px;
|
682 |
-
}
|
683 |
-
|
684 |
-
.quads-style img{
|
685 |
-
max-width: 50px;
|
686 |
-
}
|
687 |
-
|
688 |
-
}
|
689 |
-
|
690 |
-
.adsense_admin_header ul li{
|
691 |
-
margin-top:2px;
|
692 |
-
margin-left:20px;
|
693 |
-
list-style-type: square;
|
694 |
-
}
|
695 |
-
|
696 |
-
.quads-helper {
|
697 |
-
border-radius: 50%;
|
698 |
-
border: 2px solid #fff;
|
699 |
-
background-color: #83c11f;
|
700 |
-
width: 15px;
|
701 |
-
height: 15px;
|
702 |
-
display: inline-block;
|
703 |
-
position: relative;
|
704 |
-
top: 4px;
|
705 |
-
margin-top: -4px;
|
706 |
-
cursor: pointer;
|
707 |
-
margin-left: 2px;
|
708 |
-
}
|
709 |
-
|
710 |
-
.quads-helper:after {
|
711 |
-
height: 20px;
|
712 |
-
font-family: sans-serif;
|
713 |
-
content: "?";
|
714 |
-
color: #fff;
|
715 |
-
font-size: 11px;
|
716 |
-
font-weight: bold;
|
717 |
-
left: 4px;
|
718 |
-
position: absolute;
|
719 |
-
margin-top: -10px;
|
720 |
-
}
|
721 |
-
|
722 |
-
.quads-general-helper:after {
|
723 |
-
height: 20px;
|
724 |
-
font-family: sans-serif;
|
725 |
-
content: "?";
|
726 |
-
color: #fff;
|
727 |
-
font-size: 11px;
|
728 |
-
font-weight: bold;
|
729 |
-
left: 4px;
|
730 |
-
position: absolute;
|
731 |
-
margin-top: -2px;
|
732 |
-
}
|
733 |
-
.quads-general-helper {
|
734 |
-
border-radius: 50%;
|
735 |
-
border: 2px solid #fff;
|
736 |
-
background-color: #83c11f;
|
737 |
-
width: 15px;
|
738 |
-
height: 15px;
|
739 |
-
display: inline-block;
|
740 |
-
position: relative;
|
741 |
-
top: 4px;
|
742 |
-
margin-top: -4px;
|
743 |
-
cursor: pointer;
|
744 |
-
margin-left: 2px;
|
745 |
-
}
|
746 |
-
|
747 |
-
.quads-message{
|
748 |
-
display:block;
|
749 |
-
padding: 10px;
|
750 |
-
border: 1px solid #FBFBFB;
|
751 |
-
border-radius: 2px;
|
752 |
-
background-color: #F8F8F8;
|
753 |
-
position: absolute;
|
754 |
-
max-width: 500px;
|
755 |
-
z-index: 9999;
|
756 |
-
display: none;
|
757 |
-
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
758 |
-
font-weight: normal;
|
759 |
-
line-height: 20px;
|
760 |
-
text-transform: none;
|
761 |
-
font-size: 14px;
|
762 |
-
}
|
763 |
-
|
764 |
-
#quads-pro-hover{
|
765 |
-
background-color: #83c11f;
|
766 |
-
padding:20px;
|
767 |
-
min-width: 150px;
|
768 |
-
color:white;
|
769 |
-
display: block;
|
770 |
-
position: relative;
|
771 |
-
margin-top: -100px;
|
772 |
-
margin-left: 50%;
|
773 |
-
}
|
774 |
-
|
775 |
-
#quads-pro-hover-background{
|
776 |
-
width: 100%; height:100%;background:rgba(0,0,0,0.6);
|
777 |
-
}
|
778 |
-
|
779 |
-
#quads-open-toggle{
|
780 |
-
clear: both;
|
781 |
-
float:left;
|
782 |
-
margin-top:10px;
|
783 |
-
}
|
784 |
-
|
785 |
-
#quads_settingsadsense_header input[type="number"].small-text{
|
786 |
-
width: 55px;
|
787 |
-
}
|
788 |
-
|
789 |
-
.quads_adsense_code input.quads-bggrey {
|
790 |
-
background-color: whitesmoke;
|
791 |
-
color: #939393;
|
792 |
-
}
|
793 |
-
|
794 |
-
.quads-amp-code{
|
795 |
-
color: #939393;
|
796 |
-
height: 130px;
|
797 |
-
}
|
798 |
-
|
799 |
-
.quads-chosen-select .chosen-choices li.search-field input{
|
800 |
-
min-height: 25px;
|
801 |
-
}
|
802 |
-
|
803 |
-
|
804 |
-
#quads-validate{
|
805 |
-
display: block;
|
806 |
-
margin-left: 2px;
|
807 |
-
margin-bottom: 20px;
|
808 |
-
font-weight: bold;
|
809 |
-
clear: both;
|
810 |
-
}
|
811 |
-
|
812 |
-
@font-face {
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
}
|
817 |
-
#quads-add-new-ad:before {
|
818 |
-
font-family: 'quads';
|
819 |
-
content: '\e801';
|
820 |
-
text-decoration: none;
|
821 |
-
margin-right:5px;
|
822 |
-
color: #383838;
|
823 |
-
}
|
824 |
-
|
825 |
-
#quads-add-new-ad{
|
826 |
-
margin-left: 3px;
|
827 |
-
margin-top: 5px;
|
828 |
-
display: block;
|
829 |
-
margin-bottom: 20px;
|
830 |
-
text-decoration: none;
|
831 |
-
font-size: 14px;
|
832 |
-
font-weight: 600;
|
833 |
-
color: #383838;
|
834 |
-
}
|
835 |
-
|
836 |
-
#quads-submit-button{
|
837 |
-
z-index: 999999;
|
838 |
-
}
|
839 |
-
|
840 |
-
p.submit{
|
841 |
-
float:left;
|
842 |
-
padding-top:0px;
|
843 |
-
padding-bottom:0px;
|
844 |
-
}
|
845 |
-
|
846 |
-
.quads-delete-ad{
|
847 |
-
clear:both;
|
848 |
-
display:block;
|
849 |
-
//background: url('../images/remove-icon.png');
|
850 |
-
//background-size: 20px 20px;
|
851 |
-
//background-repeat: no-repeat;
|
852 |
-
//height: 20px;
|
853 |
-
//padding-left:30px;
|
854 |
-
margin-right:5px;
|
855 |
-
font-size: 14px;
|
856 |
-
font-weight: 600;
|
857 |
-
text-decoration: none;
|
858 |
-
color: #383838;
|
859 |
-
}
|
860 |
-
.quads-delete-ad:before{
|
861 |
-
font-family: 'quads';
|
862 |
-
content: '\e800';
|
863 |
-
margin-right:5px;
|
864 |
-
color: #383838;
|
865 |
-
}
|
866 |
-
|
867 |
-
#backup-settings-textarea{
|
868 |
-
width: 580px;
|
869 |
-
height: 400px;
|
870 |
-
font-family: Menlo, Monaco, monospace;
|
871 |
-
background: none;
|
872 |
-
white-space: normal;
|
873 |
-
overflow: auto;
|
874 |
-
display: block;
|
875 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* QUADS Admin CSS
|
3 |
+
*
|
4 |
+
* @package QUADS
|
5 |
+
* @subpackage Admin CSS
|
6 |
+
* @copyright Copyright (c) 2015, René Hermenau
|
7 |
+
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
8 |
+
*/
|
9 |
+
|
10 |
+
.quads-share-button-container{
|
11 |
+
margin: 5px 0;
|
12 |
+
}
|
13 |
+
|
14 |
+
.quads-share-button-container p{
|
15 |
+
margin:0px 0 10px 0;
|
16 |
+
}
|
17 |
+
|
18 |
+
.quads-share-button {
|
19 |
+
display: inline-block;
|
20 |
+
}
|
21 |
+
|
22 |
+
.quads-share-button a{
|
23 |
+
text-decoration:none;
|
24 |
+
}
|
25 |
+
|
26 |
+
.quads-share-button .quads-share {
|
27 |
+
font-family:sans-serif;
|
28 |
+
font-weight:bold;
|
29 |
+
text-decoration:none;
|
30 |
+
text-align:center;
|
31 |
+
}
|
32 |
+
|
33 |
+
|
34 |
+
.quads-share-button .quads-share {
|
35 |
+
-webkit-border-radius:2px;
|
36 |
+
-moz-border-radius:2px;
|
37 |
+
border-radius:2px;
|
38 |
+
color:#FFF;
|
39 |
+
display:inline;
|
40 |
+
font-size:16px;
|
41 |
+
width:40px;
|
42 |
+
padding:4px 8px;
|
43 |
+
}
|
44 |
+
|
45 |
+
.quads-share-button-twitter .quads-share {
|
46 |
+
background-color:#00ABF0;
|
47 |
+
}
|
48 |
+
|
49 |
+
.quads-share-button-facebook .quads-share {
|
50 |
+
background-color:#3b5998;
|
51 |
+
}
|
52 |
+
|
53 |
+
.quads-share-button-googleplus .quads-share {
|
54 |
+
background-color:#F53424;
|
55 |
+
}
|
56 |
+
|
57 |
+
.quads-share-button-twitter .share:active,.quads-share-button-facebook .share:active,.quads-share-button-googleplus .share:active {
|
58 |
+
background-color:#353535;
|
59 |
+
}
|
60 |
+
|
61 |
+
/* Responsive */
|
62 |
+
@media (max-width: 925px) {
|
63 |
+
.quads-share-button .quads-share{
|
64 |
+
font-size:15px;
|
65 |
+
padding: 8px 16px; /* Double the padding */
|
66 |
+
}
|
67 |
+
|
68 |
+
}
|
69 |
+
|
70 |
+
|
71 |
+
/* Input forms */
|
72 |
+
/*.quads-textarea{
|
73 |
+
font-size:11px;
|
74 |
+
}*/
|
75 |
+
.quads-richeditor{
|
76 |
+
font-size:11px;
|
77 |
+
}
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
/* =Add Ons Styles
|
82 |
+
-------------------------------------------------------------- */
|
83 |
+
#quads-add-ons h2 { margin: 0 0 15px; }
|
84 |
+
#quads-add-ons .quadsshare-addons { float: left; margin: 0 15px 15px 0; background: #f0f0f0; border: 1px solid #ccc; width: 320px; padding: 8px; height: 315px; position: relative; }
|
85 |
+
#quads-add-ons .quadsshare-addons h3 { margin: 0 0 8px; font-size: 13px; }
|
86 |
+
#quads-add-ons .quadsshare-addons .button-secondary { position: absolute; bottom: 8px; left: 8px; }
|
87 |
+
/*#quads-add-ons .quadsshare-addons { clear:both; width:100%; }*/
|
88 |
+
#quads-add-ons .quadsshare-addons .third-party { display: none; }
|
89 |
+
|
90 |
+
|
91 |
+
/* System Info page styles
|
92 |
+
-------------------------------------------------------------- */
|
93 |
+
#system-info-textarea { width: 580px; height: 400px; font-family: Menlo, Monaco, monospace; background: none; white-space: pre; overflow: auto; display: block; }
|
94 |
+
|
95 |
+
|
96 |
+
/* General styles
|
97 |
+
-------------------------------------------------------------- */
|
98 |
+
.quads-select-chosen { width: 300px; }
|
99 |
+
|
100 |
+
input.large-text, textarea.large-text {
|
101 |
+
max-width: 600px;
|
102 |
+
}
|
103 |
+
input.medium-text, textarea.medium-text {
|
104 |
+
min-width: 190px;
|
105 |
+
}
|
106 |
+
|
107 |
+
/* CSS for Tabs */
|
108 |
+
|
109 |
+
#quads_tab_container ul {
|
110 |
+
/*height: 200px;*/
|
111 |
+
list-style: none;
|
112 |
+
margin: 0;
|
113 |
+
padding: 0;
|
114 |
+
background: #fff;
|
115 |
+
float: left;
|
116 |
+
padding-top: 0px;
|
117 |
+
/*list-style-type: square;*/
|
118 |
+
}
|
119 |
+
|
120 |
+
#quads_tab_container ul li:first-child.selected-tab {
|
121 |
+
border-top: none;
|
122 |
+
}
|
123 |
+
|
124 |
+
#quads_tab_container ul li a.selected-tab {
|
125 |
+
font-weight: bold;
|
126 |
+
text-decoration: none;
|
127 |
+
}
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
#quads_tab_container .quads-row{
|
132 |
+
padding-top:12px;
|
133 |
+
padding-bottom:12px;
|
134 |
+
}
|
135 |
+
|
136 |
+
|
137 |
+
#quads_tab_container .quads-row label strong, #tab_container .quads-row strong {
|
138 |
+
font-weight: bold;
|
139 |
+
}
|
140 |
+
|
141 |
+
.quads-tabs a {
|
142 |
+
padding:5px;
|
143 |
+
color:#a1a1a1;
|
144 |
+
text-transform: uppercase;
|
145 |
+
}
|
146 |
+
.quads-tabs a strong {
|
147 |
+
font-weight: 700;
|
148 |
+
}
|
149 |
+
|
150 |
+
li.quads-tabs {
|
151 |
+
float:left;
|
152 |
+
margin-left:0px;
|
153 |
+
background-color: #e5e5e5;
|
154 |
+
}
|
155 |
+
|
156 |
+
/*@media only screen and (min-width:400px) {
|
157 |
+
li.quads-tabs {
|
158 |
+
float:left;
|
159 |
+
margin-left:14px;
|
160 |
+
}
|
161 |
+
}*/
|
162 |
+
|
163 |
+
#quads_tab_container > ul > li.quads-tabs.active {
|
164 |
+
background-color:#fff;
|
165 |
+
}
|
166 |
+
#quads_tab_container > ul > li.quads-tabs.active a {
|
167 |
+
color: #83c11f;
|
168 |
+
}
|
169 |
+
|
170 |
+
|
171 |
+
|
172 |
+
/* Layout of admin table and rows
|
173 |
+
*/
|
174 |
+
|
175 |
+
|
176 |
+
#quads_tab_container .quads-panel-container {
|
177 |
+
background: #FFF;
|
178 |
+
padding:20px;
|
179 |
+
overflow:auto;
|
180 |
+
text-align:left;
|
181 |
+
margin-bottom:10px;
|
182 |
+
max-width: 640px;
|
183 |
+
float: left;
|
184 |
+
clear:both;
|
185 |
+
}
|
186 |
+
|
187 |
+
.form-table{
|
188 |
+
margin-top:-20px;
|
189 |
+
}
|
190 |
+
|
191 |
+
#quads_tab_container .form-table th {
|
192 |
+
vertical-align: top;
|
193 |
+
text-align: left;
|
194 |
+
padding: 20px 10px 20px 0;
|
195 |
+
width: 200px;
|
196 |
+
line-height: 1.3;
|
197 |
+
font-weight: bold;
|
198 |
+
font-size: 14px;
|
199 |
+
color:#484848;
|
200 |
+
width: 30%;
|
201 |
+
}
|
202 |
+
|
203 |
+
/*#quads_tab_container .form-table tr{
|
204 |
+
padding:0px;
|
205 |
+
}*/
|
206 |
+
|
207 |
+
#quads_tab_container .form-table tr {
|
208 |
+
border-bottom: 1px solid #E7E7E7;
|
209 |
+
}
|
210 |
+
|
211 |
+
#quads_tab_container span.description{
|
212 |
+
display: block;
|
213 |
+
font-weight: 400;
|
214 |
+
font-style: normal;
|
215 |
+
font-size: 13px;
|
216 |
+
margin-top: 7px;
|
217 |
+
color:#484848;
|
218 |
+
}
|
219 |
+
|
220 |
+
#quads_tab_container .col-title{
|
221 |
+
font-size: 18px;
|
222 |
+
color:#484848;
|
223 |
+
}
|
224 |
+
|
225 |
+
@media only screen and (max-width:680px) {
|
226 |
+
#quads_tab_container ul {
|
227 |
+
float:none;
|
228 |
+
background: #fff;
|
229 |
+
}
|
230 |
+
#quads_tab_container .form-table tr > th {
|
231 |
+
width:100%;
|
232 |
+
}
|
233 |
+
#quads_tab_container span.description{
|
234 |
+
font-size: 14px;
|
235 |
+
}
|
236 |
+
#quads_tab_container .form-table tr > th, #tab_container .form-table tr > td {
|
237 |
+
padding:10px;
|
238 |
+
}
|
239 |
+
#quads_tab_container .quads-tabs a{
|
240 |
+
text-align: left;
|
241 |
+
}
|
242 |
+
#quads_tab_container li.quads-tabs {
|
243 |
+
float:none;
|
244 |
+
margin-left:0px;
|
245 |
+
}
|
246 |
+
}
|
247 |
+
|
248 |
+
#quads_tab_container ul li.quads-tabs {
|
249 |
+
margin-bottom:0px;
|
250 |
+
}
|
251 |
+
|
252 |
+
#quads_tab_container ul li.quads-tabs a {
|
253 |
+
display: block;
|
254 |
+
padding:10px 10px 10px 10px;
|
255 |
+
text-decoration: none;
|
256 |
+
font-weight: bold;
|
257 |
+
}
|
258 |
+
#quads_tab_container ul li.quads-tabs a:hover {
|
259 |
+
color:#383838;
|
260 |
+
}
|
261 |
+
#quads_tab_container ul li.quads-tabs a.active {
|
262 |
+
text-decoration: underline;
|
263 |
+
}
|
264 |
+
|
265 |
+
|
266 |
+
#quads_tab_container table tbody tr:nth-child(1) > th > div {
|
267 |
+
font-size: 20px;
|
268 |
+
}
|
269 |
+
|
270 |
+
|
271 |
+
|
272 |
+
/* End layout of admin table and rows
|
273 |
+
*/
|
274 |
+
#quadstabcontainer > .quadstabs {
|
275 |
+
background-color: #ffffff;
|
276 |
+
}
|
277 |
+
|
278 |
+
#quadstabcontainer ul .active {
|
279 |
+
background-color: #00adef;
|
280 |
+
color: white;
|
281 |
+
border-bottom-color: #0098D2;
|
282 |
+
}
|
283 |
+
|
284 |
+
#quadstabcontainer ul .active:hover {
|
285 |
+
background-color: #00A4E2;
|
286 |
+
color: white;
|
287 |
+
border-bottom-color: #0098D2;
|
288 |
+
}
|
289 |
+
|
290 |
+
#quadstabcontainer ul li a {
|
291 |
+
padding: 10px 14px 10px 14px;
|
292 |
+
background-color: #f3f3f3
|
293 |
+
|
294 |
+
}
|
295 |
+
|
296 |
+
#quadstabcontainer .quadstab-container {
|
297 |
+
border: 0px solid #ececec;
|
298 |
+
}
|
299 |
+
|
300 |
+
.quads-quote-docs {
|
301 |
+
font-family:Courier New,Courier,Fixed;
|
302 |
+
color:#050;
|
303 |
+
}
|
304 |
+
|
305 |
+
.quads-desc{
|
306 |
+
display:block;
|
307 |
+
font-style:italic;
|
308 |
+
padding-top:10px;
|
309 |
+
}
|
310 |
+
|
311 |
+
.quads-postbox {
|
312 |
+
padding:10px;
|
313 |
+
position: relative;
|
314 |
+
min-width: 255px;
|
315 |
+
border: 1px solid #e5e5e5;
|
316 |
+
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
317 |
+
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
318 |
+
background: #fff;
|
319 |
+
margin-bottom:20px;
|
320 |
+
}
|
321 |
+
|
322 |
+
.nav-tab-active{
|
323 |
+
background-color: white;
|
324 |
+
border-bottom:0px;
|
325 |
+
}
|
326 |
+
|
327 |
+
/*.wp-admin .quads-align-input{
|
328 |
+
padding: 0px;
|
329 |
+
line-height: 23px;
|
330 |
+
height: 24px;
|
331 |
+
vertical-align: top;
|
332 |
+
}*/
|
333 |
+
|
334 |
+
|
335 |
+
#quads-add-ons {
|
336 |
+
padding: 20px;
|
337 |
+
}
|
338 |
+
.quads-toggle {
|
339 |
+
position: absolute;
|
340 |
+
right: 0px;
|
341 |
+
top: 0px;
|
342 |
+
}
|
343 |
+
|
344 |
+
.quads-box-close .quads-close-open-icon {
|
345 |
+
background-position: 0px -38px;
|
346 |
+
}
|
347 |
+
|
348 |
+
.quads-close-open-icon {
|
349 |
+
width: 38px;
|
350 |
+
height: 38px;
|
351 |
+
background: #f4f4f4 url("../images/arrow-close.png") repeat-y;
|
352 |
+
background-position: 0px 0px;
|
353 |
+
}
|
354 |
+
.quads-ad-toggle-header {
|
355 |
+
position: relative;
|
356 |
+
background-color: #f4f4f4;
|
357 |
+
margin-bottom: 2px;
|
358 |
+
padding: 10px 10px 10px 15px;
|
359 |
+
-moz-user-select: -moz-none;
|
360 |
+
-khtml-user-select: none;
|
361 |
+
-webkit-user-select: none;
|
362 |
+
-o-user-select: none;
|
363 |
+
user-select: none;
|
364 |
+
cursor: pointer !important;
|
365 |
+
min-height: 20px;
|
366 |
+
}
|
367 |
+
|
368 |
+
.quads-ad-toggle-container{
|
369 |
+
padding:20px;
|
370 |
+
background-color: #f4f4f4;
|
371 |
+
}
|
372 |
+
|
373 |
+
.quads-toogle-title{
|
374 |
+
font-size:16px;
|
375 |
+
font-weight: bold;
|
376 |
+
}
|
377 |
+
|
378 |
+
.quads-advanced-description label{
|
379 |
+
float:left;
|
380 |
+
width:215px;
|
381 |
+
font-size: 12px;
|
382 |
+
font-weight: 600;
|
383 |
+
text-transform: uppercase;
|
384 |
+
}
|
385 |
+
|
386 |
+
.quads-advanced-ad-box{
|
387 |
+
clear: both;
|
388 |
+
margin-top:20px;
|
389 |
+
margin-bottom:20px;
|
390 |
+
}
|
391 |
+
|
392 |
+
|
393 |
+
|
394 |
+
.adsense-size-title {
|
395 |
+
margin-right: 0px;
|
396 |
+
float: left;
|
397 |
+
line-height: 32px;
|
398 |
+
margin-left: 14px;
|
399 |
+
min-width: 100px;
|
400 |
+
font-weight: 600;
|
401 |
+
font-size: 12px;
|
402 |
+
text-transform: uppercase;
|
403 |
+
}
|
404 |
+
|
405 |
+
.quads-select-style-overwrite {
|
406 |
+
border: 1px solid #e6e6e6;
|
407 |
+
width: 150px;
|
408 |
+
overflow: hidden;
|
409 |
+
background: #ffffff url("../images/box_arrow.png") repeat-y 120px 0px;
|
410 |
+
margin: 0px 0px 5px 0px;
|
411 |
+
}
|
412 |
+
.quads-select-style-overwrite select {
|
413 |
+
width:150px;
|
414 |
+
}
|
415 |
+
|
416 |
+
/*.quads-select{
|
417 |
+
max-width:100px;
|
418 |
+
}*/
|
419 |
+
|
420 |
+
.quads-size-input {
|
421 |
+
position: relative;
|
422 |
+
top: -1px;
|
423 |
+
width: 110%;
|
424 |
+
border: none;
|
425 |
+
box-shadow: none;
|
426 |
+
background: transparent;
|
427 |
+
background-image: none;
|
428 |
+
-webkit-appearance: none;
|
429 |
+
font-family: 'Open Sans', arial, sans-serif;
|
430 |
+
color: #555555;
|
431 |
+
font-size: 12px;
|
432 |
+
/*margin-left:5px;*/
|
433 |
+
}
|
434 |
+
|
435 |
+
.quads-pro-overlay{
|
436 |
+
height: 200px;
|
437 |
+
}
|
438 |
+
|
439 |
+
|
440 |
+
|
441 |
+
.quads-license-error-notice,
|
442 |
+
.quads-license-expires-soon-notice {
|
443 |
+
background-color: #fff;
|
444 |
+
padding: 10px;
|
445 |
+
border-left: 4px solid #7ad03a;
|
446 |
+
overflow: auto;
|
447 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
448 |
+
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
449 |
+
border: 1px solid #ECECEC;
|
450 |
+
border-radius: 3px;
|
451 |
+
}
|
452 |
+
.quads-license-error-notice a {
|
453 |
+
color: #0097df;
|
454 |
+
text-decoration: underline;
|
455 |
+
}
|
456 |
+
.quads-license-error-notice { border-left: 4px solid #dd3d36; }
|
457 |
+
.quads-license-lifetime-notice,
|
458 |
+
.quads-license-expiration-date-notice,
|
459 |
+
.quads-license-null { padding: 0 0 0 0px; }
|
460 |
+
.quads-license-lifetime-notice .quads-license-data p,
|
461 |
+
.quads-license-expiration-date-notice .quads-license-data p { color: #666; font-size: 14px; font-style: italic; margin: 4px 0 0; }
|
462 |
+
|
463 |
+
#quads_settingslicenses_header-nav{
|
464 |
+
display:none;
|
465 |
+
}
|
466 |
+
|
467 |
+
#quads_settingslicenses_header{
|
468 |
+
max-width:640px;
|
469 |
+
}
|
470 |
+
|
471 |
+
#quads_settingslicenses_header .quads-row.th{
|
472 |
+
min-width:250px;
|
473 |
+
}
|
474 |
+
|
475 |
+
.quads-notice{
|
476 |
+
background: #fff;
|
477 |
+
border-left: 4px solid #46b450;
|
478 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
479 |
+
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
480 |
+
margin: 5px 15px 2px;
|
481 |
+
padding: 1px 12px;
|
482 |
+
}
|
483 |
+
|
484 |
+
.quads_admin h2.nav-tab-wrapper{
|
485 |
+
border:0px;
|
486 |
+
}
|
487 |
+
|
488 |
+
.quads_admin .nav-tab{
|
489 |
+
border:0px;
|
490 |
+
text-transform: uppercase;
|
491 |
+
color: #a1a1a1;
|
492 |
+
font-weight: 700;
|
493 |
+
}
|
494 |
+
|
495 |
+
.quads-h1 {
|
496 |
+
font-size: 2.75em;
|
497 |
+
margin-bottom: 1.35rem;
|
498 |
+
font-size: 2.5em;
|
499 |
+
line-height: 3.68rem;
|
500 |
+
letter-spacing: normal;
|
501 |
+
}
|
502 |
+
|
503 |
+
.quads-h2 {
|
504 |
+
margin-top:0px;
|
505 |
+
margin-bottom: 1.2rem;
|
506 |
+
font-size: 30px;
|
507 |
+
line-height: 2.5rem;
|
508 |
+
}
|
509 |
+
|
510 |
+
.quads-heading-pro{
|
511 |
+
color: #83c11f;
|
512 |
+
font-weight: bold;
|
513 |
+
}
|
514 |
+
|
515 |
+
.quads-button.green {
|
516 |
+
display:inline-block;
|
517 |
+
background-color: #83c11f;
|
518 |
+
padding:10px;
|
519 |
+
min-width: 170px;
|
520 |
+
color: white;
|
521 |
+
font-size: 16px;
|
522 |
+
text-decoration: none;
|
523 |
+
text-align:center;
|
524 |
+
margin-top:20px;
|
525 |
+
}
|
526 |
+
|
527 |
+
#quads-add-ons .quads-footer {
|
528 |
+
clear:both;
|
529 |
+
margin-top:20px;
|
530 |
+
font-style: italic;
|
531 |
+
}
|
532 |
+
|
533 |
+
#quads-add-ons li {
|
534 |
+
font-size:18px;
|
535 |
+
line-height: 29px;
|
536 |
+
position: relative;
|
537 |
+
padding-left: 23px;
|
538 |
+
list-style: none!important;
|
539 |
+
}
|
540 |
+
|
541 |
+
#quads-add-ons li:before {
|
542 |
+
width: 1em;
|
543 |
+
height: 100%;
|
544 |
+
background: url(data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E) left .4em no-repeat;
|
545 |
+
background-size: contain;
|
546 |
+
content: "";
|
547 |
+
position: absolute;
|
548 |
+
top: 0;
|
549 |
+
left: 0;
|
550 |
+
color: #77b227;
|
551 |
+
}
|
552 |
+
|
553 |
+
.adsense_admin_header {
|
554 |
+
font-size: 14px;
|
555 |
+
font-weight: 500;
|
556 |
+
}
|
557 |
+
|
558 |
+
#quads-adsense-bg-div{
|
559 |
+
position: fixed;
|
560 |
+
top: 0;
|
561 |
+
left: 0;
|
562 |
+
width: 100%;
|
563 |
+
height: 100%;
|
564 |
+
background-color: rgba(0, 0, 0, 0.65);
|
565 |
+
z-index: 250000;
|
566 |
+
}
|
567 |
+
|
568 |
+
#quads-adsense-container {
|
569 |
+
text-align: center;
|
570 |
+
width: 480px;
|
571 |
+
margin: 85px auto 0 auto;
|
572 |
+
background-color: #fff;
|
573 |
+
padding: 2%;
|
574 |
+
border-radius: 2px;
|
575 |
+
}
|
576 |
+
#quads-adsense-container h3{
|
577 |
+
margin-top:0px;
|
578 |
+
}
|
579 |
+
|
580 |
+
#quads-adsense-container textarea{
|
581 |
+
width: 100%;
|
582 |
+
}
|
583 |
+
|
584 |
+
|
585 |
+
.quads-ad-toggle-container textarea{
|
586 |
+
width: 100%;
|
587 |
+
}
|
588 |
+
|
589 |
+
.quads-ad-toggle-container input{
|
590 |
+
margin-top: 7px;
|
591 |
+
margin-bottom:10px;
|
592 |
+
}
|
593 |
+
|
594 |
+
.quads-adsense-code label, input{
|
595 |
+
margin-right:2px;
|
596 |
+
}
|
597 |
+
|
598 |
+
#quads_settings\5b ad2\5d \5b g_data_ad_client\5d {
|
599 |
+
width:200px;
|
600 |
+
}
|
601 |
+
|
602 |
+
.quads-ad-toggle-container label {
|
603 |
+
display: inline-block;
|
604 |
+
margin-right:2px;
|
605 |
+
margin-top:-3px;
|
606 |
+
}
|
607 |
+
|
608 |
+
/*.quads-adsense-code > label:nth-child(1){
|
609 |
+
min-width: 74px;
|
610 |
+
}*/
|
611 |
+
|
612 |
+
.quads_adsense_code .quads-add-adsense {
|
613 |
+
margin:20px;
|
614 |
+
margin-left:0px;
|
615 |
+
margin-right:5px;
|
616 |
+
}
|
617 |
+
|
618 |
+
.quads-label-left {
|
619 |
+
min-width: 71px;
|
620 |
+
}
|
621 |
+
|
622 |
+
#quads-label-Type {
|
623 |
+
min-width: 67px;
|
624 |
+
}
|
625 |
+
|
626 |
+
.quads-medium-size{
|
627 |
+
width: 110px;
|
628 |
+
}
|
629 |
+
|
630 |
+
#quads-msg{
|
631 |
+
display:none;
|
632 |
+
margin: 5px;
|
633 |
+
background-color: #c55c5c;
|
634 |
+
color: white;
|
635 |
+
}
|
636 |
+
|
637 |
+
.quads-success-modal {
|
638 |
+
display: block;
|
639 |
+
position: fixed;
|
640 |
+
top: 45%;
|
641 |
+
left: 25%;
|
642 |
+
width: 200px;
|
643 |
+
height: auto;
|
644 |
+
padding: 5px 20px;
|
645 |
+
z-index:1002;
|
646 |
+
overflow: auto;
|
647 |
+
}
|
648 |
+
.quads-loader {
|
649 |
+
display: block;
|
650 |
+
position: fixed;
|
651 |
+
top: 45%;
|
652 |
+
left: 25%;
|
653 |
+
width: 200px;
|
654 |
+
height: auto;
|
655 |
+
padding: 5px 20px;
|
656 |
+
z-index:1002;
|
657 |
+
overflow: auto;
|
658 |
+
}
|
659 |
+
|
660 |
+
.quads-form-table{
|
661 |
+
width: 100%;
|
662 |
+
}
|
663 |
+
|
664 |
+
.quads-left-box{
|
665 |
+
width:45%;
|
666 |
+
min-height:100px;
|
667 |
+
float:left;
|
668 |
+
line-height: 35px;
|
669 |
+
min-width: 300px;
|
670 |
+
}
|
671 |
+
|
672 |
+
@media screen and (max-width:700px){
|
673 |
+
.adsense-size-title {
|
674 |
+
margin-left: 0px;
|
675 |
+
}
|
676 |
+
.quads-left-box{
|
677 |
+
width:45%;
|
678 |
+
min-height:100px;
|
679 |
+
float:none;
|
680 |
+
line-height: 35px;
|
681 |
+
min-width: 300px;
|
682 |
+
}
|
683 |
+
|
684 |
+
.quads-style img{
|
685 |
+
max-width: 50px;
|
686 |
+
}
|
687 |
+
|
688 |
+
}
|
689 |
+
|
690 |
+
.adsense_admin_header ul li{
|
691 |
+
margin-top:2px;
|
692 |
+
margin-left:20px;
|
693 |
+
list-style-type: square;
|
694 |
+
}
|
695 |
+
|
696 |
+
.quads-helper {
|
697 |
+
border-radius: 50%;
|
698 |
+
border: 2px solid #fff;
|
699 |
+
background-color: #83c11f;
|
700 |
+
width: 15px;
|
701 |
+
height: 15px;
|
702 |
+
display: inline-block;
|
703 |
+
position: relative;
|
704 |
+
top: 4px;
|
705 |
+
margin-top: -4px;
|
706 |
+
cursor: pointer;
|
707 |
+
margin-left: 2px;
|
708 |
+
}
|
709 |
+
|
710 |
+
.quads-helper:after {
|
711 |
+
height: 20px;
|
712 |
+
font-family: sans-serif;
|
713 |
+
content: "?";
|
714 |
+
color: #fff;
|
715 |
+
font-size: 11px;
|
716 |
+
font-weight: bold;
|
717 |
+
left: 4px;
|
718 |
+
position: absolute;
|
719 |
+
margin-top: -10px;
|
720 |
+
}
|
721 |
+
|
722 |
+
.quads-general-helper:after {
|
723 |
+
height: 20px;
|
724 |
+
font-family: sans-serif;
|
725 |
+
content: "?";
|
726 |
+
color: #fff;
|
727 |
+
font-size: 11px;
|
728 |
+
font-weight: bold;
|
729 |
+
left: 4px;
|
730 |
+
position: absolute;
|
731 |
+
margin-top: -2px;
|
732 |
+
}
|
733 |
+
.quads-general-helper {
|
734 |
+
border-radius: 50%;
|
735 |
+
border: 2px solid #fff;
|
736 |
+
background-color: #83c11f;
|
737 |
+
width: 15px;
|
738 |
+
height: 15px;
|
739 |
+
display: inline-block;
|
740 |
+
position: relative;
|
741 |
+
top: 4px;
|
742 |
+
margin-top: -4px;
|
743 |
+
cursor: pointer;
|
744 |
+
margin-left: 2px;
|
745 |
+
}
|
746 |
+
|
747 |
+
.quads-message{
|
748 |
+
display:block;
|
749 |
+
padding: 10px;
|
750 |
+
border: 1px solid #FBFBFB;
|
751 |
+
border-radius: 2px;
|
752 |
+
background-color: #F8F8F8;
|
753 |
+
position: absolute;
|
754 |
+
max-width: 500px;
|
755 |
+
z-index: 9999;
|
756 |
+
display: none;
|
757 |
+
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
758 |
+
font-weight: normal;
|
759 |
+
line-height: 20px;
|
760 |
+
text-transform: none;
|
761 |
+
font-size: 14px;
|
762 |
+
}
|
763 |
+
|
764 |
+
#quads-pro-hover{
|
765 |
+
background-color: #83c11f;
|
766 |
+
padding:20px;
|
767 |
+
min-width: 150px;
|
768 |
+
color:white;
|
769 |
+
display: block;
|
770 |
+
position: relative;
|
771 |
+
margin-top: -100px;
|
772 |
+
margin-left: 50%;
|
773 |
+
}
|
774 |
+
|
775 |
+
#quads-pro-hover-background{
|
776 |
+
width: 100%; height:100%;background:rgba(0,0,0,0.6);
|
777 |
+
}
|
778 |
+
|
779 |
+
#quads-open-toggle{
|
780 |
+
clear: both;
|
781 |
+
float:left;
|
782 |
+
margin-top:10px;
|
783 |
+
}
|
784 |
+
|
785 |
+
#quads_settingsadsense_header input[type="number"].small-text{
|
786 |
+
width: 55px;
|
787 |
+
}
|
788 |
+
|
789 |
+
.quads_adsense_code input.quads-bggrey {
|
790 |
+
background-color: whitesmoke;
|
791 |
+
color: #939393;
|
792 |
+
}
|
793 |
+
|
794 |
+
.quads-amp-code{
|
795 |
+
color: #939393;
|
796 |
+
height: 130px;
|
797 |
+
}
|
798 |
+
|
799 |
+
.quads-chosen-select .chosen-choices li.search-field input{
|
800 |
+
min-height: 25px;
|
801 |
+
}
|
802 |
+
|
803 |
+
|
804 |
+
#quads-validate{
|
805 |
+
display: block;
|
806 |
+
margin-left: 2px;
|
807 |
+
margin-bottom: 20px;
|
808 |
+
font-weight: bold;
|
809 |
+
clear: both;
|
810 |
+
}
|
811 |
+
|
812 |
+
@font-face {
|
813 |
+
font-family: 'quads';
|
814 |
+
src: url('data:application/octet-stream;base64,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') format('woff'),
|
815 |
+
url('data:application/octet-stream;base64,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LbA/LLA2K4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrErARQrsARDLrArKy2wQCywABawBCWwBCYgLkcjRyNhsAlDKyMgPCAuIzixKwEUKy2wQSyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2GwAiVGYTgjIDwjOBshICBGI0ewASsjYTghWbErARQrLbBCLLA1Ky6xKwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=') format('truetype');
|
816 |
+
}
|
817 |
+
#quads-add-new-ad:before {
|
818 |
+
font-family: 'quads';
|
819 |
+
content: '\e801';
|
820 |
+
text-decoration: none;
|
821 |
+
margin-right:5px;
|
822 |
+
color: #383838;
|
823 |
+
}
|
824 |
+
|
825 |
+
#quads-add-new-ad{
|
826 |
+
margin-left: 3px;
|
827 |
+
margin-top: 5px;
|
828 |
+
display: block;
|
829 |
+
margin-bottom: 20px;
|
830 |
+
text-decoration: none;
|
831 |
+
font-size: 14px;
|
832 |
+
font-weight: 600;
|
833 |
+
color: #383838;
|
834 |
+
}
|
835 |
+
|
836 |
+
#quads-submit-button{
|
837 |
+
z-index: 999999;
|
838 |
+
}
|
839 |
+
|
840 |
+
p.submit{
|
841 |
+
float:left;
|
842 |
+
padding-top:0px;
|
843 |
+
padding-bottom:0px;
|
844 |
+
}
|
845 |
+
|
846 |
+
.quads-delete-ad{
|
847 |
+
clear:both;
|
848 |
+
display:block;
|
849 |
+
//background: url('../images/remove-icon.png');
|
850 |
+
//background-size: 20px 20px;
|
851 |
+
//background-repeat: no-repeat;
|
852 |
+
//height: 20px;
|
853 |
+
//padding-left:30px;
|
854 |
+
margin-right:5px;
|
855 |
+
font-size: 14px;
|
856 |
+
font-weight: 600;
|
857 |
+
text-decoration: none;
|
858 |
+
color: #383838;
|
859 |
+
}
|
860 |
+
.quads-delete-ad:before{
|
861 |
+
font-family: 'quads';
|
862 |
+
content: '\e800';
|
863 |
+
margin-right:5px;
|
864 |
+
color: #383838;
|
865 |
+
}
|
866 |
+
|
867 |
+
#backup-settings-textarea{
|
868 |
+
width: 580px;
|
869 |
+
height: 400px;
|
870 |
+
font-family: Menlo, Monaco, monospace;
|
871 |
+
background: none;
|
872 |
+
white-space: normal;
|
873 |
+
overflow: auto;
|
874 |
+
display: block;
|
875 |
+
}
|
876 |
+
|
877 |
+
@media (max-width:506px){
|
878 |
+
.quads-banner-columns {
|
879 |
+
display: block !important;
|
880 |
+
}
|
881 |
+
.quads-banner-sidebar-second{
|
882 |
+
width: 100% !important;
|
883 |
+
}
|
884 |
+
}
|
885 |
+
@media (max-width:780px){
|
886 |
+
.quads-banner-wrapper{
|
887 |
+
margin-right:12px !important;
|
888 |
+
}
|
889 |
+
}
|
890 |
+
|
891 |
+
.quads-banner-wrapper{
|
892 |
+
display: flex;
|
893 |
+
flex-direction: column;
|
894 |
+
clear:both;
|
895 |
+
background: #fff;
|
896 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
897 |
+
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
898 |
+
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
899 |
+
margin: 5px 5px 2px;
|
900 |
+
margin-right:20px;
|
901 |
+
padding: 1px 12px;
|
902 |
+
}
|
903 |
+
.quads-banner-content {
|
904 |
+
display: flex;
|
905 |
+
flex: 1;
|
906 |
+
color: #000;
|
907 |
+
}
|
908 |
+
.quads-banner-columns{
|
909 |
+
display: flex;
|
910 |
+
flex:1;
|
911 |
+
-ms-flex-align: center;
|
912 |
+
-webkit-align-items: center;
|
913 |
+
-webkit-box-align: center;
|
914 |
+
|
915 |
+
align-items: center;
|
916 |
+
}
|
917 |
+
.quads-banner-main{
|
918 |
+
flex: 1;
|
919 |
+
order: 2;
|
920 |
+
}
|
921 |
+
.quads-banner-sidebar-first{
|
922 |
+
min-width: 160px;
|
923 |
+
width: 13%;
|
924 |
+
order: 1;
|
925 |
+
}
|
926 |
+
.quads-banner-sidebar-second{
|
927 |
+
width: 19%;
|
928 |
+
order: 3;
|
929 |
+
}
|
930 |
+
|
931 |
+
|
932 |
+
.quads-button-primary {
|
933 |
+
display: inline-block;
|
934 |
+
text-decoration: none;
|
935 |
+
font-size: 16px;
|
936 |
+
line-height: 32px;
|
937 |
+
height: 36px;
|
938 |
+
margin: 0;
|
939 |
+
padding: 0 13px 1px;
|
940 |
+
cursor: pointer;
|
941 |
+
border-width: 1px;
|
942 |
+
border-style: solid;
|
943 |
+
-webkit-appearance: none;
|
944 |
+
-webkit-border-radius: 3px;
|
945 |
+
border-radius: 3px;
|
946 |
+
white-space: nowrap;
|
947 |
+
-webkit-box-sizing: border-box;
|
948 |
+
-moz-box-sizing: border-box;
|
949 |
+
box-sizing: border-box;
|
950 |
+
font-weight: bold;
|
951 |
+
}
|
952 |
+
|
953 |
+
.quads-button-primary {
|
954 |
+
background: #0085ba;
|
955 |
+
border-color: #0073aa #006799 #006799;
|
956 |
+
-webkit-box-shadow: 0 1px 0 #006799;
|
957 |
+
box-shadow: 0 1px 0 #006799;
|
958 |
+
color: #fff;
|
959 |
+
text-decoration: none;
|
960 |
+
text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
|
961 |
+
}
|
962 |
+
|
963 |
+
.quads-notice-dismiss {
|
964 |
+
display: inline-block;
|
965 |
+
position: relative;
|
966 |
+
top: 0;
|
967 |
+
right: 1px;
|
968 |
+
border: none;
|
969 |
+
margin: 0;
|
970 |
+
padding: 0px;
|
971 |
+
background: 0 0;
|
972 |
+
color: #72777c;
|
973 |
+
cursor: pointer;
|
974 |
+
}
|
975 |
+
|
976 |
+
.quads-notice-dismiss:before{
|
977 |
+
display: inline-block;
|
978 |
+
background: 0 0;
|
979 |
+
color: #72777c;
|
980 |
+
content: "\f153";
|
981 |
+
font: 400 16px/20px dashicons;
|
982 |
+
speak: none;
|
983 |
+
height: 20px;
|
984 |
+
text-align: center;
|
985 |
+
width: 20px;
|
986 |
+
-webkit-font-smoothing: antialiased;
|
987 |
+
}
|
assets/css/quads-admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.quads-share-button-container{margin:5px 0}.quads-share-button-container p{margin:0 0 10px}.quads-share-button{display:inline-block}.quads-share-button a{text-decoration:none}.quads-share-button .quads-share{font-family:sans-serif;font-weight:700;text-decoration:none;text-align:center;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#FFF;display:inline;font-size:16px;width:40px;padding:4px 8px}.quads-share-button-twitter .quads-share{background-color:#00ABF0}.quads-share-button-facebook .quads-share{background-color:#3b5998}.quads-share-button-googleplus .quads-share{background-color:#F53424}.quads-share-button-facebook .share:active,.quads-share-button-googleplus .share:active,.quads-share-button-twitter .share:active{background-color:#353535}@media (max-width:925px){.quads-share-button .quads-share{font-size:15px;padding:8px 16px}}.quads-richeditor{font-size:11px}#quads-add-ons h2{margin:0 0 15px}#quads-add-ons .quadsshare-addons{float:left;margin:0 15px 15px 0;background:#f0f0f0;border:1px solid #ccc;width:320px;padding:8px;height:315px;position:relative}#quads-add-ons .quadsshare-addons h3{margin:0 0 8px;font-size:13px}#quads-add-ons .quadsshare-addons .button-secondary{position:absolute;bottom:8px;left:8px}#quads-add-ons .quadsshare-addons .third-party{display:none}#system-info-textarea{width:580px;height:400px;font-family:Menlo,Monaco,monospace;background:0 0;white-space:pre;overflow:auto;display:block}.quads-select-chosen{width:300px}input.large-text,textarea.large-text{max-width:600px}input.medium-text,textarea.medium-text{min-width:190px}#quads_tab_container ul{list-style:none;margin:0;padding:0;background:#fff;float:left}#quads_tab_container ul li:first-child.selected-tab{border-top:none}#quads_tab_container ul li a.selected-tab{font-weight:700;text-decoration:none}#quads_tab_container .quads-row{padding-top:12px;padding-bottom:12px}#quads_tab_container .quads-row label strong,#tab_container .quads-row strong{font-weight:700}.quads-tabs a{padding:5px;color:#a1a1a1;text-transform:uppercase}.quads-tabs a strong{font-weight:700}li.quads-tabs{float:left;margin-left:0;background-color:#e5e5e5}#quads_tab_container>ul>li.quads-tabs.active{background-color:#fff}#quads_tab_container>ul>li.quads-tabs.active a{color:#83c11f}#quads_tab_container .quads-panel-container{background:#FFF;padding:20px;overflow:auto;text-align:left;margin-bottom:10px;max-width:640px;float:left;clear:both}.form-table{margin-top:-20px}#quads_tab_container .form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;line-height:1.3;font-weight:700;font-size:14px;color:#484848;width:30%}#quads_tab_container .form-table tr{border-bottom:1px solid #E7E7E7}#quads_tab_container span.description{display:block;font-weight:400;font-style:normal;font-size:13px;margin-top:7px;color:#484848}#quads_tab_container .col-title{font-size:18px;color:#484848}@media only screen and (max-width:680px){#quads_tab_container ul{float:none;background:#fff}#quads_tab_container .form-table tr>th{width:100%}#quads_tab_container span.description{font-size:14px}#quads_tab_container .form-table tr>th,#tab_container .form-table tr>td{padding:10px}#quads_tab_container .quads-tabs a{text-align:left}#quads_tab_container li.quads-tabs{float:none;margin-left:0}}#quads_tab_container ul li.quads-tabs{margin-bottom:0}#quads_tab_container ul li.quads-tabs a{display:block;padding:10px;text-decoration:none;font-weight:700}#quads_tab_container ul li.quads-tabs a:hover{color:#383838}#quads_tab_container ul li.quads-tabs a.active{text-decoration:underline}#quads_tab_container table tbody tr:nth-child(1)>th>div{font-size:20px}#quadstabcontainer>.quadstabs{background-color:#fff}#quadstabcontainer ul .active{background-color:#00adef;color:#fff;border-bottom-color:#0098D2}#quadstabcontainer ul .active:hover{background-color:#00A4E2;color:#fff;border-bottom-color:#0098D2}#quadstabcontainer ul li a{padding:10px 14px;background-color:#f3f3f3}#quadstabcontainer .quadstab-container{border:0 solid #ececec}.quads-quote-docs{font-family:Courier New,Courier,Fixed;color:#050}.quads-desc{display:block;font-style:italic;padding-top:10px}.quads-postbox{padding:10px;position:relative;min-width:255px;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;margin-bottom:20px}.nav-tab-active{background-color:#fff;border-bottom:0}#quads-add-ons{padding:20px}.quads-toggle{position:absolute;right:0;top:0}.quads-box-close .quads-close-open-icon{background-position:0 -38px}.quads-close-open-icon{width:38px;height:38px;background:url(../images/arrow-close.png) repeat-y #f4f4f4}.quads-ad-toggle-header{position:relative;background-color:#f4f4f4;margin-bottom:2px;padding:10px 10px 10px 15px;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none;cursor:pointer!important;min-height:20px}.quads-ad-toggle-container{padding:20px;background-color:#f4f4f4}.quads-toogle-title{font-size:16px;font-weight:700}.adsense-size-title,.quads-advanced-description label{font-weight:600;font-size:12px;text-transform:uppercase;float:left}.quads-advanced-description label{width:215px}.quads-advanced-ad-box{clear:both;margin-top:20px;margin-bottom:20px}.adsense-size-title{margin-right:0;line-height:32px;margin-left:14px;min-width:100px}.quads-select-style-overwrite{border:1px solid #e6e6e6;width:150px;overflow:hidden;background:url(../images/box_arrow.png) 120px 0 repeat-y #fff;margin:0 0 5px}.quads-select-style-overwrite select{width:150px}.quads-size-input{position:relative;top:-1px;width:110%;border:none;box-shadow:none;background:0 0;-webkit-appearance:none;font-family:'Open Sans',arial,sans-serif;color:#555;font-size:12px}.quads-pro-overlay{height:200px}.quads-license-error-notice,.quads-license-expires-soon-notice{background-color:#fff;padding:10px;overflow:auto;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);border:1px solid #ECECEC;border-radius:3px}.quads-license-error-notice a{color:#0097df;text-decoration:underline}.quads-license-error-notice{border-left:4px solid #dd3d36}.quads-license-expiration-date-notice,.quads-license-lifetime-notice,.quads-license-null{padding:0}.quads-license-expiration-date-notice .quads-license-data p,.quads-license-lifetime-notice .quads-license-data p{color:#666;font-size:14px;font-style:italic;margin:4px 0 0}#quads_settingslicenses_header-nav{display:none}#quads_settingslicenses_header{max-width:640px}#quads_settingslicenses_header .quads-row.th{min-width:250px}.quads-notice{background:#fff;border-left:4px solid #46b450;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 15px 2px;padding:1px 12px}.quads_admin h2.nav-tab-wrapper{border:0}.quads_admin .nav-tab{border:0;text-transform:uppercase;color:#a1a1a1;font-weight:700}.quads-h1{margin-bottom:1.35rem;font-size:2.5em;line-height:3.68rem;letter-spacing:normal}.quads-h2{margin-top:0;margin-bottom:1.2rem;font-size:30px;line-height:2.5rem}.quads-heading-pro{color:#83c11f;font-weight:700}.quads-button.green{display:inline-block;background-color:#83c11f;padding:10px;min-width:170px;color:#fff;font-size:16px;text-decoration:none;text-align:center;margin-top:20px}#quads-add-ons .quads-footer{clear:both;margin-top:20px;font-style:italic}#quads-add-ons li{font-size:18px;line-height:29px;position:relative;padding-left:23px;list-style:none!important}#quads-add-ons li:before{width:1em;height:100%;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E) left .4em no-repeat;background-size:contain;content:"";position:absolute;top:0;left:0;color:#77b227}.adsense_admin_header{font-size:14px;font-weight:500}#quads-adsense-bg-div{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.65);z-index:250000}#quads-adsense-container{text-align:center;width:480px;margin:85px auto 0;background-color:#fff;padding:2%;border-radius:2px}#quads-adsense-container h3{margin-top:0}#quads-adsense-container textarea,.quads-ad-toggle-container textarea{width:100%}.quads-ad-toggle-container input{margin-top:7px;margin-bottom:10px}.quads-adsense-code label,input{margin-right:2px}#quads_settings\5b ad2\5d \5b g_data_ad_client\5d{width:200px}.quads-ad-toggle-container label{display:inline-block;margin-right:2px;margin-top:-3px}.quads_adsense_code .quads-add-adsense{margin:20px 5px 20px 0}.quads-label-left{min-width:71px}#quads-label-Type{min-width:67px}.quads-medium-size{width:110px}#quads-msg{display:none;margin:5px;background-color:#c55c5c;color:#fff}.quads-loader,.quads-success-modal{display:block;position:fixed;top:45%;left:25%;width:200px;height:auto;padding:5px 20px;z-index:1002;overflow:auto}.quads-form-table{width:100%}.quads-left-box{width:45%;min-height:100px;float:left;line-height:35px;min-width:300px}@media screen and (max-width:700px){.adsense-size-title{margin-left:0}.quads-left-box{width:45%;min-height:100px;float:none;line-height:35px;min-width:300px}.quads-style img{max-width:50px}}.quads-general-helper,.quads-helper{width:15px;display:inline-block;top:4px;cursor:pointer}.adsense_admin_header ul li{margin-top:2px;margin-left:20px;list-style-type:square}.quads-helper{border-radius:50%;border:2px solid #fff;background-color:#83c11f;height:15px;position:relative;margin-top:-4px;margin-left:2px}.quads-general-helper:after,.quads-helper:after{height:20px;font-family:sans-serif;content:"?";font-size:11px;font-weight:700;left:4px;position:absolute;color:#fff}.quads-helper:after{margin-top:-10px}.quads-general-helper:after{margin-top:-2px}#quads-add-new-ad:before,.quads-delete-ad:before{font-family:quads;margin-right:5px}.quads-general-helper{border-radius:50%;border:2px solid #fff;background-color:#83c11f;height:15px;position:relative;margin-top:-4px;margin-left:2px}.quads-message{padding:10px;border:1px solid #FBFBFB;border-radius:2px;background-color:#F8F8F8;position:absolute;max-width:500px;z-index:9999;display:none;box-shadow:0 0 5px rgba(0,0,0,.2);font-weight:400;line-height:20px;text-transform:none;font-size:14px}#quads-pro-hover{background-color:#83c11f;padding:20px;min-width:150px;color:#fff;display:block;position:relative;margin-top:-100px;margin-left:50%}#quads-pro-hover-background{width:100%;height:100%;background:rgba(0,0,0,.6)}#quads-open-toggle{clear:both;float:left;margin-top:10px}#quads_settingsadsense_header input[type=number].small-text{width:55px}.quads_adsense_code input.quads-bggrey{background-color:#f5f5f5;color:#939393}.quads-amp-code{color:#939393;height:130px}.quads-chosen-select .chosen-choices li.search-field input{min-height:25px}#quads-validate{display:block;margin-left:2px;margin-bottom:20px;font-weight:700;clear:both}#quads-add-new-ad,.quads-delete-ad{font-size:14px;font-weight:600;text-decoration:none;color:#383838;display:block}@font-face{font-family:quads;src:url(data:application/octet-stream;base64,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) format('woff'),url(data:application/octet-stream;base64,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LbA/LLA2K4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrErARQrsARDLrArKy2wQCywABawBCWwBCYgLkcjRyNhsAlDKyMgPCAuIzixKwEUKy2wQSyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2GwAiVGYTgjIDwjOBshICBGI0ewASsjYTghWbErARQrLbBCLLA1Ky6xKwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=) format('truetype')}#quads-add-new-ad:before{content:'\e801';text-decoration:none;color:#383838}#quads-add-new-ad{margin-left:3px;margin-top:5px;margin-bottom:20px}#quads-submit-button{z-index:999999}p.submit{float:left;padding-top:0;padding-bottom:0}.quads-delete-ad{clear:both;//background:url(../images/remove-icon.png);//background-size:20px 20px;//background-repeat:no-repeat;//height:20px;//padding-left:30px;margin-right:5px}.quads-delete-ad:before{content:'\e800';color:#383838}#backup-settings-textarea{width:580px;height:400px;font-family:Menlo,Monaco,monospace;background:0 0;white-space:normal;overflow:auto;display:block}
|
1 |
+
.quads-share-button-container{margin:5px 0}.quads-share-button-container p{margin:0 0 10px}.quads-share-button{display:inline-block}.quads-share-button a{text-decoration:none}.quads-share-button .quads-share{font-family:sans-serif;font-weight:700;text-decoration:none;text-align:center;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#FFF;display:inline;font-size:16px;width:40px;padding:4px 8px}.quads-share-button-twitter .quads-share{background-color:#00ABF0}.quads-share-button-facebook .quads-share{background-color:#3b5998}.quads-share-button-googleplus .quads-share{background-color:#F53424}.quads-share-button-facebook .share:active,.quads-share-button-googleplus .share:active,.quads-share-button-twitter .share:active{background-color:#353535}@media (max-width:925px){.quads-share-button .quads-share{font-size:15px;padding:8px 16px}}.quads-richeditor{font-size:11px}#quads-add-ons h2{margin:0 0 15px}#quads-add-ons .quadsshare-addons{float:left;margin:0 15px 15px 0;background:#f0f0f0;border:1px solid #ccc;width:320px;padding:8px;height:315px;position:relative}#quads-add-ons .quadsshare-addons h3{margin:0 0 8px;font-size:13px}#quads-add-ons .quadsshare-addons .button-secondary{position:absolute;bottom:8px;left:8px}#quads-add-ons .quadsshare-addons .third-party{display:none}#system-info-textarea{width:580px;height:400px;font-family:Menlo,Monaco,monospace;background:0 0;white-space:pre;overflow:auto;display:block}.quads-select-chosen{width:300px}input.large-text,textarea.large-text{max-width:600px}input.medium-text,textarea.medium-text{min-width:190px}#quads_tab_container ul{list-style:none;margin:0;padding:0;background:#fff;float:left}#quads_tab_container ul li:first-child.selected-tab{border-top:none}#quads_tab_container ul li a.selected-tab{font-weight:700;text-decoration:none}#quads_tab_container .quads-row{padding-top:12px;padding-bottom:12px}#quads_tab_container .quads-row label strong,#tab_container .quads-row strong{font-weight:700}.quads-tabs a{padding:5px;color:#a1a1a1;text-transform:uppercase}.quads-tabs a strong{font-weight:700}li.quads-tabs{float:left;margin-left:0;background-color:#e5e5e5}#quads_tab_container>ul>li.quads-tabs.active{background-color:#fff}#quads_tab_container>ul>li.quads-tabs.active a{color:#83c11f}#quads_tab_container .quads-panel-container{background:#FFF;padding:20px;overflow:auto;text-align:left;margin-bottom:10px;max-width:640px;float:left;clear:both}.form-table{margin-top:-20px}#quads_tab_container .form-table th{vertical-align:top;text-align:left;padding:20px 10px 20px 0;line-height:1.3;font-weight:700;font-size:14px;color:#484848;width:30%}#quads_tab_container .form-table tr{border-bottom:1px solid #E7E7E7}#quads_tab_container span.description{display:block;font-weight:400;font-style:normal;font-size:13px;margin-top:7px;color:#484848}#quads_tab_container .col-title{font-size:18px;color:#484848}@media only screen and (max-width:680px){#quads_tab_container ul{float:none;background:#fff}#quads_tab_container .form-table tr>th{width:100%}#quads_tab_container span.description{font-size:14px}#quads_tab_container .form-table tr>th,#tab_container .form-table tr>td{padding:10px}#quads_tab_container .quads-tabs a{text-align:left}#quads_tab_container li.quads-tabs{float:none;margin-left:0}}#quads_tab_container ul li.quads-tabs{margin-bottom:0}#quads_tab_container ul li.quads-tabs a{display:block;padding:10px;text-decoration:none;font-weight:700}#quads_tab_container ul li.quads-tabs a:hover{color:#383838}#quads_tab_container ul li.quads-tabs a.active{text-decoration:underline}#quads_tab_container table tbody tr:nth-child(1)>th>div{font-size:20px}#quadstabcontainer>.quadstabs{background-color:#fff}#quadstabcontainer ul .active{background-color:#00adef;color:#fff;border-bottom-color:#0098D2}#quadstabcontainer ul .active:hover{background-color:#00A4E2;color:#fff;border-bottom-color:#0098D2}#quadstabcontainer ul li a{padding:10px 14px;background-color:#f3f3f3}#quadstabcontainer .quadstab-container{border:0 solid #ececec}.quads-quote-docs{font-family:Courier New,Courier,Fixed;color:#050}.quads-desc{display:block;font-style:italic;padding-top:10px}.quads-postbox{padding:10px;position:relative;min-width:255px;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);background:#fff;margin-bottom:20px}.nav-tab-active{background-color:#fff;border-bottom:0}#quads-add-ons{padding:20px}.quads-toggle{position:absolute;right:0;top:0}.quads-box-close .quads-close-open-icon{background-position:0 -38px}.quads-close-open-icon{width:38px;height:38px;background:url(../images/arrow-close.png) repeat-y #f4f4f4}.quads-ad-toggle-header{position:relative;background-color:#f4f4f4;margin-bottom:2px;padding:10px 10px 10px 15px;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none;cursor:pointer!important;min-height:20px}.quads-ad-toggle-container{padding:20px;background-color:#f4f4f4}.quads-toogle-title{font-size:16px;font-weight:700}.adsense-size-title,.quads-advanced-description label{font-weight:600;font-size:12px;text-transform:uppercase;float:left}.quads-advanced-description label{width:215px}.quads-advanced-ad-box{clear:both;margin-top:20px;margin-bottom:20px}.adsense-size-title{margin-right:0;line-height:32px;margin-left:14px;min-width:100px}.quads-select-style-overwrite{border:1px solid #e6e6e6;width:150px;overflow:hidden;background:url(../images/box_arrow.png) 120px 0 repeat-y #fff;margin:0 0 5px}.quads-select-style-overwrite select{width:150px}.quads-size-input{position:relative;top:-1px;width:110%;border:none;box-shadow:none;background:0 0;-webkit-appearance:none;font-family:'Open Sans',arial,sans-serif;color:#555;font-size:12px}.quads-pro-overlay{height:200px}.quads-license-error-notice,.quads-license-expires-soon-notice{background-color:#fff;padding:10px;overflow:auto;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);border:1px solid #ECECEC;border-radius:3px}.quads-license-error-notice a{color:#0097df;text-decoration:underline}.quads-license-error-notice{border-left:4px solid #dd3d36}.quads-license-expiration-date-notice,.quads-license-lifetime-notice,.quads-license-null{padding:0}.quads-license-expiration-date-notice .quads-license-data p,.quads-license-lifetime-notice .quads-license-data p{color:#666;font-size:14px;font-style:italic;margin:4px 0 0}#quads_settingslicenses_header-nav{display:none}#quads_settingslicenses_header{max-width:640px}#quads_settingslicenses_header .quads-row.th{min-width:250px}.quads-notice{background:#fff;border-left:4px solid #46b450;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 15px 2px;padding:1px 12px}.quads_admin h2.nav-tab-wrapper{border:0}.quads_admin .nav-tab{border:0;text-transform:uppercase;color:#a1a1a1;font-weight:700}.quads-h1{margin-bottom:1.35rem;font-size:2.5em;line-height:3.68rem;letter-spacing:normal}.quads-h2{margin-top:0;margin-bottom:1.2rem;font-size:30px;line-height:2.5rem}.quads-heading-pro{color:#83c11f;font-weight:700}.quads-button.green{display:inline-block;background-color:#83c11f;padding:10px;min-width:170px;color:#fff;font-size:16px;text-decoration:none;text-align:center;margin-top:20px}#quads-add-ons .quads-footer{clear:both;margin-top:20px;font-style:italic}#quads-add-ons li{font-size:18px;line-height:29px;position:relative;padding-left:23px;list-style:none!important}#quads-add-ons li:before{width:1em;height:100%;background:url(data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221792%22%20height%3D%221792%22%20viewBox%3D%220%200%201792%201792%22%20xmlns%3D%22http%3A%2F%2Fwww%2Ew3%2Eorg%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%2377B227%22%20d%3D%22M1671%20566q0%2040%2D28%2068l%2D724%20724%2D136%20136q%2D28%2028%2D68%2028t%2D68%2D28l%2D136%2D136%2D362%2D362q%2D28%2D28%2D28%2D68t28%2D68l136%2D136q28%2D28%2068%2D28t68%2028l294%20295%20656%2D657q28%2D28%2068%2D28t68%2028l136%20136q28%2028%2028%2068z%22%2F%3E%3C%2Fsvg%3E) left .4em no-repeat;background-size:contain;content:"";position:absolute;top:0;left:0;color:#77b227}.adsense_admin_header{font-size:14px;font-weight:500}#quads-adsense-bg-div{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.65);z-index:250000}#quads-adsense-container{text-align:center;width:480px;margin:85px auto 0;background-color:#fff;padding:2%;border-radius:2px}#quads-adsense-container h3{margin-top:0}#quads-adsense-container textarea,.quads-ad-toggle-container textarea{width:100%}.quads-ad-toggle-container input{margin-top:7px;margin-bottom:10px}.quads-adsense-code label,input{margin-right:2px}#quads_settings\5b ad2\5d \5b g_data_ad_client\5d{width:200px}.quads-ad-toggle-container label{display:inline-block;margin-right:2px;margin-top:-3px}.quads_adsense_code .quads-add-adsense{margin:20px 5px 20px 0}.quads-label-left{min-width:71px}#quads-label-Type{min-width:67px}.quads-medium-size{width:110px}#quads-msg{display:none;margin:5px;background-color:#c55c5c;color:#fff}.quads-loader,.quads-success-modal{display:block;position:fixed;top:45%;left:25%;width:200px;height:auto;padding:5px 20px;z-index:1002;overflow:auto}.quads-form-table{width:100%}.quads-left-box{width:45%;min-height:100px;float:left;line-height:35px;min-width:300px}@media screen and (max-width:700px){.adsense-size-title{margin-left:0}.quads-left-box{width:45%;min-height:100px;float:none;line-height:35px;min-width:300px}.quads-style img{max-width:50px}}.quads-general-helper,.quads-helper{background-color:#83c11f;width:15px;cursor:pointer}.adsense_admin_header ul li{margin-top:2px;margin-left:20px;list-style-type:square}.quads-helper{border-radius:50%;border:2px solid #fff;height:15px;display:inline-block;position:relative;top:4px;margin-top:-4px;margin-left:2px}.quads-general-helper:after,.quads-helper:after{height:20px;font-family:sans-serif;content:"?";font-size:11px;font-weight:700;left:4px;position:absolute;color:#fff}.quads-helper:after{margin-top:-10px}.quads-general-helper:after{margin-top:-2px}#quads-add-new-ad:before,.quads-delete-ad:before{font-family:quads;margin-right:5px}.quads-general-helper{border-radius:50%;border:2px solid #fff;height:15px;display:inline-block;position:relative;top:4px;margin-top:-4px;margin-left:2px}.quads-message{padding:10px;border:1px solid #FBFBFB;border-radius:2px;background-color:#F8F8F8;position:absolute;max-width:500px;z-index:9999;display:none;box-shadow:0 0 5px rgba(0,0,0,.2);font-weight:400;line-height:20px;text-transform:none;font-size:14px}#quads-pro-hover{background-color:#83c11f;padding:20px;min-width:150px;color:#fff;display:block;position:relative;margin-top:-100px;margin-left:50%}#quads-pro-hover-background{width:100%;height:100%;background:rgba(0,0,0,.6)}#quads-open-toggle{clear:both;float:left;margin-top:10px}#quads_settingsadsense_header input[type=number].small-text{width:55px}.quads_adsense_code input.quads-bggrey{background-color:#f5f5f5;color:#939393}.quads-amp-code{color:#939393;height:130px}.quads-chosen-select .chosen-choices li.search-field input{min-height:25px}#quads-validate{display:block;margin-left:2px;margin-bottom:20px;font-weight:700;clear:both}#quads-add-new-ad,.quads-delete-ad{font-size:14px;font-weight:600;color:#383838;display:block;text-decoration:none}@font-face{font-family:quads;src:url(data:application/octet-stream;base64,d09GRgABAAAAAAxYAA8AAAAAFUQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABWAAAADsAAABUIIslek9TLzIAAAGUAAAAQwAAAFY+IEkBY21hcAAAAdgAAABQAAABfohD7KljdnQgAAACKAAAABMAAAAgBtX/BGZwZ20AAAI8AAAFkAAAC3CKkZBZZ2FzcAAAB8wAAAAIAAAACAAAABBnbHlmAAAH1AAAAdIAAAJWlz85pGhlYWQAAAmoAAAAMwAAADYNxZM1aGhlYQAACdwAAAAfAAAAJAc6A1BobXR4AAAJ/AAAAAwAAAAMClL//WxvY2EAAAoIAAAACAAAAAgAxAErbWF4cAAAChAAAAAgAAAAIAESDApuYW1lAAAKMAAAAXcAAALNzJ0dH3Bvc3QAAAuoAAAAMwAAAESFVFBUcHJlcAAAC9wAAAB6AAAAhuVBK7x4nGNgZGBg4GIwYLBjYHJx8wlh4MtJLMljkGJgYYAAkDwymzEnMz2RgQPGA8qxgGkOIGaDiAIAJjsFSAB4nGNgZC5knMDAysDAVMW0h4GBoQdCMz5gMGRkAooysDIzYAUBaa4pDA4vGF4wMgf9z2KIYg5imAYUZgTJAQDj3AufAHic7ZCxDYAwDATPiaFAjEFBwTBU7F+yRfK2GYOX7qR/uTKwAF1cwsEejMit1XLvbLk7R9547K+NIRNW93STVv7s6fNrLf5U1OcK2gTMuAtdeJxjYEADEhDIHPQ/C4QBEmwD3QB4nK1WaXfTRhQdeUmchCwlCy1qYcTEabBGJmzBgAlBsmMgXZytlaCLFDvpvvGJ3+Bf82Tac+g3flrvGy8kkLTncJqTo3fnzdXM22USWpLYC+uRlJsvxdTWJo3sPAnphk3LUXwoO3shZYrJ3wVREK2W2rcdh0REIlC1rrBEEPseWZpkfOhRRsu2pFdNyi096S5b40G9Vd9+GjrKsTuhpGYzdGg9siVVGFWiSKY9UtKmZaj6K0krvL/CzFfNUMKITiJpvBnG0EjeG2e0ymg1tuMoimyy3ChSJJrhQRR5lNUS5+SKCQzKB82Q8sqnEeXD/Iis2KOcVrBLttP8vi95p3c5P7Ffb1G25EAfyI7s4Ox0JV+EW1th3LST7ShUEXbXd0Js2exU/2aP8ppGA7crMr3QjGCpfIUQKz+hzP4hWS2cT/mSR6NaspETQetlTuxLPoHW44gpcc0YWdDd0QkR1P2SMwz2mD4e/PHeKZYLEwJ4HMt6RyWcCBMpYXM0SdowcmAlZYsqqfWumDjldVrEW8J+7drRl85o41B3YjxbDx1bOVHJ8WhSp5lMndpJzaMpDaKUdCZ4zK8DKD+iSV5tYzWJlUfTOGbGhEQiAi3cS1NBLDuxpCkEzaMZvbkbprl2LVqkyQP13KP39OZWuLnTU9oO9LNGf1anYjrYC9PpaeQv8Wna5SJF6frpGX5M4kHWAjKRLTbDlIMHb/0O0svXlhyF1wbY7u3zK6h91kTwpAH7G9AeT9UpCUyFmFWIVkBirWtZlsnVrBapyNR3Q5pWvqzTBIpyHBfHvoxx/V8zM5aYEr7fidOzIy49c+1LCNMcfJt1PZrXqcVyAXFmeU6nWZbv6zTH8gOd5lme1+kIS1unoyw/1GmB5Uc6HWN5QQuadN/BkIsw5AIOkDCEpQNDWF6CISwVDGG5CENYFmEIyyUYwvJjGMJyGYawvKxl1dRTSePamVgGbEJgYo4eucxF5WoquVRCu2hUakOeEm6VVBTPqn9loF488oY5sBZIl8iaXzHOlY9G5fjWFS1vGjtXwLHqbx+O9jnxUtaLhT8F/9XWVCW9Ys3Dk6vwG4aebCeqNql4dE2Xz1U9uv5fVFRYC/QbSIVYKMqybHBnIoSPOp2GaqCVQ8xszDy063XLmp/D/TcxQhZQ/fg3FBoL3INOWUlZ7eCs1dfbstw7g3I4EyxJMTfz+lb4IiOz0n6RWcqej3wecAWMSmXYagOtFbzZJzEPmd4kzwRxW1E2SNrYzgSJDRzzgHnznQQmYeqqDeRO4YYN+AVhbsF5J1yieqMsh+5F7PMopPxbp+JE9qhojMCz2Rthr+9Cym9xDCQ0+aV+DFQVoakYNRXQNFJuqAZfxtm6bULGDvQjKnbDsqziw8cW95WSbRmEfKSI1aOjn9Zeok6q3H5mFJfvnb4FwSA1MX9733RxkMq7WskyR20DU7calVPXmkPjVYfq5lH1vePsEzlrmm66Jx56X9Oq28HFXCyw9m0O0lImF9T1YYUNosvFpVDqZTRJ77gHGBYY0O9Qio3/q/rYfJ4rVYXRcSTfTtS30edgDPwP2H9H9QPQ92Pocg0uz/eaE59u9OFsma6iF+un6Dcwa625WboG3NB0A+IhR62OuMoNfKcGcXqkuRzpIeBj3RXiAcAmgMXgE921jOZTAKP5jDk+wOfMYdBkDoMt5jDYZs4awA5zGOwyh8Eecxh8wZx1gC+ZwyBkDoOIOQyeMCcAeMocBl8xh8HXzGHwDXPuA3zLHAYxcxgkzGGwr+nWMMwtXtBdoLZBVaADU09Y3MPiUFNlyP6OF4b9vUHM/sEgpv6o6faQ+hMvDPVng5j6i0FM/VXTnSH1N14Y6u8GMfUPg5j6TL8Yy2UGv4x8lwoHlF1sPufvifcP28VAuQABAAH//wAPeJyFkc9r1EAUx9+bTGYmk21i7CSLWHfZZDdBV9aS7A+wuHb9wbawINiCLaW1hS0eSj1IvXjw7sX9M7zoob0IIngp4tE/Q/TQiydhUyf1UC/iY/jw/b73hTfwgAGcHhoXDRtcqMINWIC78ATGizuP7hMmrtYueRYyQDI0DaIFQ9inhABnwPfAAUs41rY7Q0RJEoaCbQG3bb4KnNtrYHN7tDve2dpYX3n4YLQ8HNxWdRUXFV0wrzTRU6yJYdzx2t0FTIPyf/ysV/NUBbNa2kfMkjiJGDf9IqODUS2MEy8K41tYpHt97GVpUEUNrEhRF/IMk3P5WvI/ksulvCQEwa9EiPzVr8vUPGQUf0jRbTfy+UYbO0XubWJdD47K16zknZD4Pv9UNHFQ8B86HxNvelJSUiqyOzARzRW9cXrSunenRWbPPrHpz2FFbUogp1N9h8f6DhHMw2CxP4OAVaQGGRKtDARj30SD6rcHHBA4bgNljK4CpWwNGGUj34/qjaiuhDnXxE475pFGEoWM+xplXwW9TKOcpd1ep4ByMGyRPqYVJG8CZxI4Q1fhxAlQuefm6Nnnb1+eshcff354iTeX9HSiBzqu3L9N9vz44OD4e4HfFf9hawAAeJxjYGRgYADiN4uE5eP5bb4ycDO/AIowXE1YfgpG///7fyPzC2ZuIJeDgQkkCgB97A5TAHicY2BkYGAO+p8FJF/8//v/F/MLBqAICmAGALYGB48AA+gAAAMRAAADWf/9AAAAAADEASsAAQAAAAMAaAAGAAAAAAACACAAMABzAAAAdQtwAAAAAHicdZDdasIwGIbfzJ9tCtvYYKfL0VDG6g8MQRAEh55sJzI8HbXWtlIbSaPgbewedjG7iV3LXts4hrKWNM/35MuXrwFwjW8I5M8TR84CZ4xyPsEpepYL9M+Wi+QXyyVU8Wa5TP9uuYIHBJaruMEHK4jiOaMFPi0LXIlLyye4EHeWC/SPlovknuUSbsWr5TK9Z7mCiUgtV3EvvgZqtdVREBpZG9Rlu9nqyOlWKqoocWPprk2odCr7cq4S48excjy13PPYD9axq/fhfp74Oo1UIltOc69GfuJr1/izXfV0E7SNmcu5Vks5tBlypdXC94wTGrPqNhp/z8MACitsoRHxqkIYSNRo65zbaKKFDmnKDMnMPCtCAhcxjYs1d4TZSsq4zzFnlND6zIjJDjx+l0d+TAq4P2YVfbR6GE9IuzOizEv25bC7w6wRKcky3czOfntPseFpbVrDXbsuddaVxPCghuR97NYWNB69k92Koe2iwfef//sB5m6EUQB4nGNgYoAALgbsgJmRiZGZkYWBu6QosThDNzW3oKSSpyCntFg3ObMoOSc1hYEBAI3CCXgAeJxj8N7BcCIoYiMjY1/kBsadHAwcDMkFGxlYnTYxMDJogRibuZgYOSAsPgYwi81pF9MBoDQnkM3utIvBAcJmZnDZqMLYERixwaEjYiNzistGNRBvF0cDAyOLQ0dySARISSQQbOZhYuTR2sH4v3UDS+9GJgYXAAx2I/QAAA==) format('woff'),url(data:application/octet-stream;base64,AAEAAAAPAIAAAwBwR1NVQiCLJXoAAAD8AAAAVE9TLzI+IEkBAAABUAAAAFZjbWFwiEPsqQAAAagAAAF+Y3Z0IAbV/wQAAAksAAAAIGZwZ22KkZBZAAAJTAAAC3BnYXNwAAAAEAAACSQAAAAIZ2x5Zpc/OaQAAAMoAAACVmhlYWQNxZM1AAAFgAAAADZoaGVhBzoDUAAABbgAAAAkaG10eApS//0AAAXcAAAADGxvY2EAxAErAAAF6AAAAAhtYXhwARIMCgAABfAAAAAgbmFtZcydHR8AAAYQAAACzXBvc3SFVFBUAAAI4AAAAERwcmVw5UErvAAAFLwAAACGAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAEDcQGQAAUAAAJ6ArwAAACMAnoCvAAAAeAAMQECAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAQOgA6AEDUv9qAFoDUgCWAAAAAQAAAAAAAAAAAAUAAAADAAAALAAAAAQAAAFWAAEAAAAAAFAAAwABAAAALAADAAoAAAFWAAQAJAAAAAQABAABAADoAf//AADoAP//AAAAAQAEAAAAAQACAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAoAAAAAAAAAAIAAOgAAADoAAAAAAEAAOgBAADoAQAAAAIAAAAGAAD/sQMSAwsADwAfAC8AOwBDAGcAZEBhV0UCBggpIRkRCQEGAAECRwUDAgEGAAYBAG0EAgIABwYAB2sADgAJCA4JYA8NAggMCgIGAQgGXgAHCwsHVAAHBwtYAAsHC0xlZGFeW1lTUk9MSUdBPxQkFCYmJiYmIxAFHSsBERQGKwEiJjURNDY7ATIWFxEUBisBIiY1ETQ2OwEyFhcRFAYrASImNRE0NjsBMhYTESERFB4BMyEyPgEBMycmJyMGBwUVFAYrAREUBiMhIiYnESMiJj0BNDY7ATc+ATczMhYfATMyFgEeCggkCAoKCCQICo8KCCQICgoIJAgKjgoHJAgKCggkBwpI/gwICAIB0AIICP6J+hsEBbEGBAHrCgg2NCX+MCU0ATUICgoIrCcJLBayFyoJJ60ICgG3/r8ICgoIAUEICgoI/r8ICgoIAUEICgoI/r8ICgoIAUEICgr+ZAIR/e8MFAoKFAJlQQUBAQVTJAgK/e8uREIuAhMKCCQICl0VHAEeFF0KAAL//f+xA18DCwAjADAAQUA+DQEAAR8BBAMCRwIBAAEDAQADbQUBAwQBAwRrAAcAAQAHAWAABAYGBFQABAQGWAAGBAZMFRUjJCUjJBQIBRwrATU0JgcjNTQmJyMiBgcVIyIGFxUUFjczFRQWFzMyNjc1MzI2NxQOASIuAj4BMh4BAqcWDo8WDkcPFAGPDhYBFA+PFg5HDxQBjw4WsnLG6MhuBnq89Lp+ATpIDhYBjw8UARYOjxQPSA4WAY8PFAEWDo8UM3XEdHTE6sR0dMQAAAABAAAAAQAA7KITH18PPPUACwPoAAAAANVgp8oAAAAA1WCnyv/9/7ED6AMLAAAACAACAAAAAAAAAAEAAANS/2oAAAPo//3/+gPoAAEAAAAAAAAAAAAAAAAAAAADA+gAAAMRAAADWf/9AAAAAADEASsAAQAAAAMAaAAGAAAAAAACACAAMABzAAAAdQtwAAAAAAAAABIA3gABAAAAAAAAADUAAAABAAAAAAABAAgANQABAAAAAAACAAcAPQABAAAAAAADAAgARAABAAAAAAAEAAgATAABAAAAAAAFAAsAVAABAAAAAAAGAAgAXwABAAAAAAAKACsAZwABAAAAAAALABMAkgADAAEECQAAAGoApQADAAEECQABABABDwADAAEECQACAA4BHwADAAEECQADABABLQADAAEECQAEABABPQADAAEECQAFABYBTQADAAEECQAGABABYwADAAEECQAKAFYBcwADAAEECQALACYByUNvcHlyaWdodCAoQykgMjAxNyBieSBvcmlnaW5hbCBhdXRob3JzIEAgZm9udGVsbG8uY29tZm9udGVsbG9SZWd1bGFyZm9udGVsbG9mb250ZWxsb1ZlcnNpb24gMS4wZm9udGVsbG9HZW5lcmF0ZWQgYnkgc3ZnMnR0ZiBmcm9tIEZvbnRlbGxvIHByb2plY3QuaHR0cDovL2ZvbnRlbGxvLmNvbQBDAG8AcAB5AHIAaQBnAGgAdAAgACgAQwApACAAMgAwADEANwAgAGIAeQAgAG8AcgBpAGcAaQBuAGEAbAAgAGEAdQB0AGgAbwByAHMAIABAACAAZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AZgBvAG4AdABlAGwAbABvAFIAZQBnAHUAbABhAHIAZgBvAG4AdABlAGwAbABvAGYAbwBuAHQAZQBsAGwAbwBWAGUAcgBzAGkAbwBuACAAMQAuADAAZgBvAG4AdABlAGwAbABvAEcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAAcwB2AGcAMgB0AHQAZgAgAGYAcgBvAG0AIABGAG8AbgB0AGUAbABsAG8AIABwAHIAbwBqAGUAYwB0AC4AaAB0AHQAcAA6AC8ALwBmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQAAAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBAgEDAQQAC3RyYXNoLWVtcHR5DHBsdXMtY2lyY2xlZAAAAAEAAf//AA8AAAAAAAAAAAAAAAAAAAAAABgAGAAYABgDUv9qA1L/arAALCCwAFVYRVkgIEu4AA5RS7AGU1pYsDQbsChZYGYgilVYsAIlYbkIAAgAY2MjYhshIbAAWbAAQyNEsgABAENgQi2wASywIGBmLbACLCBkILDAULAEJlqyKAEKQ0VjRVJbWCEjIRuKWCCwUFBYIbBAWRsgsDhQWCGwOFlZILEBCkNFY0VhZLAoUFghsQEKQ0VjRSCwMFBYIbAwWRsgsMBQWCBmIIqKYSCwClBYYBsgsCBQWCGwCmAbILA2UFghsDZgG2BZWVkbsAErWVkjsABQWGVZWS2wAywgRSCwBCVhZCCwBUNQWLAFI0KwBiNCGyEhWbABYC2wBCwjISMhIGSxBWJCILAGI0KxAQpDRWOxAQpDsAFgRWOwAyohILAGQyCKIIqwASuxMAUlsAQmUVhgUBthUllYI1khILBAU1iwASsbIbBAWSOwAFBYZVktsAUssAdDK7IAAgBDYEItsAYssAcjQiMgsAAjQmGwAmJmsAFjsAFgsAUqLbAHLCAgRSCwC0NjuAQAYiCwAFBYsEBgWWawAWNgRLABYC2wCCyyBwsAQ0VCKiGyAAEAQ2BCLbAJLLAAQyNEsgABAENgQi2wCiwgIEUgsAErI7AAQ7AEJWAgRYojYSBkILAgUFghsAAbsDBQWLAgG7BAWVkjsABQWGVZsAMlI2FERLABYC2wCywgIEUgsAErI7AAQ7AEJWAgRYojYSBksCRQWLAAG7BAWSOwAFBYZVmwAyUjYUREsAFgLbAMLCCwACNCsgsKA0VYIRsjIVkqIS2wDSyxAgJFsGRhRC2wDiywAWAgILAMQ0qwAFBYILAMI0JZsA1DSrAAUlggsA0jQlktsA8sILAQYmawAWMguAQAY4ojYbAOQ2AgimAgsA4jQiMtsBAsS1RYsQRkRFkksA1lI3gtsBEsS1FYS1NYsQRkRFkbIVkksBNlI3gtsBIssQAPQ1VYsQ8PQ7ABYUKwDytZsABDsAIlQrEMAiVCsQ0CJUKwARYjILADJVBYsQEAQ2CwBCVCioogiiNhsA4qISOwAWEgiiNhsA4qIRuxAQBDYLACJUKwAiVhsA4qIVmwDENHsA1DR2CwAmIgsABQWLBAYFlmsAFjILALQ2O4BABiILAAUFiwQGBZZrABY2CxAAATI0SwAUOwAD6yAQEBQ2BCLbATLACxAAJFVFiwDyNCIEWwCyNCsAojsAFgQiBgsAFhtRAQAQAOAEJCimCxEgYrsHIrGyJZLbAULLEAEystsBUssQETKy2wFiyxAhMrLbAXLLEDEystsBgssQQTKy2wGSyxBRMrLbAaLLEGEystsBsssQcTKy2wHCyxCBMrLbAdLLEJEystsB4sALANK7EAAkVUWLAPI0IgRbALI0KwCiOwAWBCIGCwAWG1EBABAA4AQkKKYLESBiuwcisbIlktsB8ssQAeKy2wICyxAR4rLbAhLLECHistsCIssQMeKy2wIyyxBB4rLbAkLLEFHistsCUssQYeKy2wJiyxBx4rLbAnLLEIHistsCgssQkeKy2wKSwgPLABYC2wKiwgYLAQYCBDI7ABYEOwAiVhsAFgsCkqIS2wKyywKiuwKiotsCwsICBHICCwC0NjuAQAYiCwAFBYsEBgWWawAWNgI2E4IyCKVVggRyAgsAtDY7gEAGIgsABQWLBAYFlmsAFjYCNhOBshWS2wLSwAsQACRVRYsAEWsCwqsAEVMBsiWS2wLiwAsA0rsQACRVRYsAEWsCwqsAEVMBsiWS2wLywgNbABYC2wMCwAsAFFY7gEAGIgsABQWLBAYFlmsAFjsAErsAtDY7gEAGIgsABQWLBAYFlmsAFjsAErsAAWtAAAAAAARD4jOLEvARUqLbAxLCA8IEcgsAtDY7gEAGIgsABQWLBAYFlmsAFjYLAAQ2E4LbAyLC4XPC2wMywgPCBHILALQ2O4BABiILAAUFiwQGBZZrABY2CwAENhsAFDYzgtsDQssQIAFiUgLiBHsAAjQrACJUmKikcjRyNhIFhiGyFZsAEjQrIzAQEVFCotsDUssAAWsAQlsAQlRyNHI2GwCUMrZYouIyAgPIo4LbA2LLAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjILAIQyCKI0cjRyNhI0ZgsARDsAJiILAAUFiwQGBZZrABY2AgsAErIIqKYSCwAkNgZCOwA0NhZFBYsAJDYRuwA0NgWbADJbACYiCwAFBYsEBgWWawAWNhIyAgsAQmI0ZhOBsjsAhDRrACJbAIQ0cjRyNhYCCwBEOwAmIgsABQWLBAYFlmsAFjYCMgsAErI7AEQ2CwASuwBSVhsAUlsAJiILAAUFiwQGBZZrABY7AEJmEgsAQlYGQjsAMlYGRQWCEbIyFZIyAgsAQmI0ZhOFktsDcssAAWICAgsAUmIC5HI0cjYSM8OC2wOCywABYgsAgjQiAgIEYjR7ABKyNhOC2wOSywABawAyWwAiVHI0cjYbAAVFguIDwjIRuwAiWwAiVHI0cjYSCwBSWwBCVHI0cjYbAGJbAFJUmwAiVhuQgACABjYyMgWGIbIVljuAQAYiCwAFBYsEBgWWawAWNgIy4jICA8ijgjIVktsDossAAWILAIQyAuRyNHI2EgYLAgYGawAmIgsABQWLBAYFlmsAFjIyAgPIo4LbA7LCMgLkawAiVGUlggPFkusSsBFCstsDwsIyAuRrACJUZQWCA8WS6xKwEUKy2wPSwjIC5GsAIlRlJYIDxZIyAuRrACJUZQWCA8WS6xKwEUKy2wPiywNSsjIC5GsAIlRlJYIDxZLrErARQrLbA/LLA2K4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrErARQrsARDLrArKy2wQCywABawBCWwBCYgLkcjRyNhsAlDKyMgPCAuIzixKwEUKy2wQSyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2GwAiVGYTgjIDwjOBshICBGI0ewASsjYTghWbErARQrLbBCLLA1Ky6xKwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKyAAEAKrEABUKzCgIBCCqxAAVCsw4AAQgqsQAGQroCwAABAAkqsQAHQroAQAABAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbMMAgEMKrgB/4WwBI2xAgBEAAA=) format('truetype')}#quads-add-new-ad:before{content:'\e801';text-decoration:none;color:#383838}#quads-add-new-ad{margin-left:3px;margin-top:5px;margin-bottom:20px}#quads-submit-button{z-index:999999}p.submit{float:left;padding-top:0;padding-bottom:0}.quads-delete-ad{clear:both;//background:url(../images/remove-icon.png);//background-size:20px 20px;//background-repeat:no-repeat;//height:20px;//padding-left:30px;margin-right:5px}.quads-delete-ad:before{content:'\e800';color:#383838}#backup-settings-textarea{width:580px;height:400px;font-family:Menlo,Monaco,monospace;background:0 0;white-space:normal;overflow:auto;display:block}@media (max-width:506px){.quads-banner-columns{display:block!important}.quads-banner-sidebar-second{width:100%!important}}@media (max-width:780px){.quads-banner-wrapper{margin-right:12px!important}}.quads-banner-wrapper{display:flex;flex-direction:column;clear:both;background:#fff;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin:5px 20px 2px 5px;padding:1px 12px}.quads-banner-content{display:flex;flex:1;color:#000}.quads-banner-columns{display:flex;flex:1;-ms-flex-align:center;-webkit-align-items:center;-webkit-box-align:center;align-items:center}.quads-banner-main{flex:1;order:2}.quads-banner-sidebar-first{min-width:160px;width:13%;order:1}.quads-banner-sidebar-second{width:19%;order:3}.quads-button-primary{display:inline-block;font-size:16px;line-height:32px;height:36px;margin:0;padding:0 13px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;-webkit-border-radius:3px;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-weight:700;background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}.quads-notice-dismiss{display:inline-block;position:relative;top:0;right:1px;border:none;margin:0;padding:0;background:0 0;color:#72777c;cursor:pointer}.quads-notice-dismiss:before{display:inline-block;background:0 0;color:#72777c;content:"\f153";font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased}
|
assets/images/vi_quads_logo.png
ADDED
Binary file
|
assets/images/vi_quads_logo_1.png
ADDED
Binary file
|
includes/admin/admin-actions.php
CHANGED
@@ -1,43 +1,63 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Admin Actions
|
4 |
-
*
|
5 |
-
* @package QUADS
|
6 |
-
* @subpackage Admin/Actions
|
7 |
-
* @copyright Copyright (c) 2015, René Hermenau
|
8 |
-
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
9 |
-
* @since 1.0
|
10 |
-
*/
|
11 |
-
|
12 |
-
// Exit if accessed directly
|
13 |
-
if ( ! defined( 'ABSPATH' ) ) exit;
|
14 |
-
|
15 |
-
/**
|
16 |
-
* Processes all QUADS actions sent via POST and GET by looking for the 'quads-action'
|
17 |
-
* request and running do_action() to call the function
|
18 |
-
*
|
19 |
-
* @since 1.0
|
20 |
-
* @return void
|
21 |
-
*/
|
22 |
-
function quads_process_actions() {
|
23 |
-
if ( isset( $_POST['quads-action'] ) ) {
|
24 |
-
do_action( 'quads_' . $_POST['quads-action'], $_POST );
|
25 |
-
}
|
26 |
-
|
27 |
-
if ( isset( $_GET['quads-action'] ) ) {
|
28 |
-
do_action( 'quads_' . $_GET['quads-action'], $_GET );
|
29 |
-
}
|
30 |
-
}
|
31 |
-
add_action( 'admin_init', 'quads_process_actions' );
|
32 |
-
|
33 |
-
/**
|
34 |
-
* Update option quads_show_theme_notice
|
35 |
-
* "no" means no further upgrade notices are shown
|
36 |
-
*/
|
37 |
-
function quads_close_upgrade_notice(){
|
38 |
-
update_option ('quads_show_theme_notice', 'no');
|
39 |
-
}
|
40 |
-
add_action('quads_close_upgrade_notice', 'quads_close_upgrade_notice');
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Admin Actions
|
4 |
+
*
|
5 |
+
* @package QUADS
|
6 |
+
* @subpackage Admin/Actions
|
7 |
+
* @copyright Copyright (c) 2015, René Hermenau
|
8 |
+
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
9 |
+
* @since 1.0
|
10 |
+
*/
|
11 |
+
|
12 |
+
// Exit if accessed directly
|
13 |
+
if ( ! defined( 'ABSPATH' ) ) exit;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Processes all QUADS actions sent via POST and GET by looking for the 'quads-action'
|
17 |
+
* request and running do_action() to call the function
|
18 |
+
*
|
19 |
+
* @since 1.0
|
20 |
+
* @return void
|
21 |
+
*/
|
22 |
+
function quads_process_actions() {
|
23 |
+
if ( isset( $_POST['quads-action'] ) ) {
|
24 |
+
do_action( 'quads_' . $_POST['quads-action'], $_POST );
|
25 |
+
}
|
26 |
+
|
27 |
+
if ( isset( $_GET['quads-action'] ) ) {
|
28 |
+
do_action( 'quads_' . $_GET['quads-action'], $_GET );
|
29 |
+
}
|
30 |
+
}
|
31 |
+
add_action( 'admin_init', 'quads_process_actions' );
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Update option quads_show_theme_notice
|
35 |
+
* "no" means no further upgrade notices are shown
|
36 |
+
*/
|
37 |
+
function quads_close_upgrade_notice(){
|
38 |
+
update_option ('quads_show_theme_notice', 'no');
|
39 |
+
}
|
40 |
+
add_action('quads_close_upgrade_notice', 'quads_close_upgrade_notice');
|
41 |
+
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Close vi notice and do not show again
|
45 |
+
*/
|
46 |
+
function quads_close_vi_notice(){
|
47 |
+
update_option ('quads_close_vi_notice', 'yes');
|
48 |
+
delete_option('quads_show_vi_notice_later');
|
49 |
+
}
|
50 |
+
add_action('quads_close_vi_notice', 'quads_close_vi_notice');
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Close vi update notice and show it one week later again
|
54 |
+
*/
|
55 |
+
function quads_show_vi_notice_later(){
|
56 |
+
$nextweek = time() + (7 * 24 * 60 * 60);
|
57 |
+
$human_date = date( 'Y-m-d h:i:s', $nextweek );
|
58 |
+
update_option( 'quads_show_vi_notice_later', $human_date );
|
59 |
+
update_option( 'quads_close_vi_notice', 'yes' );
|
60 |
+
|
61 |
+
}
|
62 |
+
add_action('quads_show_vi_notice_later', 'quads_show_vi_notice_later');
|
63 |
+
|
includes/admin/admin-notices.php
CHANGED
@@ -1,401 +1,449 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Admin Notices
|
4 |
-
*
|
5 |
-
* @package QUADS
|
6 |
-
* @subpackage Admin/Notices
|
7 |
-
* @copyright Copyright (c) 2015, René Hermenau
|
8 |
-
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
9 |
-
* @since 1.0.9
|
10 |
-
*/
|
11 |
-
// Exit if accessed directly
|
12 |
-
if( !defined( 'ABSPATH' ) )
|
13 |
-
exit;
|
14 |
-
|
15 |
-
/**
|
16 |
-
* Admin Messages
|
17 |
-
*
|
18 |
-
* @since 2.2.3
|
19 |
-
* @global $mashsb_options Array of all the MASHSB Options
|
20 |
-
* @return void
|
21 |
-
*/
|
22 |
-
function quads_admin_messages() {
|
23 |
-
global $quads_options;
|
24 |
-
|
25 |
-
if( !current_user_can( 'update_plugins' ) ) {
|
26 |
-
return;
|
27 |
-
}
|
28 |
-
|
29 |
-
quads_theme_notice();
|
30 |
-
|
31 |
-
quads_update_notice();
|
32 |
-
|
33 |
-
quads_update_notice_v2();
|
34 |
-
|
35 |
-
quads_update_notice_1_5_3();
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
$
|
61 |
-
$
|
62 |
-
$
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
<li><a href="
|
74 |
-
<
|
75 |
-
<li><a href="javascript:void(0);" class="
|
76 |
-
<
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
jQuery
|
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 |
-
|
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 |
-
$message = __( "WP QUADS and WP QUADS Pro cannot be activated both. We've automatically deactivated WP QUADS
|
199 |
-
}
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
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 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
*
|
327 |
-
*
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
if
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
if
|
349 |
-
|
350 |
-
isset( $quads_options['
|
351 |
-
isset( $quads_options['
|
352 |
-
isset( $quads_options['
|
353 |
-
isset( $quads_options['
|
354 |
-
isset( $quads_options['
|
355 |
-
isset( $quads_options['
|
356 |
-
isset( $quads_options['
|
357 |
-
|
358 |
-
|
359 |
-
return true;
|
360 |
-
}
|
361 |
-
|
362 |
-
|
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 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Admin Notices
|
4 |
+
*
|
5 |
+
* @package QUADS
|
6 |
+
* @subpackage Admin/Notices
|
7 |
+
* @copyright Copyright (c) 2015, René Hermenau
|
8 |
+
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
9 |
+
* @since 1.0.9
|
10 |
+
*/
|
11 |
+
// Exit if accessed directly
|
12 |
+
if( !defined( 'ABSPATH' ) )
|
13 |
+
exit;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Admin Messages
|
17 |
+
*
|
18 |
+
* @since 2.2.3
|
19 |
+
* @global $mashsb_options Array of all the MASHSB Options
|
20 |
+
* @return void
|
21 |
+
*/
|
22 |
+
function quads_admin_messages() {
|
23 |
+
global $quads_options;
|
24 |
+
|
25 |
+
if( !current_user_can( 'update_plugins' ) || quads_is_addon_page() ) {
|
26 |
+
return;
|
27 |
+
}
|
28 |
+
|
29 |
+
quads_theme_notice();
|
30 |
+
|
31 |
+
quads_update_notice();
|
32 |
+
|
33 |
+
quads_update_notice_v2();
|
34 |
+
|
35 |
+
quads_update_notice_1_5_3();
|
36 |
+
|
37 |
+
echo quads_get_vi_notice();
|
38 |
+
|
39 |
+
if( quads_is_admin_page() ) {
|
40 |
+
echo '<div class="notice notice-error" id="wpquads-adblock-notice" style="display:none;">' . sprintf( __( '<strong><p>You need to deactivate your ad blocker to use WP QUADS settings.</strong> Your ad blocker browser extension is removing WP QUADS css ressources and is breaking the settings screen! Deactivating the ad blocker will resolve it. WP QUADS is used on 60.000 websites and is into focus of the big adblocking companies. That\'s the downside of our success but nothing you need to worry about.</p>', 'quick-adsense-reloaded' ), admin_url() . 'admin.php?page=quads-settings#quads_settingsgeneral_header' ) . '</div>';
|
41 |
+
}
|
42 |
+
|
43 |
+
if( !quads_is_any_ad_activated() && quads_is_admin_page() ) {
|
44 |
+
echo '<div class="notice notice-warning">' . sprintf( __( '<strong>No ads are activated!</strong> You need to assign at least 1 ad to an ad spot. Fix this in <a href="%s">General Settings</a>! Alternatively you need to use a shortcode in your posts or no ads are shown at all.', 'quick-adsense-reloaded' ), admin_url() . 'admin.php?page=quads-settings#quads_settingsgeneral_header' ) . '</div>';
|
45 |
+
}
|
46 |
+
|
47 |
+
if( quads_get_active_ads() === 0 && quads_is_admin_page() ) {
|
48 |
+
echo '<div class="notice notice-warning">' . sprintf( __( '<strong>No ads defined!</strong> You need to create at least one ad code. Fix this in <a href="%s">ADSENSE CODE</a>.', 'quick-adsense-reloaded' ), admin_url() . 'admin.php?page=quads-settings#quads_settingsadsense_header' ) . '</div>';
|
49 |
+
}
|
50 |
+
|
51 |
+
if( !quads_is_post_type_activated() && quads_is_admin_page() ) {
|
52 |
+
echo '<div class="notice notice-warning">' . sprintf( __( '<strong>No ads are shown - No post type chosen!</strong> You need to select at least 1 post type like <i>blog</i> or <i>page</i>. Fix this in <a href="%s">General Settings</a> or no ads are shown at all.', 'quick-adsense-reloaded' ), admin_url() . 'admin.php?page=quads-settings#quads_settingsgeneral_header' ) . '</div>';
|
53 |
+
}
|
54 |
+
|
55 |
+
if( isset( $_GET['quads-action'] ) && $_GET['quads-action'] === 'validate' && quads_is_admin_page() && quads_is_any_ad_activated() && quads_is_post_type_activated() && quads_get_active_ads() > 0 ) {
|
56 |
+
echo '<div class="notice notice-success">' . sprintf( __( '<strong>No errors detected in WP QUADS settings.</strong> If ads are still not shown read the <a href="%s" target="_blank">troubleshooting guide</a>' ), 'http://wpquads.com/docs/adsense-ads-are-not-showing/?utm_source=plugin&utm_campaign=wpquads-settings&utm_medium=website&utm_term=toplink' ) . '</div>';
|
57 |
+
}
|
58 |
+
|
59 |
+
|
60 |
+
$install_date = get_option( 'quads_install_date' );
|
61 |
+
$display_date = date( 'Y-m-d h:i:s' );
|
62 |
+
$datetime1 = new DateTime( $install_date );
|
63 |
+
$datetime2 = new DateTime( $display_date );
|
64 |
+
$diff_intrval = round( ($datetime2->format( 'U' ) - $datetime1->format( 'U' )) / (60 * 60 * 24) );
|
65 |
+
|
66 |
+
$rate = get_option( 'quads_rating_div', false);
|
67 |
+
if( $diff_intrval >= 7 && ($rate === "no" || false === $rate || quads_rate_again() ) ) {
|
68 |
+
echo '<div class="quads_fivestar updated " style="box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);background-color:white;">
|
69 |
+
<p>Awesome, you\'ve been using <strong>WP QUADS</strong> for more than 1 week. <br> May i ask you to give it a <strong>5-star rating</strong> on Wordpress? </br>
|
70 |
+
This will help to spread its popularity and to make this plugin a better one.
|
71 |
+
<br><br>Your help is much appreciated. Thank you very much,<br> ~René Hermenau
|
72 |
+
<ul>
|
73 |
+
<li><a href="https://wordpress.org/support/plugin/quick-adsense-reloaded/reviews/?filter=5#new-post" class="thankyou" target="_new" title="Ok, you deserved it" style="font-weight:bold;">Ok, you deserved it</a></li>
|
74 |
+
<li><a href="javascript:void(0);" class="quadsHideRating" title="I already did" style="font-weight:bold;">I already did</a></li>
|
75 |
+
<li><a href="javascript:void(0);" class="quadsHideRating" title="No, not good enough" style="font-weight:bold;">No, not good enough</a></li>
|
76 |
+
<br>
|
77 |
+
<li><a href="javascript:void(0);" class="quadsHideRatingWeek" title="No, not good enough" style="font-weight:bold;">I want to rate it later. Ask me again in a week!</a></li>
|
78 |
+
<li class="spinner" style="float:none;display:list-item;margin:0px;"></li>
|
79 |
+
</ul>
|
80 |
+
|
81 |
+
</div>
|
82 |
+
<script>
|
83 |
+
jQuery( document ).ready(function( $ ) {
|
84 |
+
|
85 |
+
jQuery(\'.quadsHideRating\').click(function(){
|
86 |
+
jQuery(".spinner").addClass("is-active");
|
87 |
+
var data={\'action\':\'quads_hide_rating\'}
|
88 |
+
jQuery.ajax({
|
89 |
+
|
90 |
+
url: "' . admin_url( 'admin-ajax.php' ) . '",
|
91 |
+
type: "post",
|
92 |
+
data: data,
|
93 |
+
dataType: "json",
|
94 |
+
async: !0,
|
95 |
+
success: function(e) {
|
96 |
+
if (e=="success") {
|
97 |
+
jQuery(".spinner").removeClass("is-active");
|
98 |
+
jQuery(\'.quads_fivestar\').slideUp(\'fast\');
|
99 |
+
|
100 |
+
}
|
101 |
+
}
|
102 |
+
});
|
103 |
+
})
|
104 |
+
|
105 |
+
jQuery(\'.quadsHideRatingWeek\').click(function(){
|
106 |
+
jQuery(".spinner").addClass("is-active");
|
107 |
+
var data={\'action\':\'quads_hide_rating_week\'}
|
108 |
+
jQuery.ajax({
|
109 |
+
|
110 |
+
url: "' . admin_url( 'admin-ajax.php' ) . '",
|
111 |
+
type: "post",
|
112 |
+
data: data,
|
113 |
+
dataType: "json",
|
114 |
+
async: !0,
|
115 |
+
success: function(e) {
|
116 |
+
if (e=="success") {
|
117 |
+
jQuery(".spinner").removeClass("is-active");
|
118 |
+
jQuery(\'.quads_fivestar\').slideUp(\'fast\');
|
119 |
+
|
120 |
+
}
|
121 |
+
}
|
122 |
+
});
|
123 |
+
})
|
124 |
+
|
125 |
+
});
|
126 |
+
</script>
|
127 |
+
';
|
128 |
+
}
|
129 |
+
}
|
130 |
+
|
131 |
+
add_action( 'admin_notices', 'quads_admin_messages' );
|
132 |
+
|
133 |
+
|
134 |
+
/* Hide the rating div
|
135 |
+
*
|
136 |
+
* @subpackage Admin/Notices
|
137 |
+
* @copyright Copyright (c) 2016, René Hermenau
|
138 |
+
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
139 |
+
* @since 1.0.9
|
140 |
+
*
|
141 |
+
* @return json string
|
142 |
+
*
|
143 |
+
*/
|
144 |
+
|
145 |
+
function quads_hide_rating_div() {
|
146 |
+
update_option( 'quads_rating_div', 'yes' );
|
147 |
+
delete_option( 'quads_date_next_notice' );
|
148 |
+
echo json_encode( array("success") );
|
149 |
+
exit;
|
150 |
+
}
|
151 |
+
add_action( 'wp_ajax_quads_hide_rating', 'quads_hide_rating_div' );
|
152 |
+
|
153 |
+
/**
|
154 |
+
* Write the timestamp when rating notice will be opened again
|
155 |
+
*/
|
156 |
+
function quads_hide_rating_notice_week() {
|
157 |
+
$nextweek = time() + (7 * 24 * 60 * 60);
|
158 |
+
$human_date = date( 'Y-m-d h:i:s', $nextweek );
|
159 |
+
update_option( 'quads_date_next_notice', $human_date );
|
160 |
+
update_option( 'quads_rating_div', 'yes' );
|
161 |
+
echo json_encode( array("success") );
|
162 |
+
exit;
|
163 |
+
}
|
164 |
+
|
165 |
+
add_action( 'wp_ajax_quads_hide_rating_week', 'quads_hide_rating_notice_week' );
|
166 |
+
|
167 |
+
/**
|
168 |
+
* Check if admin notice will open again after one week of closing
|
169 |
+
* @return boolean
|
170 |
+
*/
|
171 |
+
function quads_rate_again() {
|
172 |
+
|
173 |
+
$rate_again_date = get_option( 'quads_date_next_notice' );
|
174 |
+
|
175 |
+
if( false === $rate_again_date ) {
|
176 |
+
return false;
|
177 |
+
}
|
178 |
+
|
179 |
+
$current_date = date( 'Y-m-d h:i:s' );
|
180 |
+
$datetime1 = new DateTime( $rate_again_date );
|
181 |
+
$datetime2 = new DateTime( $current_date );
|
182 |
+
$diff_intrval = round( ($datetime2->format( 'U' ) - $datetime1->format( 'U' )) / (60 * 60 * 24) );
|
183 |
+
|
184 |
+
if( $diff_intrval >= 0 ) {
|
185 |
+
return true;
|
186 |
+
}
|
187 |
+
}
|
188 |
+
|
189 |
+
/**
|
190 |
+
* Show a message when pro or free plugin gets disabled
|
191 |
+
*
|
192 |
+
* @return void
|
193 |
+
* @not used
|
194 |
+
*/
|
195 |
+
function quads_plugin_deactivated_notice() {
|
196 |
+
if( false !== ( $deactivated_notice_id = get_transient( 'quads_deactivated_notice_id' ) ) ) {
|
197 |
+
if( '1' === $deactivated_notice_id ) {
|
198 |
+
$message = __( "WP QUADS and WP QUADS Pro cannot be activated both. We've automatically deactivated WP QUADS.", 'wpstg' );
|
199 |
+
} else {
|
200 |
+
$message = __( "WP QUADS and WP QUADS Pro cannot be activated both. We've automatically deactivated WP QUADS Pro.", 'wpstg' );
|
201 |
+
}
|
202 |
+
?>
|
203 |
+
<div class="updated notice is-dismissible" style="border-left: 4px solid #ffba00;">
|
204 |
+
<p><?php echo esc_html( $message ); ?></p>
|
205 |
+
</div> <?php
|
206 |
+
delete_transient( 'quads_deactivated_notice_id' );
|
207 |
+
}
|
208 |
+
}
|
209 |
+
|
210 |
+
/**
|
211 |
+
* This notice is shown for user of the bimber and bunchy theme
|
212 |
+
*
|
213 |
+
* Not used at the moment
|
214 |
+
*/
|
215 |
+
function quads_theme_notice() {
|
216 |
+
|
217 |
+
$show_notice = get_option( 'quads_show_theme_notice' );
|
218 |
+
|
219 |
+
if( false !== $show_notice && 'no' !== $show_notice && quads_is_commercial_theme() ) {
|
220 |
+
$message = __( '<strong>Extend the' . quads_is_commercial_theme() . '</strong> theme with <strong>WP QUADS PRO!</strong><br>Save time and earn more - Bring your AdSense earnings to next level. <a href="http://wpquads.com?utm_campaign=adminnotice&utm_source=admin_notice&utm_medium=admin&utm_content=bimber_upgrade_notice" target="_blank"> Purchase Now</a> or <a href="http://wpquads.com?utm_campaign=free_plugin&utm_source=admin_notice&utm_medium=admin&utm_content=bimber_upgrade_notice" target="_blank">Get Details</a> <p> <a href="' . admin_url() . 'admin.php?page=quads-settings&quads-action=close_upgrade_notice" class="button">Close Notice</a>', 'quick-adsense-reloaded' );
|
221 |
+
?>
|
222 |
+
<div class="updated notice" style="border-left: 4px solid #ffba00;">
|
223 |
+
<p><?php echo $message; ?></p>
|
224 |
+
</div> <?php
|
225 |
+
//update_option ('quads_show_theme_notice', 'no');
|
226 |
+
}
|
227 |
+
}
|
228 |
+
|
229 |
+
/**
|
230 |
+
* This notice is shown after updating to 1.3.9
|
231 |
+
*
|
232 |
+
*/
|
233 |
+
function quads_update_notice() {
|
234 |
+
|
235 |
+
$show_notice = get_option( 'quads_show_update_notice' );
|
236 |
+
|
237 |
+
// do not do anything
|
238 |
+
if( false !== $show_notice ) {
|
239 |
+
return false;
|
240 |
+
}
|
241 |
+
|
242 |
+
if( (version_compare( QUADS_VERSION, '1.3.9', '>=' ) ) && quads_is_pro_active() && (version_compare( QUADS_PRO_VERSION, '1.3.0', '<' ) ) ) {
|
243 |
+
$message = sprintf( __( '<strong>WP QUADS ' . QUADS_VERSION . ': </strong> Update WP QUADS PRO to get custom post type support from <a href="%s">General Settings</a>.', 'quick-adsense-reloaded' ), admin_url() . 'admin.php?page=quads-settings' );
|
244 |
+
$message .= '<br><br><a href="' . admin_url() . 'admin.php?page=quads-settings&quads-action=hide_update_notice" class="button-primary thankyou" target="_self" title="Close Notice" style="font-weight:bold;">Close Notice</a>';
|
245 |
+
?>
|
246 |
+
<div class="updated notice" style="border-left: 4px solid #ffba00;">
|
247 |
+
<p><?php echo $message; ?></p>
|
248 |
+
</div> <?php
|
249 |
+
//update_option ('quads_show_update_notice', 'no');
|
250 |
+
} else
|
251 |
+
if( !quads_is_extra() ) {
|
252 |
+
$message = sprintf( __( '<strong>WP QUADS ' . QUADS_VERSION . ': </strong> Install <a href="%1s" target="_blank">WP QUADS PRO</a> to get custom post type support in <a href="%2s">General Settings</a>.', 'quick-adsense-reloaded' ), 'http://wpquads.com?utm_campaign=admin_notice&utm_source=admin_notice&utm_medium=admin&utm_content=custom_post_type', admin_url() . 'admin.php?page=quads-settings' );
|
253 |
+
$message .= '<br><br><a href="' . admin_url() . 'admin.php?page=quads-settings&quads-action=hide_update_notice" class="button-primary thankyou" target="_self" title="Close Notice" style="font-weight:bold;">Close Notice</a>';
|
254 |
+
?>
|
255 |
+
<div class="updated notice" style="border-left: 4px solid #ffba00;">
|
256 |
+
<p><?php echo $message; ?></p>
|
257 |
+
</div>
|
258 |
+
<?php
|
259 |
+
}
|
260 |
+
}
|
261 |
+
|
262 |
+
/**
|
263 |
|