PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.1.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.1.2
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
← All changes | css/frame.css +149 -812 3.0.51.1.2 View file →
@@ -1,29 +1,28 @@
1 1 #content {
2 - overflow: auto;
3 2 position: absolute;
4 - z-index: 75;
5 3 top: 0;
6 4 right: 0;
7 5 bottom: 60px;
8 6 left: 0;
9 - background-color: white;
7 + z-index: 75;
8 + overflow: auto;
10 9 }
11 10
12 11 #canvas {
13 12 position: absolute;
13 + left: 10px;
14 + right: 310px;
14 15 top: 10px;
15 - right: 310px;
16 16 bottom: 10px;
17 - left: 10px;
18 17 }
19 18
20 19 .loader {
21 20 position: absolute;
21 + left: 50%;
22 22 top: 50%;
23 - left: 50%;
23 + margin-left: -16px;
24 24 margin-top: -16px;
25 - margin-left: -16px;
26 25 }
27 26
28 27 /******************************************************************************/
29 28 /******************************** SIDEBAR ***********************************/
@@ -29,264 +28,207 @@
29 28 /******************************** SIDEBAR ***********************************/
30 29 /******************************************************************************/
31 30
32 31 #sidebar {
33 - overflow: auto;
34 32 position: absolute;
35 - z-index: 75;
36 33 top: 0;
37 34 right: 0;
38 35 bottom: 60px;
39 36 width: 299px;
40 - border-left: 1px solid #dfdfdf;
37 + z-index: 75;
41 38 background: whitesmoke;
42 -
39 + border-left: 1px solid #DFDFDF;
40 + overflow: auto;
43 41 -webkit-overflow-scrolling: touch;
44 42 }
45 43
46 -.viz-group {
44 +.group-wrapper {
45 + border-top: 1px solid #DFDFDF;
47 46 margin: 0;
48 - font-size: 12px;
49 - line-height: 18px;
47 + padding: 0;
50 48 list-style: none;
51 49 }
52 50
53 -.viz-group .viz-group-header .viz-group-title {
54 - margin: 10px 0;
55 - padding: 15px 20px;
56 - border-top: 1px solid #ddd;
57 - border-bottom: 1px solid #ddd;
58 - color: #555d66;
59 - background: #fff;
51 +.group {
52 + margin: 0;
53 + list-style: none;
54 + font-size: 12px;
55 + line-height: 18px;
60 56 }
61 57
62 -.viz-group-wrapper ul .viz-group-title {
63 - border-top: 1px solid #ddd;
58 +.group.open {
59 + border-bottom: 1px solid #DFDFDF;
64 60 }
65 61
66 -.viz-group-wrapper ul li {
67 - border-top: 1px solid #ddd;
68 -}
69 -
70 -.viz-group-wrapper ul ul li.viz-subsection {
71 - margin: 5px;
72 - border: 1px solid #ddd;
73 -}
74 -
75 -.viz-group-wrapper .viz-group .viz-group .viz-group-title {
62 +.group-title {
63 + border-top: 1px solid white;
64 + border-bottom: 1px solid #DFDFDF;
76 65 position: relative;
66 + cursor: pointer;
67 + -webkit-user-select: none;
68 + -moz-user-select: none;
69 + -ms-user-select: none;
70 + user-select: none;
77 71 margin: 0;
78 - padding: 10px 10px 11px 14px;
79 - border-top: none;
80 - border-bottom: none;
81 - border-left: 4px solid #fff;
82 - color: #555d66;
83 - background-color: #fff;
84 - font-size: 14px;
85 - font-weight: 600;
86 - line-height: 21px;
87 - cursor: pointer;
88 - -webkit-transition: 0.15s color ease-in-out,0.15s background-color ease-in-out,0.15s border-color ease-in-out;
89 - transition: 0.15s color ease-in-out,0.15s background-color ease-in-out,0.15s border-color ease-in-out;
72 + padding: 10px 20px;
73 + font-size: 15px;
74 + font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
75 + font-weight: normal;
76 + text-shadow: 0 1px 0 white;
77 + background: whiteSmoke;
78 + background-image: -webkit-gradient(linear, left bottom, left top, from(#EEE), to(whiteSmoke));
79 + background-image: -webkit-linear-gradient(bottom, #EEE, whiteSmoke);
80 + background-image: -moz-linear-gradient(bottom, #EEE, whiteSmoke);
81 + background-image: -o-linear-gradient(bottom, #EEE, whiteSmoke);
82 + background-image: -ms-linear-gradient(bottom, #EEE, whiteSmoke);
83 + background-image: linear-gradient(bottom, #EEE, whiteSmoke);
90 84 }
91 85
92 -.viz-group-wrapper .viz-group .viz-group:hover .viz-group-title,
93 -.viz-group-wrapper .viz-group .viz-group.open .viz-group-title {
94 - border-left-color: #0073aa;
95 - color: #0073aa;
96 - background: #f3f3f5;
86 +.group-title:hover,
87 +.group.open .group-title {
88 + color: white;
89 + text-shadow: 0 -1px 0 #333;
90 + background: gray;
91 + background-image: -webkit-gradient(linear, left bottom, left top, from(#6D6D6D), to(gray));
92 + background-image: -webkit-linear-gradient(bottom, #6D6D6D, gray);
93 + background-image: -moz-linear-gradient(bottom, #6D6D6D, gray);
94 + background-image: -o-linear-gradient(bottom, #6D6D6D, gray);
95 + background-image: -ms-linear-gradient(bottom, #6D6D6D, gray);
96 + background-image: linear-gradient(bottom, #6D6D6D, gray);
97 97 }
98 98
99 -.viz-group-wrapper .viz-group .viz-group .viz-group-title:after {
99 +.group-title::after {
100 + content: '';
101 + width: 0;
102 + height: 0;
103 + border-color: #CCC transparent;
104 + border-style: solid;
105 + border-width: 6px 6px 0;
100 106 position: absolute;
107 + top: 15px;
108 + right: 20px;
101 109 z-index: 1;
102 - top: 11px;
103 - right: 10px;
104 - color: #a0a5aa;
105 - font: 400 20px/1 dashicons;
106 - content: "\f345";
107 110 }
108 111
109 -.viz-group-wrapper .viz-group .viz-group.open .viz-group-title:after {
110 - content: "\f347";
112 +.group-title:hover::after,
113 +.group.open .group-title::after {
114 + border-color: #EEE transparent;
111 115 }
112 116
113 -.viz-group-wrapper .viz-group .customize-section-back {
114 - display: block;
115 - float: left;
116 - width: 42px;
117 - height: 49px;
118 - margin: 0 15px 0 0;
119 - padding: 0;
120 - border: none;
121 - border-top: 1px solid #ddd;
122 - border-right: 1px solid #ddd;
123 - border-left: 4px solid #fff;
124 - background: #fff;
125 - box-shadow: none;
126 - cursor: pointer;
127 - -webkit-transition: color 0.15s ease-in-out,border-color 0.15s ease-in-out,background 0.15s ease-in-out;
128 - transition: color 0.15s ease-in-out,border-color 0.15s ease-in-out,background 0.15s ease-in-out;
117 +.group:hover .group-title {
118 + border-top-color: gray;
129 119 }
130 120
131 -.viz-group-wrapper .viz-group .customize-section-back:hover {
132 - border-left-color: #0073aa;
133 - outline: 0;
134 - color: #0073aa;
135 - background: #f3f3f5;
121 +.group.open .group-title {
122 + border-top-color: #6D6D6D;
136 123 }
137 124
138 -.viz-group-wrapper .viz-group .customize-section-back:before {
139 - position: relative;
140 - top: -11px;
141 - left: -2px;
142 - font: 400 20px/72px dashicons;
143 - content: "\f341";
125 +.group.open .group-title::after {
126 + border-width: 0 6px 6px;
144 127 }
145 128
146 -.viz-group-wrapper.full-height {
147 - float: left;
148 - position: relative;
149 - width: 100%;
150 - height: 100%;
129 +.group-content {
151 130 margin: 0;
152 -}
153 -
154 -.viz-group.bottom-fixed {
155 - display: block;
156 - position: absolute;
157 - bottom: 0;
158 - width: 100%;
159 -}
160 -
161 -.viz-group ul li h2,
162 -.viz-group ul li h3 {
163 - padding: 7px 15px 7px 35px;
164 -}
165 -
166 -.viz-group h2 .dashicons,
167 -.viz-group h3 .dashicons {
168 - margin-right: 5px;
169 - vertical-align: -5px;
170 -}
171 -
172 -.viz-group-content {
173 131 display: none;
174 - margin: 0;
175 - padding: 0;
176 - background-color: #fdfdfd;
132 + background-color: #FDFDFD;
133 + padding: 10px 0 20px 0;
134 + overflow: hidden;
177 135 }
178 136
179 -div.viz-group-content {
180 - padding: 15px;
137 +div.group-content {
138 + padding: 10px 20px 20px;
181 139 }
182 140
183 -.viz-group.open > .viz-group-content {
141 +.group.open .group-content {
184 142 display: block;
185 143 }
186 144
187 -.viz-group-description {
145 +.group-description {
146 + font-size: 12px;
147 + color: #555;
148 + padding: 5px 20px 10px;
188 149 margin: 0;
189 - padding: 5px;
190 - color: #555;
191 - font-size: 12px;
192 - text-align: left;
193 150 }
194 151
195 -div.viz-group-content .viz-group-description {
196 - padding: 5px;
197 - font-family: "Montserrat",sans-serif;
198 - font-weight: 300;
199 -}
200 -
201 -.initial-screen .viz-group-description {
152 +div.group-content .group-description {
202 153 padding: 0;
203 - padding: 10px 20px 20px;
204 - font-family: "Montserrat",sans-serif;
205 - font-weight: 300;
154 + margin-bottom: 20px;
206 155 }
207 156
208 -.viz-section-title {
157 +.section-title {
209 158 display: block;
159 + font-weight: bold;
210 160 position: relative;
161 + cursor: pointer;
162 + padding: 4px 20px;
211 163 margin-bottom: 5px;
212 - padding: 4px 20px;
213 - border-top: 1px solid #eee;
214 - border-bottom: 1px solid #eee;
215 164 background-color: rgba(0, 0, 0, 0.02);
165 + border-top: 1px solid #eeeeee;
166 + -webkit-box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);
216 167 box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);
217 - font-weight: bold;
218 - cursor: pointer;
168 + border-bottom: 1px solid #eeeeee;
219 169 }
220 170
221 -.viz-group-wrapper ul ul li .viz-section-title {
222 - margin-bottom: 0;
223 - border: none;
224 - box-shadow: none;
225 -}
226 -
227 -.viz-section-title::after {
171 +.section-title::after {
172 + content: '';
173 + width: 0;
174 + height: 0;
175 + border-color: #CCC transparent;
176 + border-style: solid;
177 + border-width: 4px 4px 0;
228 178 position: absolute;
229 - z-index: 1;
230 179 top: 13px;
231 180 right: 20px;
232 - width: 0;
233 - height: 0;
234 - border-width: 4px 4px 0;
235 - border-style: solid;
236 - border-color: #ccc transparent;
237 - content: "";
181 + z-index: 1;
238 182 }
239 183
240 -.viz-section-title.open::after {
184 +.section-title.open::after {
241 185 border-width: 0 4px 4px;
242 186 }
243 187
244 -.section-items,
245 -.viz-section-items {
188 +.section-items {
246 189 display: none;
247 - padding: 15px;
190 + padding: 5px 20px 10px 20px;
248 191 }
249 192
250 -.viz-section-items.open {
193 +.section-items.open {
251 194 display: block;
252 195 }
253 196
254 197 .more-info {
255 - display: none;
256 - float: right;
257 - color: #21759b;
198 + text-decoration: none;
199 + color: #21759B;
258 200 font-size: 85%;
259 201 font-weight: normal;
260 - text-decoration: none;
202 + float: right;
203 + display: none;
261 204 }
262 205
263 -.viz-section-description {
264 - margin: 0;
206 +.section-description {
265 207 /*display: none;*/
266 208 padding: 0;
209 + margin: 0;
210 + font-size: 11px;
267 211 color: gray;
268 - font-size: 11px;
269 212 }
270 213
271 -.viz-section-table {
214 +.section-table {
272 215 width: 100%;
273 216 }
274 217
275 -.section-delimiter,
276 -.viz-section-delimiter {
218 +.section-delimiter {
277 219 margin: 15px 0;
278 220 border-top: 1px dashed #ccc;
279 221 }
280 222
281 -.viz-section-table-column {
223 +.section-table-column {
282 224 width: 50%;
283 - padding: 0 1px;
284 225 text-align: left;
285 226 vertical-align: top;
227 + padding: 0 1px;
286 228 }
287 229
288 -.viz-section-item {
230 +.section-item {
289 231 margin-bottom: 10px;
290 232 }
291 233
292 234 .control-select,
@@ -293,74 +235,34 @@
293 235 .control-text {
294 236 width: 100%;
295 237 }
296 238
297 -.control-check {
298 - float: right;
299 -}
300 -
301 -.control-check::after {
302 - clear: both;
303 -}
304 -
305 -.viz-section-description ul {
239 +.section-description ul {
306 240 margin: 0 0 0 25px;
307 241 list-style: circle;
308 242 }
309 243
310 -.viz-section-description li {
244 +.section-description li {
245 + list-style: circle;
311 246 margin: 0;
312 - list-style: circle;
313 247 }
314 248
315 -#rate-the-plugin {
316 - margin-top: 40px;
317 - padding: 20px;
318 - border-top: 1px dashed #ddd;
319 - text-align: center;
320 -}
321 -
322 -.rate-the-plugin {
323 - width: 40% !important;
324 - margin-top: -5px;
325 -}
326 -
327 -#rate-stars {
328 - width: 100px;
329 - height: 20px;
330 - margin: 15px auto;
331 - background-image: url("../images/star.png");
332 - background-repeat: repeat-x;
333 - background-position: right center;
334 -}
335 -
336 -#rate-link {
337 - font-family: "Montserrat",sans-serif;
338 - font-weight: 400;
339 - text-decoration: none;
340 -}
341 -
342 -#flattr {
343 - margin-top: 15px;
344 - text-align: center;
345 -}
346 -
347 249 /******************************************************************************/
348 250 /******************************** TOOLBAR ***********************************/
349 251 /******************************************************************************/
350 252
351 253 #toolbar {
352 - overflow: hidden;
254 + height: 36px;
255 + padding: 12px 16px;
353 256 position: absolute;
354 257 z-index: 100;
258 + left: 0;
355 259 right: 0;
356 260 bottom: 0;
357 - left: 0;
358 - height: 36px;
359 - padding: 12px 16px;
360 - border-top: 1px solid #dfdfdf;
261 + border-top: 1px solid #DFDFDF;
262 + overflow: hidden;
263 + -webkit-box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1);
361 264 box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1);
362 - text-align: center;
363 265 }
364 266
365 267 #toolbar .push-right {
366 268 float: right;
@@ -365,108 +267,65 @@
365 267 #toolbar .push-right {
366 268 float: right;
367 269 }
368 270
369 -.toolbar-div a {
370 - float: left;
371 -}
372 -
373 -.toolbar-div {
374 - display: inline-block;
375 - float: left;
376 - width: 30%;
377 - vertical-align: top;
378 -}
379 -
380 271 /******************************************************************************/
381 272 /******************************** TYPE PICKER ******************************/
382 273 /******************************************************************************/
383 274
384 -.type-box span {
385 - display: block;
386 - position: absolute;
387 - right: 0;
388 - bottom: -6px;
389 - width: 100%;
390 - padding: 4px 0;
391 - border-top: 1px dashed #ddd;
392 - border-bottom: 1px dashed #ddd;
393 - background: #e0e0e0;
394 - background-color: #efefef;
395 - box-shadow: 0 0 8px #ddd;
396 - font-weight: bold;
397 - text-align: center;
398 -}
399 -
400 -.type-box .pro-upsell {
401 - color: #c55555;
402 -}
403 -
404 275 #type-picker {
405 - width: 954px;
406 276 margin: 50px auto;
277 + width: 952px;
407 278 }
408 279
409 280 .type-box {
410 281 float: left;
411 - position: relative;
412 282 margin: 0 20px 20px 0;
413 283 border: 1px dashed #ddd;
284 + -webkit-box-shadow: 0px 0px 8px #ddd;
285 + box-shadow: 0px 0px 8px #ddd;
414 286 background-color: #efefef;
415 - box-shadow: 0 0 8px #ddd;
416 287 }
417 288
418 289 .type-box:nth-child(3n+3) {
419 - margin-right: 0;
290 + margin-right: 0px;
420 291 }
421 292
422 -.type-box .pro-upsell .visualizder-pro-label {
423 - display: inline;
424 - position: absolute;
425 - top: 0;
426 - width: 74px;
427 - height: 10px;
428 - height: 17px;
429 - border: none;
430 - color: #fff;
431 - background: #c55555;
432 -}
433 -
434 293 .type-label {
435 294 display: block;
436 295 width: 270px;
437 - height: 205px;
296 + height: 195px;
438 297 padding: 15px;
439 - border: 1px solid #e0e0e0;
440 298 background-color: white;
441 299 background-image: url(../images/chart_types_g.png);
442 300 background-repeat: no-repeat;
443 301 background-position: center center;
302 + border: 1px solid #e0e0e0;
444 303 }
445 304
446 305 .type-label-selected,
447 -.type-box > .type-label:hover {
306 +.type-label:hover {
448 307 background-image: url(../images/chart_types.png);
449 308 }
450 309
451 310 .type-box-area .type-label {
452 - background-position: 0 -225px;
311 + background-position: 0px -225px;
453 312 }
454 313
455 314 .type-box-line .type-label {
456 - background-position: -600px 0;
315 + background-position: -600px 0px;
457 316 }
458 317
459 318 .type-box-scatter .type-label {
460 - background-position: -300px 0;
319 + background-position: -300px 0px;
461 320 }
462 321
463 322 .type-box-pie .type-label {
464 - background-position: 0 0;
323 + background-position: 0px 0px;
465 324 }
466 325
467 326 .type-box-gauge .type-label {
468 - background-position: 0 -450px;
327 + background-position: 0px -450px;
469 328 }
470 329
471 330 .type-box-geo .type-label {
472 331 background-position: -600px -450px;
@@ -483,20 +342,8 @@
483 342 .type-box-column .type-label {
484 343 background-position: -600px -225px;
485 344 }
486 345
487 -.type-box-table .type-label {
488 - background-position: -301px -670px;
489 -}
490 -
491 -.type-box-timeline .type-label {
492 - background-position: -2px -670px;
493 -}
494 -
495 -.type-box-combo .type-label {
496 - background-position: -597px -670px;
497 -}
498 -
499 346 /******************************************************************************/
500 347 /******************************** OTHER STYLES ******************************/
501 348 /******************************************************************************/
502 349
@@ -501,33 +348,30 @@
501 348 /******************************************************************************/
502 349
503 350 #thehole {
504 351 position: absolute;
352 + left: 0;
505 353 top: 0;
506 - left: 0;
507 354 width: 1px;
508 355 height: 1px;
509 356 border: 0;
510 - opacity: 0;
511 -
512 - filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
513 - -moz-opacity: 0;
357 + opacity: 0;
358 + -moz-opacity: 0;
359 + filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
514 360 }
515 361
516 -.locker,
517 -.locker-loader {
362 +.locker, .locker-loader {
363 + left: 0;
364 + top: 0;
518 365 position: absolute;
519 - top: 0;
520 - left: 0;
521 366 }
522 367
523 368 .locker {
524 369 z-index: 1000;
525 - opacity: 0.8;
526 370 background-color: white;
527 -
528 371 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
529 372 filter: alpha(opacity=80);
373 + opacity: 0.8;
530 374 }
531 375
532 376 .locker-loader {
533 377 z-index: 1001;
@@ -534,525 +378,18 @@
534 378 background: url(../images/ajax-loader.gif) no-repeat center center;
535 379 }
536 380
537 381 .file-wrapper {
538 - display: inline-block;
539 - width: auto;
540 - max-width: 133px;
382 + position: relative;
383 + margin-right: 10px !important;
541 384 }
542 385
543 386 .file {
544 - position: fixed;
545 - max-width: 138px;
546 - margin-top: -6px;
547 - margin-left: -33px;
548 - opacity: 0;
549 - font-size: 22px;
550 - cursor: pointer;
551 -
552 - filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
553 - -moz-opacity: 0;
554 -}
555 -
556 -#remote-file {
557 - display: inline-block;
558 - float: right;
559 - margin-left: 6px;
560 -}
561 -
562 -.form-inline {
563 - display: table;
564 - /*margin: 0 auto;*/
565 - width: 100%;
566 - vertical-align: middle;
567 -}
568 -
569 -.computer-btn {
570 - overflow: hidden;
571 - left: -18px;
572 - padding-left: 27px !important;
573 - border: medium none rgb(100, 100, 100) !important;
574 - border: 1px solid #b0b0b0 !important;
575 - color: #646464 !important;
576 - background: #e6e6e6 url("../images/computer.png") no-repeat scroll 7px 1px !important;
577 - box-shadow: none !important;
578 - text-shadow: none!important;
579 - font-family: "Open Sans",sans-serif;
580 - font-weight: 700;
581 - -webkit-transition: all 0.3s ease 0s;
582 - transition: all 0.3s ease 0s;
583 -}
584 -
585 -.computer-btn:hover {
586 - padding-left: 27px !important;
587 - border: 1px solid #2f8cea !important;
588 - color: white !important;
589 - background: #2f8cea url("../images/computer.png") no-repeat scroll 7px -36px !important;
590 - box-shadow: 0 1px 0 rgba(171, 171, 171, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.15) !important;
591 - box-shadow: none !important;
592 - -webkit-transition: all 0.3s ease 0s;
593 - -webkit-transition: all 0.3s ease;
594 - transition: all 0.3s ease 0s;
595 - transition: all 0.3s ease;
596 -}
597 -
598 -.from-web {
599 - margin-top: 0;
600 - margin-bottom: 15px !important;
601 -}
602 -
603 -.from-web-btn {
604 - padding-left: 25px !important;
605 - border: medium none #646464 !important;
606 - border: 1px solid #b0b0b0 !important;
607 - color: #646464 !important;
608 - background: #e6e6e6 url("../images/web.png") no-repeat scroll 7px 1px !important;
609 - box-shadow: none !important;
610 - font-family: "Open Sans",sans-serif;
611 - font-weight: 700;
612 - -webkit-transition: all 0.3s ease 0s;
613 - transition: all 0.3s ease 0s;
614 - /*margin-left: 2px !important;*/
615 -}
616 -
617 -.from-web-btn:hover {
618 - padding-left: 25px !important;
619 - /*margin-left: 2px !important;*/
620 - border: 1px solid #89b158 !important;
621 - color: white !important;
622 - background: #89b158 url("../images/web.png") no-repeat scroll 7px -38px !important;
623 - box-shadow: none !important;
624 - -webkit-transition: all 0.3s ease 0s;
625 - -webkit-transition: all 0.3s ease;
626 - transition: all 0.3s ease 0s;
627 - transition: all 0.3s ease;
628 -}
629 -
630 -.preview {
631 - width: 100%;
632 -}
633 -
634 -#sidebar > ul > div.initial-screen > div {
635 - padding: 0 20px;
636 -}
637 -
638 -.from-chart-btn {
639 - padding-left: 25px !important;
640 - border: medium none #646464 !important;
641 - border: 1px solid #b0b0b0 !important;
642 - color: #646464 !important;
643 - background: #e6e6e6 url("../images/from_chart.png") no-repeat scroll 7px 1px !important;
644 - box-shadow: none !important;
645 - font-family: "Open Sans",sans-serif;
646 - font-weight: 700;
647 - -webkit-transition: all 0.3s ease 0s;
648 - transition: all 0.3s ease 0s;
649 - /*margin-left: 2px !important;
650 - margin-top: 2px !important;*/
651 -}
652 -
653 -.from-chart-btn:hover {
654 - padding-left: 25px !important;
655 - /*margin-left: 2px !important;*/
656 - border: 1px solid #10aecb !important;
657 - color: white !important;
658 - background: #10aecb url("../images/from_chart.png") no-repeat scroll 7px -36px !important;
659 - box-shadow: none !important;
660 - -webkit-transition: all 0.3s ease 0s;
661 - -webkit-transition: all 0.3s ease;
662 - transition: all 0.3s ease 0s;
663 - transition: all 0.3s ease;
664 - /*margin-top: 2px !important;*/
665 -}
666 -
667 -input#existing-chart {
668 - /*left: 18px;
669 - width: 110px;
670 - position: relative;*/
671 -}
672 -
673 -select#chart-id {
674 - float: right;
675 - width: 146px;
676 - margin-right: 14px;
677 -}
678 -
679 -button#editor-chart-button {
680 - display: block;
681 - margin: 0 auto;
682 - border: 1px solid #2c80d6 !important;
683 - color: white !important;
684 - background-color: #2f8cea !important;
685 - box-shadow: none !important;
686 - text-shadow: none;
687 - -webkit-transition: all 0.3s ease;
688 - transition: all 0.3s ease;
689 -}
690 -
691 -.preview-btn {
692 - border: 1px solid #2c80d6 !important;
693 - color: white !important;
694 - background-color: #2f8cea !important;
695 - box-shadow: none !important;
696 - font-family: "Open Sans",sans-serif;
697 - font-weight: 700;
698 - -webkit-transition: all 0.3s ease;
699 - transition: all 0.3s ease;
700 -}
701 -
702 -.preview-btn:hover {
703 - border: 1px solid #2c80d6 !important;
704 - color: white !important;
705 - background-color: #2c80d6 !important;
706 - box-shadow: none !important;
707 - font-family: "Open Sans",sans-serif;
708 - font-weight: 700;
709 - -webkit-transition: all 0.3s ease;
710 - transition: all 0.3s ease;
711 -}
712 -
713 -.show-live-btn {
714 - width: 100%;
715 - margin-top: 15px !important;
716 - border-color: #e98b00 !important;
717 - background-color: #f90 !important;
718 - box-shadow: none !important;
719 - font-family: "Open Sans",sans-serif;
720 - font-weight: 700;
721 -}
722 -
723 -.show-live-btn:hover {
724 - width: 100%;
725 - margin-top: 15px !important;
726 - border-color: #e98b00 !important;
727 - background-color: #ea8c00 !important;
728 - box-shadow: none !important;
729 - font-family: "Open Sans",sans-serif;
730 - font-weight: 700;
731 - -webkit-transition: all 0.3s ease;
732 - transition: all 0.3s ease;
733 -}
734 -
735 -.check-pro-btn {
736 - display: block;
737 - width: 245px;
738 - height: 40px;
739 - margin: 0 auto;
740 -}
741 -
742 -.advanced-settings-btn,
743 -.return-settings-btn {
744 - display: block;
745 - height: auto;
746 - margin: 0 auto;
747 - margin-top: 5px;
748 - margin-bottom: 20px;
749 - border-radius: 3px;
750 - font-size: 17px;
751 - line-height: 34px;
752 - cursor: pointer;
753 -}
754 -
755 -.return-settings-btn {
756 - width: 90%;
757 -}
758 -
759 -.advanced-settings-btn {
760 - width: 100%;
761 -}
762 -
763 -.return-settings-btn {
764 - margin: 10px auto;
765 -}
766 -
767 -.hidden-setting {
768 - display: none;
769 -}
770 -
771 -/* ====== RESPONSIVE ====== */
772 -
773 -@media (max-width: 1366px) {
774 - #rate-stars {
775 - margin: 3px 0 10px 40%;
776 - }
777 -
778 - .rate-the-plugin {
779 - margin-left: -8%;
780 - }
781 -}
782 -
783 -@media screen and (max-width: 782px) {
784 - .button.button-primary.file-wrapper.computer-btn,
785 - #remote-file,
786 - #existing-chart {
787 - height: 28px;
788 - margin-bottom: 4px;
789 - padding: 0 10px 1px;
790 - font-size: 13px;
791 - line-height: 26px;
792 - vertical-align: middle;
793 - }
794 -}
795 -
796 -#vz-chart-settings h2:hover,
797 -#vz-chart-permissions h2:hover,
798 -.sidebar-footer-link h2:hover,
799 -#vz-chart-review a:hover {
800 - text-decoration: none;
801 -}
802 -
803 -#vz-chart-review a {
804 - color: #00a0d2;
805 - text-decoration: none;
806 -}
807 -
808 -#vz-chart-settings h2,
809 -#vz-chart-permissions h2,
810 -.sidebar-footer-link h2,
811 -#vz-chart-review h2 {
812 - padding: 0;
813 - border: none;
814 - font-size: 12px;
815 - font-weight: 400;
816 -}
817 -
818 -#vz-chart-review {
819 - right: 0;
820 - bottom: 10px;
821 - box-sizing: border-box;
822 - width: 40%;
823 - padding-right: 6px;
824 - text-align: right;
825 -}
826 -
827 -#vz-chart-settings.bottom-fixed h2 {
828 - padding-left: 6px;
829 -}
830 -
831 -#vz-chart-settings {
832 - bottom: 40px;
387 + position: absolute;
388 + top: 0;
833 389 left: 0;
834 - box-sizing: border-box;
835 - width: 33%;
836 - text-align: left;
837 -}
838 -
839 -#vz-chart-permissions:not(.open) h2 {
840 - display: inline-block;
841 - width: 100%;
842 - margin: 0;
843 - text-align: right;
844 -}
845 -
846 -#vz-chart-permissions {
847 390 right: 0;
848 - bottom: 40px;
849 - box-sizing: border-box;
850 - width: 33%;
851 - text-align: left;
852 -}
853 -
854 -#vz-chart-permissions h2,
855 -#vz-chart-settings h2,
856 -.sidebar-footer-link h2 {
857 - display: inline;
858 - color: #00a0d2;
859 - background: none;
860 - font-family: "Open Sans",sans-serif;
861 - cursor: pointer;
862 -}
863 -
864 -.sidebar-footer-link,
865 -#vz-chart-review,
866 -#vz-chart-permissions,
867 -#vz-chart-settings {
868 - display: inline;
869 - background: none;
870 - cursor: pointer;
871 -}
872 -
873 -.sidebar-footer-link > ul,
874 -#vz-chart-source > ul,
875 -#vz-chart-permissions > ul,
876 -#vz-chart-settings > ul {
877 - position: relative;
878 - z-index: 10;
879 - border-bottom: 1px solid #ddd;
880 -}
881 -
882 -#vz-chart-copyright {
883 - bottom: 10px;
884 - text-align: center;
885 -}
886 -
887 -#sidebar {
888 - border-left: 1px solid #ddd;
889 - background: #f3f3f3;
890 -}
891 -
892 -#vz-chart-permissions.open h2 {
893 - position: absolute;
894 - right: 6px;
895 - bottom: 28px;
896 - left: auto;
897 - width: 50%;
898 - text-align: right;
899 -}
900 -
901 -#vz-chart-settings.open h2 {
902 - position: absolute;
903 - bottom: 28px;
904 - left: 6px;
905 -}
906 -
907 -#vz-chart-permissions .viz-group-header,
908 -#vz-chart-settings.open .viz-group-header {
909 - display: block;
910 -}
911 -
912 -#vz-chart-permissions .viz-group-header,
913 -#vz-chart-settings .viz-group-header {
914 - display: none;
915 -}
916 -
917 -.sidebar-footer-link.open h2 {
918 - position: absolute;
919 - bottom: 28px;
920 - left: 20px;
921 -}
922 -
923 -.sidebar-footer-link.open .viz-group-header {
924 - display: block;
925 -}
926 -
927 -.sidebar-footer-link .viz-group-header {
928 - display: none;
929 -}
930 -
931 -#vz-csv-file-form,
932 -#vz-one-time-import,
933 -#vz-schedule-import,
934 -.edit-data-content {
935 - text-align: center;
936 -}
937 -
938 -#csv-file {
939 - margin: 15px 0;
940 - padding: 0;
941 -}
942 -
943 -.visualizer-input,
944 -.visualizer-select {
945 - width: 100%;
946 - margin: 0 0 15px;
947 -}
948 -
949 -.viz-group .dashicons-lock {
950 - display: none;
951 -}
952 -
953 -.only-pro-feature .dashicons-lock {
954 - display: inline;
955 -}
956 -
957 -.viz-section-title .dashicons,
958 -.viz-group-title .dashicons {
959 - width: 18px;
960 - height: 18px;
961 - margin-left: 3px;
962 - font-size: 18px;
963 -}
964 -
965 -.only-pro-feature input,
966 -.only-pro-feature button,
967 -.only-pro-feature select {
968 - cursor: not-allowed !important;
969 - pointer-events: none;
970 -}
971 -
972 -.only-pro-feature > div {
973 - position: relative;
974 -}
975 -
976 -.only-pro-content {
977 - position: absolute;
978 - top: 0;
979 391 bottom: 0;
980 - left: 0;
981 - width: 100%;
982 - opacity: 0;
983 - background: rgba(253,253,253,0.9);
984 - -webkit-transition: 0.5s ease;
985 - transition: 0.5s ease;
986 -}
987 -
988 -.only-pro-feature:hover .only-pro-content {
989 - opacity: 1;
990 -}
991 -
992 -.only-pro-container {
993 - display: table;
994 - width: 100%;
995 - height: 100%;
996 -}
997 -
998 -.only-pro-inner {
999 - display: table-cell;
1000 - vertical-align: middle;
1001 -}
1002 -
1003 -.only-pro-content p {
1004 - margin: 0 0 15px;
1005 - font-size: 14px;
1006 - font-weight: 700;
1007 -}
1008 -
1009 -.only-pro-content a {
1010 - display: inline-block;
1011 - padding: 7px 12px;
1012 - color: #fff;
1013 - background: #ff595e;
1014 - font-weight: 600;
1015 - text-decoration: none;
1016 - text-transform: uppercase;
1017 - -webkit-transition: 0.1s ease;
1018 - transition: 0.1s ease;
1019 -}
1020 -
1021 -.only-pro-content a:hover {
1022 - background: #ce484c;
1023 -}
1024 -
1025 -#sidebar::-webkit-scrollbar {
1026 - width: 4px;
1027 -}
1028 -
1029 -#sidebar::-webkit-scrollbar-thumb {
1030 - background: #999;
1031 -}
1032 -
1033 -span.viz-section-error {
1034 - color: #ff000;
1035 -}
1036 -
1037 -#visualizer-error-manual {
1038 - color: #ff595e;
1039 -}
1040 -
1041 -#vz-chart-permissions {
1042 - width: 43%;
1043 -}
1044 -
1045 -#vz-chart-permissions {
1046 - color: #ce484c;
1047 -}
1048 -
1049 -#vz-chart-permissions {
1050 - right: 6px;
1051 - bottom: 40px;
1052 - width: 35%;
1053 -}
1054 -
1055 -#permissions-form .only-pro-feature > ul {
1056 - position: relative;
1057 - text-align: center;
1058 -}
392 + opacity: 0;
393 + -moz-opacity: 0;
394 + filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
395 +}