PluginProbe
WP Directory Kit / 1.1.6
WP Directory Kit v1.1.6
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / admin / css / wpdirectorykit-admin.scss

wpdirectorykit-admin.scss in WP Directory Kit 1.1.6, at admin/css/wpdirectorykit-admin.scss

1,264 lines 28.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * All of the CSS for your admin-specific functionality should be
3 * included in this file.
4 */
5
6 /* General */
7 #adminmenu .wp-has-current-submenu ul a[href="admin.php?page=wdk_importdemo"]="admin.php?page=wdk_importdemo""] {
8 display: none;
9 }
10
11 .wdk-wrap .clearfix:after
12 {
13 content: '';
14 display: table;
15 clear: both;
16 }
17
18 .wdk-wrap .postbox-header {
19 max-width: 100%;
20 min-width: 100%;
21 h3
22 {
23 padding-left:15px;
24
25 &.wide {
26 flex: 1 2 auto;
27 }
28 }
29 }
30
31 .wdk-wrap .pull_right
32 {
33 float:right;
34 }
35
36 .wdk-wrap .wdk-depend-hidden,
37 .wdk-wrap .hidden
38 {
39 display:none;
40 }
41
42 .wdk-wrap .img-link
43 {
44 display: block;
45 }
46
47 .actions_column a:hover span
48 {
49 color:black;
50 }
51
52 .wp-list-table a.title
53 {
54 font-weight: bold;
55 }
56 /* Sortable */
57
58 .wdk-wrap .ui-sortable-handle a
59 {
60 text-decoration: none;
61 border: 0px;
62 color: black;
63 }
64
65 .wdk-wrap .ui-sortable-handle a:hover
66 {
67 color: #135e96;
68 }
69
70 .wdk-wrap .ui-sortable-handle h3 a
71 {
72 font-size: 16px;
73 }
74
75 .wdk-wrap .ui-sortable-handle h3 span
76 {
77 padding-right: 15px;
78 }
79
80 .wdk-wrap .hndle
81 {
82 display:block;
83 }
84
85 .wdk-wrap .listing_edit_map {
86 height: 350px;
87 width: 100%;
88 }
89
90 /* Alerts */
91
92 .wdk-wrap .alert
93 {
94 border-radius: 0;
95 }
96
97 .wdk-wrap .alert.alert-success
98 {
99 background: #E6F4E7;
100 color: #376637;
101 border-left: 3px solid #88BF88;
102 margin: 0px 0px 5px 0px;
103 padding: 15px;
104 font-weight: bold;
105 }
106
107 .wdk-wrap .alert.alert-danger
108 {
109 background: #FFE6DF;
110 color: #AB3C1B;
111 border-left: 3px solid #E98B6F;
112 margin: 0px 0px 5px 0px;
113 padding: 15px;
114 font-weight: bold;
115 }
116
117 .wdk-wrap .alert.alert-info
118 {
119 background: #cce5ff;
120 color: #3d648e;
121 border-left: 3px solid #3d648e;
122 margin: 0px 0px 5px 0px;
123 padding: 15px;
124 font-weight: bold;
125 }
126
127 /* Labels */
128 .wdk-wrap .label {
129 display: inline-block;
130 }
131
132 .wdk-wrap .label.label-success {
133 background: #E6F4E7;
134 color: #376637;
135 margin: 0px 5px 5px 0px;
136 padding: 5px;
137 }
138
139 .wdk-wrap .label.label-danger {
140 background: #FFE6DF;
141 color: #AB3C1B;
142 margin: 0px 5px 5px 0px;
143 padding: 5px;
144 }
145
146 .wdk-wrap .label.label-info {
147 background: #cce5ff;
148 color: #3d648e;
149 margin: 0px 5px 5px 0px;
150 padding: 5px;
151 }
152
153 .wdk-wrap .label.label-warning {
154 color: #664d03;
155 background-color: #fff3cd;
156 border-color: #ffecb5;
157 margin: 0px 5px 5px 0px;
158 padding: 5px;
159 }
160
161 /* Custom fields layout */
162
163 div.wdk-field-edit
164 {
165 margin: 15px 0px;
166 display: flex;
167 justify-content: flex-start;
168 }
169
170 div.wdk-field-edit label
171 {
172 width: auto;
173 display: inline-block;
174 vertical-align: top;
175 max-width: 80px;
176 flex: 0 0 100px;
177 padding-right: 10px;
178 font-weight: 600;
179 }
180
181
182 div.wdk-field-edit.edittable {
183 & {
184 padding: 0px;
185 margin: 0;
186 }
187
188 div.wdk-field-container {
189 & {
190 padding:0px;
191 }
192
193 .wdk_dropdown_tree {
194 max-width: 351px;
195 }
196 }
197 }
198
199 div.wdk-field-edit.DATETIME_TO .wdk-field-container,
200 div.wdk-field-edit.DATETIME_FROM .wdk-field-container,
201 div.wdk-field-edit.DATETIME .wdk-field-container {
202
203
204 .wdk-datetime-group {
205 display: flex;
206 flex-wrap: wrap;
207 max-width: 230px;
208 select {
209 width: 60px;
210 }
211
212 .regular-text {
213 min-width: 90px;
214 flex: 1 2;
215 }
216 }
217
218 input,select {
219 margin-bottom: 5px;
220 }
221 }
222
223
224 div.wdk-field-edit div.wdk-field-container {
225 & {
226 display: inline-block;
227 padding:0px 15px;
228 padding-right: 0;
229 flex: 1 2 auto;
230 }
231
232 .wdk_dropdown_tree,
233 input:not([type="checkbox"]):not([type="radio"]),
234 select {
235 width: 100%;
236 max-width: 230px;
237 }
238
239 .wdk_dropdown_tree > .btn-group {
240 width: 100%;
241 display: flex;
242 height: auto;
243 }
244
245 .wdk_dropdown_tree button {
246 padding: 0 8px;
247 height: auto;
248 box-shadow: 0 0 0 transparent;
249 border: 1px solid #8c8f94;
250 background-color: #fff;
251 color: #2c3338;
252 min-height: 30px;
253 }
254
255 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle,
256 .wdk_dropdown_tree button {
257 border-radius: 4px;
258 }
259
260 .wdk_dropdown_tree button:first-child {
261 border-top-right-radius: 0;
262 border-bottom-right-radius: 0;
263 }
264
265 .wdk_dropdown_tree .list_container .input-group {
266 border: 1px solid #8c8f94;
267 }
268
269 .wdk_dropdown_tree .list_scroll {
270 border-left: 1px solid #8c8f94;
271 left: 0;
272 }
273
274 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child {
275 border-top-left-radius: 0;
276 border-bottom-left-radius: 0;
277
278 background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
279 background-size: auto;
280 background-size: 16px 16px;
281 cursor: pointer;
282 vertical-align: middle;
283 }
284
285 .wdk_dropdown_tree {
286 min-width: initial;
287 position: relative;
288 }
289
290 .wdk_dropdown_tree .list_container input.form-control.search_term {
291 height: initial;
292 padding: 0 8px;
293 }
294
295 .wdk_dropdown_tree .list_container .input-group-addon {
296 &{
297 position: relative;
298 }
299
300 & i {
301 position: absolute;
302 left: 0;
303 margin-left: 5px;
304 top: 50%;
305 margin-top: -9px;
306 }
307
308 & i.fa-spin {
309 margin-left: 7px;
310 margin-top: -7px;
311 }
312
313 .fa:after {
314 font-family: dashicons;
315 line-height: 1;
316 font-weight: 400;
317 font-style: normal;
318 text-transform: none;
319 text-rendering: auto;
320 font-size: 20px;
321 text-align: center;
322 }
323
324 .loader-spiner.fa.fa-spinner:before,
325 .fa.fa-search:before {
326 display: none !important;
327 }
328
329 .fa.fa-search:after {
330 content: "\f179";
331 }
332
333 .loader-spiner.fa.fa-spinner:after {
334 content: "\f113";
335 }
336
337 .loader-spiner.fa.fa-spinner {
338 -webkit-animation: wdk-spin 2s infinite linear;
339 animation: wdk-spin 2s infinite linear;
340 font-family: dashicons;
341 font-size: 18px;
342 margin-left: 6px;
343 margin-top: -9px;
344 }
345
346 @keyframes wdk-spin {
347 0% {
348 -webkit-transform: rotate(0deg);
349 transform: rotate(0deg);
350 }
351 100% {
352 -webkit-transform: rotate(360deg);
353 transform: rotate(360deg);
354 }
355 }
356 }
357
358 }
359
360 .form-table p.wdk-hint,
361 div.wdk-field-edit p.wdk-hint
362 {
363 font-style: italic;
364 }
365
366 /* Tables */
367
368 .wdk-wrap .widefat .actions_column
369 {
370 text-align: right;
371 }
372
373 .wdk-wrap .form-table td {
374 vertical-align: top;
375 }
376
377 .wdk-wrap .wdk-side-content {
378 display: flex;
379 flex-wrap: wrap;
380 }
381
382 .wdk-wrap .wdk-side-content .wdk-col {
383 flex: 1 2 auto;
384 }
385
386 .wdk-wrap .wdk-side-content .wdk-col.main {
387 flex: 1 2 50%;
388 padding-right: 35px;
389 }
390
391 .wdk-wrap .wdk-side-content .wdk-col.sidebar {
392 flex: 1 2 30%;
393 min-width: 400px;
394 padding: 22px 0;
395 }
396
397 .wdk-wrap .wdk-side-content + .form-table td {
398 padding-right: 0;
399 }
400
401 .wdk-wrap .wdk-side-content + .form-table th,
402 .wdk-wrap .wdk-side-content .form-table th {
403 max-width: 85px;
404 padding-right: 10px;
405 }
406
407
408 /* Filtering above/below tables */
409
410 .wdk-wrap .tablenav.top .left
411 {
412 float:left;
413 }
414
415 .wdk-wrap .inputbox_map {
416 height: 250px;
417 width: 100%;
418 max-width: 450px
419 }
420
421 /* Visual Builder Search Forms */
422 .wdk-builder-container .widget-title h3, .widget-title h4 {
423 white-space: initial;
424 }
425 .wdk-builder-container .wdk-builder-elements-column
426 {
427 margin-bottom: 15px;
428 display:block;
429 width: 40%;
430 float: left;
431 padding-top: 6px;
432 }
433
434
435 .wdk-builder-elements-box h3.sec-title {
436 position: relative;
437 border: 1px solid #c3c4c7;
438 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
439 color: #fff;
440 background: #2c3338;
441 padding: 10px 15px;
442 margin-bottom: 0;
443 margin-top: 0;
444 margin-right: 15px;
445 }
446
447 .wdk-builder-elements
448 {
449 width: 100%;
450 min-height: auto;
451 box-sizing: border-box;
452 padding: 15px 15px 15px 0px;
453 display: grid;
454 grid-template-columns: repeat(2, 1fr);
455 grid-column-gap: 10px;
456 grid-row-gap: 0;
457 }
458
459 .wdk-builder-elements .widget
460 {
461 width: 100%;
462 }
463
464 .wdk-builder-selected
465 {
466 margin-top: 6px;
467 width:80%;
468 border: 1px solid #c3c4c7;
469 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
470 min-height:400px;
471 float:left;
472 box-sizing: border-box;
473 padding: 15px;
474 }
475
476 #wdk-drop .widget.ui-draggable.ui-sortable-handle,
477 #wdk-drop .ui-sortable-placeholder.widget-placeholder,
478 .wdk-wrap .drop-container .widget.ui-draggable.ui-sortable-handle,
479 .wdk-wrap .drop-container .ui-sortable-placeholder.widget-placeholder
480 {
481 width:300px;
482 margin:0px 15px 15px 0px;
483 float:left;
484 }
485
486 #wdk-drag .widget-action,
487 #wdk-drag .widget-inside
488 {
489 display:none !important;
490 }
491
492
493 .wdk-builder-container button[aria-expanded="true"]="true""] .toggle-indicator::before {
494 content: "\f142"
495 }
496
497 #wdk-drop .widget-inside,
498 .wdk-wrap .drop-container .widget-inside
499 {
500 padding: 5px;
501 }
502
503 /* Visual Builder result item */
504
505 .wdk-wrap .drop-container
506 {
507 width: 60%;
508 float: left;
509 }
510
511 .wdk-wrap .drop-container .wdk-builder-selected
512 {
513 width:100%;
514 min-height: 100px;
515 }
516
517 .wdk-wrap .drop-container>h3
518 {
519 padding-bottom:0px;
520 margin-bottom:0px;
521 }
522
523 .wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container .wp-editor-wrap input,
524 .wdk-wrap .listing_custom_fields div.wdk-field-edit div.wdk-field-container .wp-editor-wrap select {
525 width: auto;
526 max-width: auto;
527 }
528
529 .wdk-field-edit.SECTION .title {
530 border-bottom: 1px solid #c3c4c7;
531 width: 100%;
532 padding: 10px 0;
533 }
534
535 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child i {
536 display: none;
537 }
538
539 /* columns */
540
541 .wdk-wrap
542 {
543
544 .dl-helper {
545 dt {
546 font-weight: 700;
547 }
548
549 dd {
550 margin-left: 25px;
551 }
552 }
553
554 @for $i from 1 through 10 {
555 .wdk-mr-#{$i*5}#{$i*5} {
556 margin-right: #{$i*5}px;
557 }
558 }
559
560 div.wdk-field-edit.notes a {
561 margin-left: 5px;
562 display: inline-block;
563 font-weight: 600;
564 font-size: 14px;
565 }
566
567 .mb0 {
568 margin-bottom: 0 !important;
569 }
570
571 .align-top {
572 vertical-align: top !important;
573 }
574
575 .text-capitalize {
576 text-transform: capitalize !important;
577 }
578
579 .alert p {
580 margin: 0;
581 }
582
583 .color-primary {
584 color: #004c8c;
585 }
586
587 .wdk-infinity-load {
588 -webkit-animation: wdk-spin 2s infinite linear;
589 animation: wdk-spin 2s infinite linear;
590 }
591
592 .postbox .inside {
593 padding: 0 12px 0;
594 }
595
596 table.wp-list-table tr.no-items {
597 background-color: #f0f0f1;
598 }
599
600 @keyframes wdk-spin {
601 0% {
602 -webkit-transform: rotate(0deg);
603 transform: rotate(0deg);
604 }
605 100% {
606 -webkit-transform: rotate(360deg);
607 transform: rotate(360deg);
608 }
609 }
610
611 .wdk-field-edit.SECTION .title {
612 width: 100%;
613 position: relative;
614 border: 1px solid #c3c4c7;
615 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
616 color: #fff;
617 background: #2c3338;
618 padding: 10px 15px;
619 margin-bottom: 0;
620 margin-top: 0;
621 }
622
623 .meta-box-sortables .wdk_field.SECTION .postbox {
624 color: #fff;
625 background: #2c3338;
626 }
627
628 .meta-box-sortables .wdk_field.SECTION.ui-sortable-handle a {
629 color: #fff;
630 }
631
632 .meta-box-sortables .wdk_field.SECTION.ui-sortable-handle a:hover {
633 color: #72aee6;
634 }
635
636
637 .listing_custom_fields div.wdk-field-edit div.wdk-field-container input,
638 .listing_custom_fields div.wdk-field-edit div.wdk-field-container select {
639 max-width: initial;
640 flex: 1 2;
641 }
642
643 div.wdk-field-edit div.wdk-field-container {
644 display: flex;
645 align-items: flex-start;
646 flex-wrap: wrap;
647 }
648
649 div.wdk-field-edit.TEXTAREA_CODE div.wdk-field-container {
650 width: 400px;
651 }
652
653 div.wdk-field-edit div.wdk-field-container .suffix:not(:empty) {
654 padding: 5px 0px 5px 5px;
655 }
656
657 div.wdk-field-edit div.wdk-field-container .wp-editor-wrap {
658 width: 100%;
659 max-width: 100%;
660 }
661
662 div.wdk-field-edit p.wdk-hint {
663 flex: 0 0 100%;
664 }
665
666 .wdk-row
667 {
668 & {
669 display: -ms-flexbox;
670 display: flex;
671 -ms-flex-wrap: wrap;
672 flex-wrap: wrap;
673 margin-right: -15px;
674 margin-left: -15px;
675 }
676
677 & > [class*='wdk-col']*='wdk-col']
678 {
679 position: relative;
680 width: 100%;
681 padding-right: 15px;
682 padding-left: 15px;
683 box-sizing: border-box;
684 }
685
686 .wdk-col-auto {
687 -ms-flex: 0 0 auto;
688 flex: 0 0 auto;
689 width: auto;
690 max-width: 100%;
691 }
692
693
694 @for $i from 1 through 12 {
695 .wdk-col-#{$i} {
696 -webkit-flex: 0 0 calc(100% / 12 * #{$i});
697 flex: 0 0 calc(100% / 12 * #{$i});
698 max-width: calc(100% / 12 * #{$i});
699 }
700 }
701
702 @media (min-width:992px){
703 @for $i from 1 through 12 {
704 .wdk-col-md-#{$i} {
705 -webkit-flex: 0 0 calc(100% / 12 * #{$i});
706 flex: 0 0 calc(100% / 12 * #{$i});
707 max-width: calc(100% / 12 * #{$i});
708 }
709 }
710 }
711 }
712
713 .text-center {
714 text-align: center;
715 }
716
717 .text-left {
718 text-align: left;
719 }
720
721 .text-right {
722 text-align: right;
723 }
724
725 .button.btn-danger {
726 color: #ffffff;
727 background-color: #c1002b;
728 border-color: #c1002b;
729
730 &:hover, &:hover {
731 -webkit-box-shadow: 0 1px 5px rgba(193, 0, 43, 0.4) !important;
732 box-shadow: 0 1px 5px rgba(193, 0, 43, 0.4) !important;
733 }
734 }
735
736 .button.btn-info {
737 color: #ffffff;
738 background-color: #00c9b7;
739 border-color: #00c9b7;
740
741 &:hover, &:hover {
742 -webkit-box-shadow: 0 1px 5px #00c9b875 !important;
743 box-shadow: 0 1px 5px #00c9b875 !important;
744 }
745 }
746
747 .button.xl {
748 padding: 10px 30px;
749 }
750
751 .wp-editor-wrap .wp-editor-container {
752 width: 100%;
753 margin: 0;
754 box-shadow: none;
755 border-radius: 4px;
756 border: 1px solid #8c8f94;
757 background-color: #fff;
758 color: #2c3338;
759 overflow: hidden;
760 }
761
762 /* addon subscription */
763 .wdk-pricing {
764 margin: 10px 0;
765 .wdk-sec-header {
766 margin-bottom: 20px;
767 .wdk-sec-title {
768 font-size: 24px;
769 font-weight: 300;
770 line-height: 1.5;
771 margin-top: 5px;
772 .mark {
773 font-weight: 700;
774 }
775 .mark.color {
776 color: #c1002b;
777 }
778 .mark.up {
779 text-transform: uppercase;
780 }
781 }
782 .wdk-sec-subtitle {
783 font-size: 20px;
784 font-weight: 400;
785 }
786 }
787
788 .wdk-pac {
789 text-align: center;
790 background-color: #fff;
791 border: 1px solid #dcdcde;
792 box-sizing: border-box;
793 margin-bottom: 15px;
794 &.featured {
795 .header {
796 background: -webkit-gradient(linear, left top, left bottom, from(#5837ff), to(#5533ff));
797 background: linear-gradient(#1d2327, #121518);
798 }
799
800 p,
801 .header {
802 color: #fff;
803 }
804 }
805 }
806
807 .wdk-wrap .wdk-pricing .wdk-pac.yearly h4
808 {
809 margin-top:0px;
810 }
811
812 .header {
813 background: -webkit-gradient(linear, left top, left bottom, from(#fcfdfe), to(#f9fbfd));
814 background: linear-gradient(#fcfdfe, #f9fbfd);
815 background-color: rgba(22, 28, 45, 0.03);
816 padding: 0.75rem 1.25rem;
817 margin-bottom: 0;
818 border-bottom: 1px solid rgba(22, 28, 45, 0.125);
819 color: rgb(109, 118, 139);
820 h4 {
821 font-size: 24px;
822 font-weight: 400;
823 margin-bottom: 15px;
824 }
825
826 p {
827 font-size: 16px;
828 }
829 }
830
831 .list-items {
832 padding: 0;
833 margin: 0;
834 list-style: none;
835 .item {
836 display: block;
837 padding: 12px 20px;
838 font-size: 16px;
839 color: rgb(109, 118, 139);
840 }
841 .item:not(:first-child) {
842 border-top: 1px solid rgba(22, 28, 45, 0.125);
843 }
844 }
845
846 .wdk-pac-footer {
847 border-top: 1px solid rgba(22, 28, 45, 0.125);
848 padding: 20px 20px;
849
850 .btn {
851 -webkit-transition: all 0.3s ease;
852 transition: all 0.3s ease;
853 text-decoration: none;
854 font-family: "Poppins", sans-serif;
855 font-weight: 400;
856 white-space: normal;
857 line-height: 1.5;
858 border: 1px solid #506690;
859 padding: 8px 20px;
860 border-radius: 3px;
861
862 &:hover{
863 color: #ffffff;
864 background-color: #506690;
865 border-color: #506690;
866 }
867 }
868 }
869
870 .pricing-value {
871 font-family: "Poppins", sans-serif;
872 font-size: 52px;
873 .price {
874 position: relative;
875 font-weight: 500;
876 line-height: 1;
877 }
878 .price .before,
879 .price .after {
880 font-size: 18px;
881 font-weight: 300;
882 font-style: italic;
883 }
884 .price .before {
885 position: absolute;
886 top: 10px;
887 left: -15px;
888 }
889 .price .after {
890 position: relative;
891 }
892 }
893
894 }
895
896 .winter_mvc-media .winter_mvc-media-card {
897 min-width: 200px;
898 }
899 }
900
901 .wp-core-ui .quicktags-toolbar input.button.button-small {
902 display: inline-block !important;
903 width: auto !important;
904 }
905
906 .wdk-unwrapp-field {
907 .wdk_dropdown_tree > .btn-group {
908 width: 100%;
909 display: flex;
910 height: auto;
911 }
912
913 .wdk_dropdown_tree button {
914 padding: 0 8px;
915 height: auto;
916 box-shadow: 0 0 0 transparent;
917 border: 1px solid #8c8f94;
918 background-color: #fff;
919 color: #2c3338;
920 min-height: 30px;
921 }
922
923 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle,
924 .wdk_dropdown_tree button {
925 border-radius: 4px;
926 }
927
928 .wdk_dropdown_tree button:first-child {
929 border-top-right-radius: 0;
930 border-bottom-right-radius: 0;
931 border-top-left-radius: 4px;
932 border-bottom-left-radius: 4px;
933 }
934
935 .wdk_dropdown_tree .list_container .input-group {
936 border: 1px solid #8c8f94;
937 }
938
939 .wdk_dropdown_tree .list_scroll {
940 border-left: 1px solid #8c8f94;
941 left: 0;
942 }
943
944 .wdk_dropdown_tree button.btn.btn-default.dropdown-toggle:last-child {
945 border-top-left-radius: 0;
946 border-bottom-left-radius: 0;
947
948 background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
949 background-size: auto;
950 background-size: 16px 16px;
951 cursor: pointer;
952 vertical-align: middle;
953 }
954
955 .wdk_dropdown_tree {
956 min-width: initial;
957 position: relative;
958 }
959
960 .wdk_dropdown_tree .list_container input.form-control.search_term {
961 height: initial;
962 max-width: 100%;
963 }
964
965 .wdk_dropdown_tree .list_container .input-group-addon {
966 &{
967 position: relative;
968 }
969
970 & i {
971 position: absolute;
972 left: 0;
973 margin-left: 5px;
974 top: 50%;
975 margin-top: -9px;
976 }
977
978 & i.fa-spin {
979 margin-left: 7px;
980 margin-top: -7px;
981 }
982
983 .fa:after {
984 font-family: dashicons;
985 line-height: 1;
986 font-weight: 400;
987 font-style: normal;
988 text-transform: none;
989 text-rendering: auto;
990 font-size: 20px;
991 text-align: center;
992 }
993
994 .loader-spiner.fa.fa-spinner:after,
995 .fa.fa-search:before {
996 display: none !important;
997 }
998
999 .fa.fa-search:after {
1000 content: "\f179";
1001 }
1002
1003 .loader-spiner.fa.fa-spinner:after {
1004 content: "\f113";
1005 }
1006
1007 .loader-spiner.fa.fa-spinner {
1008 -webkit-animation: wdk-spin 2s infinite linear;
1009 animation: wdk-spin 2s infinite linear;
1010 }
1011
1012 @keyframes wdk-spin {
1013 0% {
1014 -webkit-transform: rotate(0deg);
1015 transform: rotate(0deg);
1016 }
1017 100% {
1018 -webkit-transform: rotate(360deg);
1019 transform: rotate(360deg);
1020 }
1021 }
1022 }
1023 }
1024
1025 .tablenav .wdk-unwrapp-field {
1026 float: left;
1027 margin-right: 4px;
1028 max-width: 12.5rem;
1029 margin-left: 3px;
1030 }
1031
1032 #adminmenu .wp-submenu a[href="admin.php?page=wdk_addons"]="admin.php?page=wdk_addons""],
1033 #adminmenu .wp-submenu a[href="admin.php?page=wdk-addons"]="admin.php?page=wdk-addons""],
1034 #adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_currencies"]="admin.php?page=wdk_addons_currencies""],
1035 #adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_membership"]="admin.php?page=wdk_addons_membership""],
1036 #adminmenu .wp-submenu a[href="admin.php?page=wdk_addons_bookings"]="admin.php?page=wdk_addons_bookings""],
1037 #adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons"]="admin.php?page=wdk_addons""],
1038 #adminmenu .wp-submenu li.current a[href="admin.php?page=wdk-addons"]="admin.php?page=wdk-addons""],
1039 #adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_currencies"]="admin.php?page=wdk_addons_currencies""],
1040 #adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_membership"]="admin.php?page=wdk_addons_membership""],
1041 #adminmenu .wp-submenu li.current a[href="admin.php?page=wdk_addons_bookings"]="admin.php?page=wdk_addons_bookings""] {
1042 color: greenyellow;
1043 }
1044
1045
1046 body .select2-container--default {
1047 &.select2-container--focus .select2-selection--multiple,
1048 & {
1049 border: 0;
1050 min-width: 150px;
1051 }
1052 .select2-selection--multiple {
1053 .select2-search__field {
1054 border: 0 !important;
1055 }
1056 .select2-selection__rendered li {
1057 list-style: none;
1058 margin: 0;
1059
1060 &.select2-selection__choice {
1061 padding: 5px 6px;
1062 margin: 3px 3px;
1063 }
1064 }
1065
1066 .select2-selection__rendered {
1067 padding: 0;
1068 display: block;
1069 padding: 2px 45px 2px 5px ;
1070 }
1071 }
1072 }
1073
1074 body .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default .select2-selection--multiple{
1075
1076 .select2-selection__rendered {
1077 padding: 0px 45px 0px 5px;
1078 display: flex;
1079 align-items: center;
1080 flex-wrap: wrap;
1081
1082 li.select2-selection__choice {
1083 padding: 1px 6px;
1084 line-height: 19px;
1085 }
1086 }
1087
1088
1089 .select2-selection__choice__remove {
1090
1091 }
1092 }
1093
1094 body .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default {
1095 //width: calc(100% - 28px) !important;
1096 }
1097
1098 body .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default {
1099 width: auto !important;
1100 flex: 1 2 auto;
1101 }
1102
1103
1104 body .listing_custom_fields .wdk-field-edit.DROPDOWNMULTIPLE .select2-container--default {
1105 width: initial !important;
1106 flex: 1 2 auto;
1107 min-width: initial;
1108 }
1109
1110 body .select2-container .select2-search--inline .select2-search__field {
1111 margin-top: 0;
1112 }
1113
1114 body .select2-container--default.select2-container--focus .select2-selection--multiple {
1115 border: 1px solid #8c8f94;
1116 }
1117
1118 .datetime_time_mask {
1119
1120 }
1121
1122 .wdk_btn_load_indicator {
1123 position: relative;
1124 &::after {
1125 content: "\f113";
1126 font-family: dashicons;
1127 display: inline-block;
1128 line-height: 1;
1129 font-weight: 900;
1130 font-style: normal;
1131 font-size: 20px;
1132 speak: never;
1133 text-decoration: inherit;
1134 text-transform: none;
1135 text-rendering: auto;
1136 -webkit-animation: wdk-spin 2s infinite linear;
1137 animation: wdk-spin 2s infinite linear;
1138 margin-left: 5px;
1139 margin-top: -10px;
1140 display: inline-block;
1141 position: relative;
1142 top: 50%;
1143 }
1144
1145 &.out::after {
1146 position: absolute;
1147 right: -30px;
1148 color: #2271b1;
1149 }
1150
1151 @keyframes wdk-spin {
1152 0% {
1153 -webkit-transform: rotate(0deg);
1154 transform: rotate(0deg);
1155 }
1156 100% {
1157 -webkit-transform: rotate(360deg);
1158 transform: rotate(360deg);
1159 }
1160 }
1161 }
1162
1163 .wdk_btn_load_success {
1164 position: relative;
1165 &::after {
1166 content: "\f147";
1167 font-family: dashicons;
1168 display: inline-block;
1169 line-height: 1;
1170 font-weight: 900;
1171 font-style: normal;
1172 font-size: 20px;
1173 speak: never;
1174 text-decoration: inherit;
1175 text-transform: none;
1176 text-rendering: auto;
1177 margin-left: 5px;
1178 margin-top: -10px;
1179 display: inline-block;
1180 position: relative;
1181 top: 50%;
1182 }
1183
1184 &.out::after {
1185 position: absolute;
1186 right: -30px;
1187 color: #2271b1;
1188 }
1189
1190 }
1191
1192 .wdk_btn_load_error {
1193 position: relative;
1194 &::after {
1195 content: "\f335";
1196 font-family: dashicons;
1197 display: inline-block;
1198 line-height: 1;
1199 font-weight: 900;
1200 font-style: normal;
1201 font-size: 20px;
1202 speak: never;
1203 text-decoration: inherit;
1204 text-transform: none;
1205 text-rendering: auto;
1206 margin-left: 5px;
1207 margin-top: -10px;
1208 display: inline-block;
1209 position: relative;
1210 top: 50%;
1211 }
1212
1213 &.out::after {
1214 position: absolute;
1215 right: -30px;
1216 color: #2271b1;
1217 }
1218
1219 }
1220
1221 .wdk-depend-fields .wdk_field {
1222 position: relative;
1223 min-width: 255px;
1224 border: 1px solid #c3c4c7;
1225 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
1226 background: #fff;
1227 margin-bottom: 20px;
1228 display: flex;
1229 align-items: center;
1230 justify-content: flex-start;
1231 padding: 15px 15px;
1232
1233 input[type="checkbox"]="checkbox""], input[type="radio"]="radio""] {
1234 margin: 0;
1235 }
1236
1237 label {
1238 margin-right: 10px;
1239 display: inline-block;
1240 }
1241
1242 &.section {
1243 border: 1px solid #c3c4c7;
1244 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
1245 color: #fff;
1246 background: #2c3338;
1247
1248 label {
1249 margin-left: auto;
1250 }
1251 }
1252
1253 &.wdk_btn_load_indicator.out::after {
1254 right: 15px;
1255 }
1256 }
1257
1258 .wdk-wrap .listing_custom_fields div.wdk-field-edit .wdk-field-container {
1259 width: calc(100% - 130px);
1260
1261 .select2.select2-container {
1262 max-width: 100%;
1263 }
1264 }