PluginProbe
Chartify – WordPress Chart Plugin / trunk
Chartify – WordPress Chart Plugin vtrunk
3.8.0 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 trunk 1.0.0 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 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.1.4 3.1.5 3.1.6 All 83 releases
chart-builder / admin / css / chart-builder-admin.css

chart-builder-admin.css in Chartify – WordPress Chart Plugin trunk, at admin/css/chart-builder-admin.css

1,107 lines 25.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 /* Sliding entrances */
3 @-webkit-keyframes slideInDown {
4 from {
5 -webkit-transform: translate3d(0, -100%, 0);
6 transform: translate3d(0, -100%, 0);
7 visibility: visible;
8 }
9
10 to {
11 -webkit-transform: translate3d(0, 0, 0);
12 transform: translate3d(0, 0, 0);
13 }
14 }
15 @keyframes slideInDown {
16 from {
17 -webkit-transform: translate3d(0, -100%, 0);
18 transform: translate3d(0, -100%, 0);
19 visibility: visible;
20 }
21
22 to {
23 -webkit-transform: translate3d(0, 0, 0);
24 transform: translate3d(0, 0, 0);
25 }
26 }
27 .animate__slideInDown {
28 -webkit-animation-name: slideInDown;
29 animation-name: slideInDown;
30 }
31
32 @-webkit-keyframes slideOutUp {
33 from {
34 -webkit-transform: translate3d(0, 0, 0);
35 transform: translate3d(0, 0, 0);
36 }
37
38 to {
39 visibility: hidden;
40 -webkit-transform: translate3d(0, -100%, 0);
41 transform: translate3d(0, -100%, 0);
42 }
43 }
44 @keyframes slideOutUp {
45 from {
46 -webkit-transform: translate3d(0, 0, 0);
47 transform: translate3d(0, 0, 0);
48 }
49
50 to {
51 visibility: hidden;
52 -webkit-transform: translate3d(0, -100%, 0);
53 transform: translate3d(0, -100%, 0);
54 }
55 }
56 .animate__slideOutUp {
57 -webkit-animation-name: slideOutUp;
58 animation-name: slideOutUp;
59 }
60
61 .animate__animated {
62 -webkit-animation-duration: 1s;
63 animation-duration: 1s;
64 }
65
66 .chart-add-new-bttn {
67 width: 118px;
68 height: 40px;
69 padding: 8px 14px;
70 font-size: 14px;
71 }
72 .chart-list-table {
73 border-collapse: collapse;
74 border: 1px solid #ccc;
75 border-radius: 5px;
76 width: 100%;
77 box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
78 padding-bottom: 18px;
79 }
80 .chart-list-table tbody tr {
81 box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
82 /* margin-bottom: 6px!important; */
83 }
84
85 .chart-list-table thead {
86 background-color: #f1f1f1;
87 }
88 .chart-list-table thead th {
89 font-weight: normal;
90 }
91 .chart-list-table tbody {
92 background-color: #fff;
93 }
94 .chart-list-table tbody tr:hover {
95 background-color: #f1f1f1;
96 transition: 50ms;
97 }
98 /* .chart-list-table tr td {
99 border: 1px solid #ccc;
100 } */
101 td.column-title {
102 width: 190px;
103 height: 70px;
104 min-height: 70px;
105 }
106 .chart-list-table td {
107 vertical-align: middle;
108 }
109 .chart-list-table th:not(.column-title), .chart-list-table td:not(.column-title) {
110 text-align: center;
111 }
112
113 .chart-list-table .column-cb {
114 text-align: center;
115 }
116 .chart-list-table .chart-list-table-actions-row {
117 display: none;
118 gap: 5px;
119 }
120
121 .chart-list-table .chart-list-table-actions-row .chart-list-table-action-link {
122 display: inline-block;
123 }
124 .column-type>p {
125 margin-bottom: 0;
126 }
127
128 .ays-chart-shortcode-container {
129 width: fit-content;
130 background-color: #f4f5f7;
131 border-radius: 5px;
132 overflow: hidden;
133 display: flex;
134 justify-content: space-between;
135 box-shadow: 1px 1px 1px #cacaca;
136 margin: auto;
137 }
138 .ays-chart-copy-image {
139 width: 32px;
140 height: auto;
141 display: flex;
142 justify-content: center;
143 align-items: center;
144 background-color: #ebecf0;
145 cursor: pointer;
146 }
147 .ays-chart-shortcode-container input {
148 border: none!important;
149 background-color: #f4f5f7;
150 }
151 .ays-chart-shortcode-container input[type=text]:focus {
152 border: none!important;
153 box-shadow: none!important;
154 background-color: #f4f5f7!important;
155 }
156
157 .link-danger,
158 .link-danger * {
159 color: #b32d2e;
160 }
161 .link-danger:hover,
162 .link-danger *:hover {
163 color: #b32d2e;
164 }
165
166
167 .ays-tab-content {
168 animation: fadeEffect 1s;
169 display: none;
170 }
171 .ays-tab-content-active {
172 display: block;
173 }
174 @keyframes fadeEffect {
175 from {opacity: 0;}
176 to {opacity: 1;}
177 }
178 .nav-tab-wrapper .nav-tab:focus{
179 box-shadow: none;
180 outline: none;
181 }
182
183 .nav-tab-wrapper.ays-chart-nav-tab-wrapper-chart {
184 display: flex;
185 align-items: center;
186 justify-content: flex-start;
187 flex-flow: row;
188 position:sticky;
189 top:35px;
190 }
191
192 .nav-tab.ays-chart-nav-tab-chart {
193 width: auto;
194 height: 43px;
195 background-color: #ffffff;
196 border: 0;
197 border-bottom: 2px solid #c4c4c4;
198 margin: 0;
199 flex-grow: 1;
200 display: flex;
201 align-items: center;
202 justify-content: center;
203 font-family: Arial, serif;
204 font-size: 17px;
205 color: #c4c4c4;
206 text-decoration: none solid rgb(196, 196, 196);
207 }
208
209 .nav-tab.ays-chart-nav-tab-chart.nav-tab-active {
210 color: #008cff;
211 border-bottom-color: #008cff;
212 }
213
214 .ays-chart-nav-tab-chart.nav-tab-active:focus:active {
215 border-bottom: 2px solid #008cff;
216 color: #008cff;
217 }
218
219 .ays-chart-nav-tab-chart:focus:active {
220 border-bottom: 2px solid #c4c4c4;
221 color: #c4c4c4;
222 }
223
224 .tooltip {
225 text-align: left !important;
226 position: absolute !important;
227 z-index: 9999;
228 }
229 .tooltip > .tooltip-inner {
230 position: relative !important;
231 width: max-content !important;
232 max-width: 300px !important;
233 text-align: justify!important;
234 box-shadow: 0px 0px 10px #fff;
235 }
236 .tooltip > .arrow {
237 left: calc(50% + 28px) !important;
238 }
239 .tooltip > .tooltip-inner img {
240 max-width: 100%;
241 height: 100%;
242 object-fit: contain;
243 }
244
245 .ays_help {
246 position: relative;
247 font-size: 12px;
248 color: dodgerblue !important;
249 cursor: help;
250 }
251
252 .ays_help_ul {
253 padding-left: 16px;
254 list-style-type: initial;
255 }
256
257 .swal2-container {
258 z-index: 9999999999!important;
259 }
260
261
262 div.ays-top-menu-wrapper {
263 position: relative;
264 display: flex;
265 align-items: center;
266 }
267 .ays_menu_left,
268 .ays_menu_right {
269 position: absolute;
270 cursor: pointer;
271 font-size: 16px;
272 height: 80%;
273 display: none;
274 align-items: center;
275 bottom: 0;
276 z-index: 3;
277 }
278 .ays_menu_left {
279 left: -10px;
280 padding-right: 20px;
281 padding-left: 2px;
282 }
283 .ays_menu_right {
284 right: -10px;
285 padding-left: 20px;
286 padding-right: 2px;
287 }
288
289
290 blockquote.error_message {
291 color: crimson;
292 font-size: 16px;
293 font-style: italic;
294 border-color: crimson;
295 }
296
297 blockquote.error_message a {
298 color: brown;
299 font-weight: bold;
300 }
301
302 blockquote {
303 font-size: 14px;
304 width: 100%;
305 margin: 0 auto;
306 font-style: italic;
307 color: #555555;
308 padding: 8px 15px 8px 15px;
309 border-left: 5px solid #78c0a8;
310 line-height: 1.6;
311 position: relative;
312 background: #ededed;
313 }
314
315 blockquote::before {
316 content: none;
317 }
318
319 blockquote::after {
320 content: "";
321 }
322
323 blockquote span {
324 display: block;
325 color: #333333;
326 font-style: normal;
327 font-weight: bold;
328 margin-top: 1em;
329 }
330
331 .ays-chart-type-info-box .ays-chart-type-info-box-text {
332 font-size: 14px;
333 font-style: italic;
334 text-transform: capitalize;
335 }
336
337 .ays-chart-type-info-box{
338 margin-top: 10px;
339 }
340
341 .ays-chart-charts-main-container {
342 max-width: 100%;
343 margin: auto;
344 }
345
346 /* Manual chart data type start */
347
348 .ays-chart-chart-source-data-main{
349 width: 100%;
350 max-width: 100%;
351 }
352
353 .ays-chart-chart-source-data-main .ays-chart-chart-source-data-input-box{
354 padding: 10px;
355 border-right: 1px solid #B8B8B8;
356 }
357
358 .ays-chart-chart-source-data-input-number>input {
359 width: 60px;
360 min-width: 60px;
361 max-width: 70px;
362 }
363
364 .ays-chart-chart-source-data-main .ays-chart-icons-remove-box{
365 padding: 10px;
366 cursor: pointer;
367 }
368
369 .ays-chart-chart-source-data-main .ays-chart-icons-remove-box .ays-chart-chart-source-data-remove-block {
370 width: 10px;
371 }
372
373 .ays-chart-chart-source-data-content-container {
374 display: flex;
375 justify-content: left;
376 align-items: flex-start;
377 }
378 .ays-chart-chart-source-data-content {
379 /* border-top-left-radius: 8px; */
380 /* border-bottom-left-radius: 8px; */
381 /* border-left-width: 5px; */
382 /* border-left-style: solid; */
383 /* border-right: 1px solid #B8B8B8; */
384 border-left: 1px solid #B8B8B8;
385 width: fit-content;
386 }
387
388 .ays-chart-chart-source-data-edit-block:nth-of-type(even) {
389 background-color: #fff;
390 }
391 .ays-chart-chart-source-data-edit-block {
392 display: flex;
393 align-items: center;
394 /* justify-content: space-between; */
395 }
396
397 .ays-chart-chart-source-data-edit-block:first-child {
398 border-top: 1px solid #B8B8B8;
399 }
400
401 .ays-chart-chart-source-data-edit-block:last-child {
402 border-bottom: 1px solid #B8B8B8;
403 }
404
405 .ays-chart-chart-source-data-main .ays-chart-icons-box img,
406 .ays-chart-chart-source-data-main .ays-chart-icons-box.ays-chart-add-new-row-box,
407 .ays-chart-chart-source-data-main .ays-chart-icons-box.ays-chart-add-new-column-box {
408 cursor: pointer;
409 }
410
411 .ays-chart-icons-box.ays-chart-add-new-row-box,
412 .ays-chart-icons-box.ays-chart-add-new-column-box {
413 font-size: 15px;
414 border: 1px solid #B8B8B8;
415 width: fit-content;
416 padding: 7px;
417 margin-top: 5px;
418 border-radius: 5px;
419 }
420 .ays-chart-icons-box.ays-chart-add-new-column-box {
421 margin-top: 0;
422 margin-left: 5px;
423 }
424
425 /* Manual chart data type end */
426
427 /*.ays-chart-nav-tab-wrapper.nav-tab-wrapper {*/
428 /* border-bottom: none;*/
429 /* padding-top: 0;*/
430 /* background: #ffffff;*/
431 /* margin-bottom: 10px;*/
432 /*}*/
433 /*.ays-chart-nav-tab.nav-tab-active, .ays-chart-nav-tab.nav-tab-active:focus, .ays-chart-nav-tab.nav-tab-active:focus:active, .ays-chart-nav-tab.nav-tab-active:hover {*/
434 /* border-bottom: 2px solid #008cff;*/
435 /* background: #ffffff;*/
436 /* color: #008cff;*/
437 /*}*/
438 /*.ays-chart-nav-tab:focus, .ays-chart-nav-tab:hover {*/
439 /* background: #ffffffbe;*/
440 /*}*/
441 /*.ays-chart-nav-tab-wrapper>.ays-chart-nav-tab.nav-tab-active {*/
442 /* border-bottom: 2px solid #008cff;*/
443 /* background: #ffffff;*/
444 /* color: #008cff;*/
445 /*}*/
446 /*.ays-chart-nav-tab-wrapper>.ays-chart-nav-tab {*/
447 /* border: none;*/
448 /* border-bottom: 2px solid #c4c4c4;*/
449 /* margin-left: 0;*/
450 /* padding: 7px 0;*/
451 /* text-align: center;*/
452 /* font-size: 16px;*/
453 /* background: #ffffff;*/
454 /* color: #c4c4c4;*/
455 /* width: 50%;*/
456 /* display: inline-block;*/
457 /*}*/
458
459 /* Settings tab start */
460
461 /*.ays-tab-content#settings {*/
462 /* border-left: 2px solid #008cff;*/
463 /*}*/
464 .ays-chart-settings-tab-section {
465 display: flex;
466 justify-content: flex-start;
467 align-items: center;
468 background-color: #ffffff;
469 padding: 10px 0 10px 5px;
470 cursor: pointer;
471 }
472 .ays-chart-tab-subtitle {
473 margin: 0 0 0 5px;
474 font-size: 13px;
475 }
476 .ays-chart-options-section-title {
477 font-size: 16px;
478 font-weight: bold;
479 text-indent: 20px;
480 }
481 .ays-chart-settings-tab-section-collapsed {
482 display: none;
483 padding: 10px 20px;
484 background-color: #ffffff;
485 }
486 /* .ays-chart-options-section:not(:last-child) {
487 margin-bottom: 10px;
488 } */
489 .ays-chart-options-section {
490 width: 100%;
491 height: fit-content;
492 border-radius: 10px;
493 background-color: #f1f1f1;
494 box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
495 display: flex;
496 justify-content: space-between;
497 align-items: center;
498 padding: 5px 15px;
499 }
500 .ays-chart-option-title>label {
501 font-size: 14px;
502 margin-bottom: 0;
503 }
504 .ays-chart-option-input {
505 display: flex;
506 align-items: center;
507 justify-content: flex-end;
508 /* width: 65%; */
509 }
510 .ays-chart-option-input>.ays-chart-option-text-input {
511 width: 100%;
512 height: 30px!important;
513 padding: 0px 8px;
514 border: none;
515 background-color: #ffffff;
516 box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
517 margin-top: 0!important;
518 }
519 #ays-chart-option-title-color {
520 height: 30px;
521 width: 50px;
522 padding: 0;
523 border-radius: 4px;
524 border: none!important;
525 }
526 .ays-chart-option-input input::placeholder {
527 font-size: 13px;
528 color: #b3b3b3;
529 }
530
531 .ays-chart-option-desc-box {
532 border-radius: 4px;
533 background-color: #ffffff;
534 box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
535 margin-left: 10px;
536 width: 30px;
537 height: 30px;
538 font-weight: bold;
539 font-size: 15px;
540 color: #b3b3b3;
541 text-align: center;
542 line-height: 28px;
543 }
544 .ays-chart-option-input>span {
545 font-size: 18px;
546 font-weight: bold;
547 color: #008cff;
548 }
549
550 .ays-chart-range-slider input[type="range"] {
551 appearance: none!important;
552 -webkit-appearance: none!important;
553 margin: 0 6px;
554 width: 100%;
555 height: 2px;
556 background-color: #666666;
557 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #008cff), color-stop(100%, #008cff));
558 background-size: 50% 100%;
559 background-repeat: no-repeat;
560 border: none;
561 outline: none;
562 }
563 .ays-chart-range-slider input[type="range"]::-webkit-slider-thumb {
564 appearance: none!important;
565 -webkit-appearance: none!important;
566 width: 10px;
567 height: 10px;
568 background: #008cff;
569 border: 2px solid #008cff;
570 border-radius: 50%;
571 cursor: pointer;
572 }
573 .ays-chart-range-slider {
574 position: relative;
575 }
576 #ays-chart-range-value {
577 position: absolute;
578 top: -50%;
579 left: 89px;
580 display: none;
581 }
582 #ays-chart-range-value span{
583 display: block;
584 width: fit-content;
585 height: fit-content;
586 background: transparent;
587 color: #008cff;
588 font-size: 12px;
589 font-weight: bold;
590 }
591
592 .ays-chart-option-input>.ays-chart-option-select-input {
593 width: 100%;
594 height: 30px;
595 line-height: 28px;
596 }
597
598 .ays-chart-input-align-right {
599 text-align: right;
600 }
601 .ays-chart-toggle-switch-switch {
602 position: relative;
603 display: inline-block;
604 width: 36px;
605 height: 20px;
606 }
607 .ays-chart-toggle-switch-switch .ays-chart-toggle-switch {
608 opacity: 0;
609 width: 0;
610 height: 0;
611 }
612 .ays-chart-toggle-switch-slider {
613 position: absolute;
614 cursor: pointer;
615 top: 0;
616 left: 0;
617 right: 0;
618 bottom: 0;
619 background-color: #cccccc;
620 -webkit-transition: .4s;
621 transition: .4s;
622 }
623 .ays-chart-toggle-switch-slider:before {
624 position: absolute;
625 content: "";
626 height: 18px;
627 width: 18px;
628 left: 1px;
629 bottom: 1px;
630 background-color: white;
631 -webkit-transition: .4s;
632 transition: .4s;
633 }
634 .ays-chart-toggle-switch:checked + .ays-chart-toggle-switch-slider {
635 background-color: #008cff;
636 }
637 .ays-chart-toggle-switch:focus + .ays-chart-toggle-switch-slider {
638 box-shadow: 0 0 1px #008cff;
639 }
640 .ays-chart-toggle-switch:checked + .ays-chart-toggle-switch-slider:before {
641 -webkit-transform: translateX(16px);
642 -ms-transform: translateX(16px);
643 transform: translateX(16px);
644 }
645 .ays-chart-toggle-switch-slider.ays-chart-toggle-switch-round {
646 border-radius: 34px;
647 }
648 .ays-chart-toggle-switch-slider.ays-chart-toggle-switch-round:before {
649 border-radius: 50%;
650 }
651
652 /* Settings tab end */
653
654
655
656 /*
657 ==========================================
658 Settings page styles
659 ==========================================
660 */
661 .ays-settings-wrapper {
662 display: flex;
663 }
664 .ays-settings-wrapper .nav-tab-wrapper {
665 display: flex;
666 flex-direction: column;
667 min-width: 150px;
668 margin-right: 15px;
669 border-bottom: none;
670 }
671 .ays-settings-wrapper .nav-tab-wrapper .nav-tab {
672 display: block;
673 width: 100%;
674 border: 1px solid #ccc;
675 margin: 0;
676 float: none !important;
677 }
678 .ays-settings-wrapper .nav-tab-wrapper .nav-tab:last-child {
679 border-bottom: 1px solid #ccc;
680 }
681 .ays-settings-wrapper .ays-chart-tabs-wrapper {
682 width: 100%;
683 border-left: 1px solid #ccc;
684 padding-left: 15px;
685 }
686 .ays-settings-wrapper .ays-chart-tabs-wrapper p.ays-subtitle {
687 margin-top: 0;
688 }
689
690 .go_back{
691 color: black;
692 margin-right: 10px;
693 }
694
695 .chart_div {
696 /*width: 100%;
697 height: 500px;*/
698 margin: auto;
699 }
700
701 .ays-tab-content fieldset,
702 .ays-settings-wrapper fieldset {
703 border: 1px solid #aaa;
704 padding: 10px;
705 }
706
707 .ays-tab-content legend,
708 .ays-settings-wrapper legend {
709 width: auto;
710 padding: 0 5px;
711 }
712
713 .ays-settings-wrapper legend {
714 float: none;
715 }
716
717 .ays-tab-content legend h5,
718 .ays-settings-wrapper legend h5 {
719 display: inline-block;
720 margin-left: 10px;
721 }
722
723 .ays_integration_logo {
724 width: 50px;
725 height: auto;
726 vertical-align: middle !important;
727 }
728
729
730 p.ays-subtitle{
731 margin-top: 20px;
732 font-size: 18px;
733 font-weight: 500;
734 }
735
736 p.submit{
737 display: inline;
738 margin-right: 10px;
739 }
740
741 .button.ays-button {
742 margin: 0;
743 margin-left: 10px;
744 }
745
746 .w-100 {
747 width: 100px;
748 }
749
750 .display_none {
751 display: none !important;
752 }
753 .display_none_not_important {
754 display: none;
755 }
756 .display_block {
757 display: block !important;
758 }
759 .shortcode.column-shortcode input {
760 width: 100%;
761 }
762
763
764 /*
765 * Select2
766 */
767 .select2 {
768 display: inline-block!important;
769 z-index: 0 !important;
770 }
771 #quest_cat_container .select2 {
772 display: block!important;
773 }
774
775
776 .select2-selection.select2-selection--single{
777 height: 40px!important;
778 border: 1px solid #ddd!important;
779 box-shadow: inset 0 1px 2px rgba(0,0,0,.07)!important;
780 }
781
782 .select2-container--default .select2-selection--single .select2-selection__rendered {
783 line-height: 35px!important;
784 }
785
786 .select2-container--default .select2-selection--single .select2-selection__arrow {
787 height: 40px!important;
788 }
789
790 .select2.select2-container{
791 width: 200px!important;
792 }
793
794 /*
795 * Select2 multiple
796 */
797
798 .select2-selection--multiple {
799 font-size: 16px;
800 min-height: 40px !important;
801 border-radius: 4px;
802 margin-top: -5px;
803 min-width: 150px;
804 border-color: #ddd;
805 }
806
807 .select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection--multiple {
808 border-color: #5b9dd9;
809 box-shadow: 0 0 2px rgba(30, 140, 190, .8);
810 outline: 2px solid transparent;
811 }
812
813 .select2.select2-container {
814 width: 100%;
815 }
816
817 .select2-container--default .select2-selection--multiple .select2-selection__choice {
818 margin-top: 1px !important;
819 padding: 0 5px !important;
820 margin-bottom: 8px !important;
821 }
822
823 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
824 overflow: hidden;
825 padding-top: 5px;
826 }
827
828 .select2-selection--single {
829 height: 100% !important;
830 }
831 .select2-selection__rendered{
832 word-wrap: break-word !important;
833 text-overflow: inherit !important;
834 white-space: normal !important;
835 }
836 /*
837 * Select2 multiple
838 */
839
840 .select2-selection--multiple {
841 font-size: 16px;
842 min-height: 40px !important;
843 border-radius: 4px;
844 margin-top: -5px;
845 min-width: 150px;
846 border-color: #ddd;
847 }
848
849 .select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection--multiple {
850 border-color: #5b9dd9;
851 box-shadow: 0 0 2px rgba(30, 140, 190, .8);
852 outline: 2px solid transparent;
853 }
854
855 .select2.select2-container {
856 width: 100%!important;
857 }
858 .ays_quiz_stat_select_div .select2.select2-container {
859 width: 200px!important;
860 }
861 .select2-container--default .select2-selection--multiple {
862 min-height: 50px !important;
863 }
864 .select2-container--default .select2-selection--multiple .select2-selection__choice {
865 margin-top: 4px!important;
866 padding: 5px!important;
867 margin-bottom: 0!important;
868
869 }
870 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
871 height: auto;
872 overflow: visible;
873 }
874
875 .select2-container--default .select2-search--inline .select2-search__field {
876 background: transparent;
877 border: none !important;
878 outline: none !important;
879 box-shadow: none !important;
880 width: 100% !important;
881 }
882
883
884 /**
885 * Accordion options styles
886 */
887
888 fieldset.ays-accordion-options-container {
889 border: none;
890 padding: 0;
891 border-left: 2px solid #008cff;
892 background-color: #ffffff;
893 margin-bottom: 5px;
894 }
895
896 fieldset.ays-accordion-options-container legend.ays-accordion-options-header {
897 width: 100%;
898 height: 45px;
899 margin: 0;
900 display: flex;
901 align-items: center;
902 justify-content: flex-start;
903 cursor: pointer;
904 user-select: none;
905 position: relative;
906 padding-left: 36px;
907 }
908
909 fieldset.ays-accordion-options-container legend.ays-accordion-options-header svg.ays-accordion-arrow {
910 width: 20px;
911 height: 20px;
912 position: absolute;
913 top: 13px;
914 left: 10px;
915 }
916
917 fieldset.ays-accordion-options-container legend.ays-accordion-options-header span {
918 /* font-family: Arial;*/
919 font-size: 13px;
920 color: #595959;
921 text-decoration: none solid rgb(89, 89, 89);
922 line-height: 1;
923 }
924
925 fieldset.ays-accordion-options-container div.ays-accordion-options-content {
926 width: 100%;
927 transition: all .25s ease;
928 /* max-height: 500px; */
929 }
930
931 fieldset.ays-accordion-options-container div.ays-accordion-data-main-wrap {
932 padding: 10px 20px 20px 36px;
933 }
934
935 fieldset.ays-accordion-options-container[data-collapsed="true"] div.ays-accordion-options-content {
936 max-height: 0;
937 overflow: hidden;
938 }
939
940 fieldset.ays-accordion-options-container[data-collapsed="false"] div.ays-accordion-options-content {
941 /*height: 100%;*/
942 }
943
944 .ays-accordion-arrow {
945 transition: .3s ease;
946 }
947 .ays-accordion-arrow-down {
948 transform: rotate(90deg);
949 }
950
951 /*
952 * Chosen selects
953 */
954 .ays-chart-chart-source-data-main select {
955 height: 55px;
956 max-height: 55px;
957 margin: 0;
958 padding: 16px 20px;
959 color: #555;
960 box-shadow: none;
961 }
962
963 .ays-chart-chart-source-data-main select:focus,
964 .ays-chart-chart-source-data-main .chosen-container-active .chosen-choices,
965 .ays-chart-chart-source-data-main .chosen-container .chosen-drop,
966 .ays-chart-chart-source-data-main input {
967 outline: none;
968 box-shadow: none;
969 }
970
971 .ays-chart-chart-source-data-main .chosen-container-active .chosen-choices,
972 .ays-chart-chart-source-data-main .chosen-container-active .chosen-results {
973 border-color: #5b9dd9 !important;
974 }
975
976 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices li.search-field input[type=text] {
977 color: #555;
978 }
979
980 .ays-chart-chart-source-data-main .chosen-container .chosen-drop {
981 display: none;
982 left: 20px;
983 padding-right: 20px;
984 border: none;
985 }
986
987 .ays-chart-chart-source-data-main .chosen-container.chosen-container-active .chosen-drop {
988 display: block;
989 }
990
991 .ays-chart-chart-source-data-main .chosen-container .chosen-drop .chosen-results {
992 border: 1px solid #ddd;
993 border-top: none;
994 }
995
996 .ays-chart-chart-source-data-main .chosen-container .chosen-results li {
997 padding: 10px;
998 border-bottom: 1px solid #eee;
999 }
1000
1001 .ays-chart-chart-source-data-main .chosen-container .chosen-results li:last-child {
1002 border-bottom: none;
1003 }
1004
1005 .ays-chart-chart-source-data-main .chosen-container .chosen-results li.highlighted {
1006 background: #0085ba;
1007 }
1008
1009 #filter-wizard-rules {
1010 display: table;
1011 width: 100%;
1012 }
1013
1014 #visualizer-post-types {
1015 display: table-cell;
1016 width: 200px;
1017 }
1018
1019 .ays-chart-chart-source-data-main .chosen-container {
1020 display: table-cell;
1021 box-sizing: border-box;
1022 width: 100% !important;
1023 padding-left: 20px;
1024 }
1025
1026 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices {
1027 height: 55px !important;
1028 max-height: 55px;
1029 padding: 12px 20px;
1030 border: 1px solid #ddd;
1031 background-image: none;
1032 }
1033
1034 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices li.search-choice {
1035 height: 30px;
1036 margin: 0 10px 0 0;
1037 padding: 7px 25px 10px 10px;
1038 border: none;
1039 color: #fff;
1040 background: #0085ba;
1041 box-shadow: none;
1042 line-height: 1;
1043 }
1044
1045 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
1046 display: inline-block;
1047 top: 6px;
1048 right: 4px;
1049 width: 18px;
1050 height: 18px;
1051 color: #9acadd;
1052 font-family: dashicons;
1053 font-size: 18px;
1054 }
1055
1056 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
1057 color: #fff;
1058 }
1059
1060 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
1061 content: "\f335";
1062 }
1063
1064 .ays-chart-chart-source-data-main .chosen-container-multi .chosen-choices li.search-field input[type=text] {
1065 height: 29px;
1066 }
1067
1068 #filter-wizard-details {
1069 margin-top: 40px;
1070 padding-top: 40px;
1071 border-top: 1px solid #eee;
1072 }
1073
1074 #filter-wizard table.filter-wizard {
1075 width: 100%;
1076 }
1077
1078 #filter-wizard table.filter-wizard tr.filter-wizard-new td {
1079 padding-top: 20px;
1080 }
1081
1082 #filter-wizard-details input,
1083 #filter-wizard-details select {
1084 height: 35px;
1085 padding: 0 15px;
1086 line-height: 1;
1087 }
1088
1089 #filter-wizard-details {
1090 display: none;
1091 }
1092
1093 #visualizer_post_fields_chosen.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
1094 background: none;
1095 }
1096
1097 #vz-no-fields {
1098 width: 100%;
1099 margin-top: 50px;
1100 color: #555;
1101 font-size: 18px;
1102 line-height: 1.5;
1103 }
1104
1105 svg > g > g.google-visualization-tooltip {
1106 pointer-events: none
1107 }