PluginProbe ʕ •ᴥ•ʔ
Hustle – Email Marketing, Lead Generation, Optins, Popups / 6.0
Hustle – Email Marketing, Lead Generation, Optins, Popups v6.0
7.8.14 7.8.14.1 7.8.13 7.8.13.1 trunk 3.0 3.1 3.1.1 3.1.2 3.1.3 3.1.4 4.3.2 4.4.4 4.4.5 4.4.5.1 4.4.5.4 4.6 4.6.1.1 4.6.1.4 4.7.0.2 4.7.0.3 4.7.0.7 4.7.0.9 4.7.1.0 4.7.1.1 4.8.0.0 5.0.0 5.0.1 5.0.1.1 5.0.1.2 5.1 5.1.1 5.1.2 5.1.3 5.1.3.1 5.1.3.2 5.1.4 5.1.5 6.0 6.0.1 6.0.2 6.0.3 6.0.4.2 6.0.5 6.0.6.1 6.0.7 6.0.8.1 6.0.9 7.0.0.1 7.0.2 7.0.3 7.0.4 7.1.0 7.1.1 7.2.0 7.2.1 7.3.0 7.3.1 7.3.3 7.3.5 7.3.6 7.3.7 7.4.0 7.4.1 7.4.11 7.4.13 7.4.13.1 7.4.2 7.4.3 7.4.4 7.4.5 7.4.5.1 7.4.5.2 7.4.6 7.4.7 7.5.0 7.6.0 7.6.1 7.6.3 7.6.4 7.6.6 7.7.0 7.7.1 7.8.0 7.8.1 7.8.10 7.8.10.1 7.8.10.2 7.8.11 7.8.12 7.8.12.1 7.8.2 7.8.3 7.8.4 7.8.5 7.8.6 7.8.7 7.8.8 7.8.9 7.8.9.1 7.8.9.2 7.8.9.3
wordpress-popup / lib / wpmu-lib / css / wpmu-ui.3.css
wordpress-popup / lib / wpmu-lib / css Last commit date
sass 8 years ago animate.3.css 8 years ago animate.3.min.css 8 years ago fontawesome.3.css 8 years ago fontawesome.3.min.css 8 years ago jquery-ui.wpmui.3.css 8 years ago jquery-ui.wpmui.3.min.css 8 years ago select2.3.css 8 years ago select2.3.min.css 8 years ago wpmu-card-list.3.css 8 years ago wpmu-card-list.3.min.css 8 years ago wpmu-html.3.css 8 years ago wpmu-html.3.min.css 8 years ago wpmu-ui.3.css 8 years ago wpmu-ui.3.min.css 8 years ago wpmu-vnav.3.css 8 years ago wpmu-vnav.3.min.css 8 years ago
wpmu-ui.3.css
1153 lines
1 /**
2 * WPMU Dev UI library
3 * (Philipp Stracker for WPMU Dev)
4 *
5 * This library provides a Javascript API via the global wpmuUI object.
6 *
7 * Content:
8 * 00. Settings
9 * 01. Modal overlays
10 * 02. Popup Windows
11 * 03. Messages
12 * 04. Tooltips
13 * 05. WordPress Pointers
14 * 06. Form Layout
15 * 07. Simple Grid
16 * 08. WordPress Accordeon Box
17 * 09. WordPress Tab-box
18 * 10. Select2
19 * 11. On Off Switch
20 * 12. Confirmation
21 * 13. Progress Bar
22 * 99. General Styles
23 */
24 /**
25 * =============================================================================
26 * == 00. SETTINGS
27 * =============================================================================
28 */
29 /**
30 * =============================================================================
31 * == 01. MODAL OVERLAYS
32 * =============================================================================
33 */
34 .wpmui-loading {
35 position: relative;
36 }
37 .wpmui-loading:after {
38 content: '';
39 position: absolute;
40 left: -1px;
41 top: -1px;
42 right: -1px;
43 bottom: -1px;
44 background: rgba(255, 255, 255, 0.8) url(../img/spinner.gif) center no-repeat;
45 z-index: 1000;
46 cursor: default;
47 min-width: 20px;
48 min-height: 20px;
49 }
50
51 .wpmui-loading-icon {
52 display: inline-block;
53 width: 20px;
54 height: 20px;
55 line-height: 20px;
56 vertical-align: middle;
57 background: transparent url(../img/spinner.gif) center no-repeat;
58 }
59
60 .wpmui-overlay {
61 background: #000;
62 position: fixed;
63 top: 0;
64 right: 0;
65 bottom: 0;
66 left: 0;
67 z-index: -1;
68 opacity: 0;
69 transition: opacity 0.3s, z-index 0.3s step-end;
70 }
71
72 .wpmui-has-overlay .wpmui-overlay {
73 z-index: 9999;
74 opacity: 0.7;
75 transition: opacity 0.3s, z-index 0.3s step-start;
76 }
77 .wpmui-has-overlay .wpmui-overlay.light {
78 opacity: .25;
79 }
80 .wpmui-has-overlay #wpwrap {
81 -webkit-filter: grayscale(75%);
82 -moz-filter: grayscale(75%);
83 filter: gray;
84 filter: grayscale(75%);
85 }
86 .wpmui-has-overlay #wpbody {
87 -webkit-filter: blur(3px);
88 -moz-filter: blur(3px);
89 filter: blur(3px);
90 }
91 .wpmui-has-overlay.no-blur #wpbody {
92 -webkit-filter: blur(0);
93 -moz-filter: blur(0);
94 filter: blur(0);
95 }
96
97 .wpmui-no-scroll {
98 overflow: hidden;
99 }
100
101 .wpmui-blur {
102 -webkit-filter: blur(3px) grayscale(75%);
103 -moz-filter: blur(3px) grayscale(75%);
104 filter: blur(3px) grayscale(75%);
105 position: relative;
106 }
107 .wpmui-blur:before {
108 content: '';
109 position: absolute;
110 left: 0;
111 top: 0;
112 right: 0;
113 bottom: 0;
114 z-index: 10;
115 }
116
117 /**
118 * =============================================================================
119 * == 02. POPUP WINDOWS
120 * =============================================================================
121 */
122 .wpmui-popup {
123 background: #F5F5F5;
124 position: fixed;
125 box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
126 z-index: 10000;
127 top: 50%;
128 left: 50%;
129 -webkit-box-sizing: border-box;
130 -moz-box-sizing: border-box;
131 box-sizing: border-box;
132 }
133 .wpmui-popup .popup-title {
134 position: absolute;
135 left: 0;
136 top: 0;
137 right: 0;
138 line-height: 50px;
139 white-space: nowrap;
140 overflow: hidden;
141 text-overflow: ellipsis;
142 padding: 0 70px 0 20px;
143 border-bottom: 1px solid #E5E5E5;
144 background: #F8F8F8;
145 min-height: 50px;
146 display: block;
147 font-size: 23px;
148 font-weight: 100;
149 z-index: 5;
150 }
151 .wpmui-popup .popup-title .the-title {
152 display: inline-block;
153 padding-right: 71px;
154 }
155 .wpmui-popup.slidein.slidein-down .popup-title {
156 top: auto;
157 bottom: 0;
158 border-top: 1px solid #E5E5E5;
159 border-bottom: 0;
160 }
161 .wpmui-popup.slidein .popup-title {
162 cursor: pointer;
163 }
164 .wpmui-popup .only-slidein {
165 display: none;
166 }
167 .wpmui-popup.slideing .only-slidein {
168 display: block;
169 }
170 .wpmui-popup .popup-close {
171 position: absolute;
172 top: 0;
173 right: 0;
174 width: 50px;
175 line-height: 50px;
176 height: 50px;
177 text-align: center;
178 text-decoration: none;
179 color: #666;
180 border-left: 1px solid #E5E5E5;
181 cursor: pointer;
182 z-index: 10;
183 }
184 .wpmui-popup .popup-close:hover, .wpmui-popup .popup-close:focus, .wpmui-popup .popup-close:active {
185 background: #FCFCFC;
186 color: #333;
187 }
188 .wpmui-popup .popup-close .dashicons {
189 line-height: 50px;
190 }
191 .wpmui-popup .popup-content {
192 position: absolute;
193 top: 0;
194 left: 0;
195 right: 0;
196 bottom: 0;
197 overflow: auto;
198 padding: 20px 20px 20px 20px;
199 z-index: 1;
200 }
201 .wpmui-popup .popup-content:after {
202 content: '';
203 display: block;
204 clear: both;
205 padding: 50px 0 0 0;
206 }
207 .wpmui-popup.no-buttons .popup-content:after {
208 padding-top: 0;
209 }
210 .wpmui-popup.no-close .popup-title {
211 padding: 0 20px;
212 }
213 .wpmui-popup.no-close .popup-close {
214 display: none;
215 }
216 .wpmui-popup hr {
217 margin: 15px -20px;
218 border: 0;
219 border-top: 1px solid #E5E5E5;
220 }
221 .wpmui-popup .buttons {
222 text-align: right;
223 position: absolute;
224 bottom: 0;
225 right: 0;
226 background: rgba(245, 245, 245, 0.8);
227 padding: 10px 20px 10px;
228 left: 0;
229 height: 50px;
230 border-top: 1px solid #E5E5E5;
231 margin: 0;
232 z-index: 2;
233 -webkit-box-sizing: border-box;
234 -moz-box-sizing: border-box;
235 box-sizing: border-box;
236 }
237
238 .popup.wdev-window,
239 .popup.wdev-slidein {
240 position: fixed;
241 z-index: 10000;
242 top: 50%;
243 left: 50%;
244 background: #FFF;
245 box-sizing: border-box;
246 }
247 .popup.wdev-window.slidein .popup-title,
248 .popup.wdev-slidein.slidein .popup-title {
249 cursor: pointer;
250 }
251
252 /**
253 * =============================================================================
254 * == 03. MESSAGES
255 * =============================================================================
256 */
257 .wpmui-msg {
258 position: relative;
259 min-height: 30px;
260 -webkit-box-sizing: border-box;
261 -moz-box-sizing: border-box;
262 box-sizing: border-box;
263 }
264
265 .wpmui-msg .wpmui-close {
266 float: right;
267 margin-top: 8px;
268 width: 20px;
269 height: 20px;
270 line-height: 20px;
271 text-align: center;
272 cursor: pointer;
273 text-decoration: none;
274 font-size: 16px;
275 padding: 0;
276 color: #CCC;
277 }
278
279 .wpmui-msg .wpmui-close:hover,
280 .wpmui-msg .wpmui-close:focus,
281 .wpmui-msg .wpmui-close:active {
282 color: #333;
283 }
284
285 .wpmui-msg .debug {
286 padding: 5px;
287 color: #666;
288 font-size: 12px;
289 font-family: monospace;
290 margin-bottom: 0.5em;
291 background: #F8F8F8;
292 }
293
294 /**
295 * =============================================================================
296 * == 04. TOOLTIPS
297 * =============================================================================
298 */
299 .wpmui-tip-box {
300 position: relative;
301 }
302
303 .wpmui-tip {
304 position: absolute;
305 display: none;
306 padding: 8px;
307 z-index: 100;
308 background: #333;
309 color: #EEE;
310 box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
311 border-radius: 2px;
312 }
313 .wpmui-tip.wpmui-visible {
314 display: block;
315 }
316 .wpmui-tip:before {
317 content: '';
318 position: absolute;
319 border: 5px solid transparent;
320 left: 50%;
321 top: 50%;
322 margin-left: -5px;
323 margin-top: -5px;
324 }
325 .wpmui-tip.top:before {
326 border-top-color: #333;
327 bottom: -10px;
328 top: auto;
329 }
330 .wpmui-tip.bottom:before {
331 border-bottom-color: #333;
332 top: -5px;
333 }
334 .wpmui-tip.left:before {
335 border-left-color: #333;
336 right: -10px;
337 left: auto;
338 }
339 .wpmui-tip.right:before {
340 border-right-color: #333;
341 left: -5px;
342 }
343
344 /**
345 * =============================================================================
346 * == 05. WORDPRESS POINTERS
347 * =============================================================================
348 */
349 .wpmui-pointer.wp-pointer-left {
350 margin-top: 30px;
351 }
352 .wpmui-pointer.wp-pointer-left h3 {
353 background: transparent;
354 color: #333;
355 border: 0;
356 margin: 0;
357 padding: 13px 20px 5px;
358 font-size: 13px;
359 }
360 .wpmui-pointer.wp-pointer-left h3:before {
361 content: '';
362 display: none;
363 }
364 .wpmui-pointer.wp-pointer-left p {
365 padding: 0 20px;
366 margin: 2px 0;
367 font-size: 12px;
368 }
369 .wpmui-pointer.wp-pointer-left .wp-pointer-content {
370 background: #FAFDFF;
371 border-radius: 4px;
372 border: 1px solid #ccc;
373 box-shadow: 0px 1px 8px -2px rgba(0, 0, 0, 0.35);
374 padding: 0 0 15px;
375 }
376 .wpmui-pointer.wp-pointer-left.no-title {
377 margin-top: 13px;
378 }
379 .wpmui-pointer.wp-pointer-left.no-title .wp-pointer-content {
380 padding-top: 17px;
381 }
382 .wpmui-pointer.wp-pointer-left .wp-pointer-buttons {
383 position: absolute;
384 top: 0;
385 right: 0;
386 white-space: nowrap;
387 padding: 5px 10px;
388 }
389 .wpmui-pointer.wp-pointer-left .wp-pointer-buttons a.close {
390 font-size: 1px;
391 color: transparent;
392 width: 10px;
393 padding: 0;
394 }
395 .wpmui-pointer.wp-pointer-left .wp-pointer-buttons a.close:before {
396 position: static;
397 float: right;
398 line-height: 14px;
399 margin: 3px 0 1px 5px;
400 }
401 .wpmui-pointer.wp-pointer-left .wp-pointer-arrow {
402 border: 0;
403 position: absolute;
404 top: 50%;
405 left: 0;
406 margin: -6px 0 0;
407 }
408 .wpmui-pointer.wp-pointer-left .wp-pointer-arrow:before, .wpmui-pointer.wp-pointer-left .wp-pointer-arrow:after {
409 content: '';
410 border: 6px solid transparent;
411 margin: 0;
412 left: -10px;
413 position: absolute;
414 top: 0;
415 }
416 .wpmui-pointer.wp-pointer-left .wp-pointer-arrow:before {
417 border-right-color: #CCC;
418 left: -11px;
419 }
420 .wpmui-pointer.wp-pointer-left .wp-pointer-arrow:after {
421 border-right-color: #FAFDFF;
422 }
423 .wpmui-pointer.wp-pointer-left .wp-pointer-arrow-inner {
424 display: none;
425 }
426 .wpmui-pointer.wp-pointer-left.wp-pointer-left {
427 padding-left: 8px;
428 margin-left: -12px;
429 }
430 .wpmui-pointer.wp-pointer-left.wp-pointer-left .wp-pointer-arrow {
431 left: 8px;
432 }
433
434 /**
435 * =============================================================================
436 * == 06. FORM LAYOUT
437 * =============================================================================
438 */
439 .wpmui-form label {
440 display: block;
441 line-height: 26px;
442 font-size: 14px;
443 font-weight: 500;
444 }
445
446 .wpmui-form input[type='text'],
447 .wpmui-form input[type='password'],
448 .wpmui-form textarea,
449 .wpmui-form select {
450 width: 100%;
451 margin: 0;
452 display: block;
453 -webkit-box-sizing: border-box;
454 -moz-box-sizing: border-box;
455 box-sizing: border-box;
456 }
457
458 .wpmui-form .hint {
459 color: #666;
460 font-size: 12px;
461 }
462
463 .wpmui-form .button-link,
464 .wpmui-popup .button-link {
465 display: inline-block;
466 text-decoration: underline;
467 font-size: 13px;
468 line-height: 26px;
469 height: 28px;
470 padding: 0 10px 1px;
471 cursor: pointer;
472 white-space: nowrap;
473 color: #0074A2;
474 background: transparent;
475 border: 0;
476 -webkit-box-sizing: border-box;
477 -moz-box-sizing: border-box;
478 box-sizing: border-box;
479 -webkit-box-shadow: 0 0 0 transparent;
480 -moz-box-shadow: 0 0 0 transparent;
481 box-shadow: 0 0 0 transparent;
482 -webkit-transition-property: border, background, color;
483 transition-property: border, background, color;
484 -webkit-transition-duration: .05s;
485 transition-duration: .05s;
486 -webkit-transition-timing-function: ease-in-out;
487 transition-timing-function: ease-in-out;
488 }
489 .wpmui-form .button-link:hover, .wpmui-form .button-link:active, .wpmui-form .button-link:focus,
490 .wpmui-popup .button-link:hover,
491 .wpmui-popup .button-link:active,
492 .wpmui-popup .button-link:focus {
493 color: #2EA2CC;
494 }
495
496 /**
497 * =============================================================================
498 * == 07. SIMPLE GRID (modified)
499 * Project Page - http://thisisdallas.github.com/Simple-Grid/
500 * Author - Dallas Bass
501 * =============================================================================
502 */
503 .wpmui-grid-8 *,
504 .wpmui-grid-12 *,
505 .wpmui-grid-8 *:after,
506 .wpmui-grid-12 *:after,
507 .wpmui-grid-8 *:before,
508 .wpmui-grid-12 *:before {
509 -webkit-box-sizing: border-box;
510 -moz-box-sizing: border-box;
511 box-sizing: border-box;
512 }
513
514 .wpmui-grid-8 [class*='col-'],
515 .wpmui-grid-12 [class*='col-'] {
516 float: left;
517 padding-right: 20px;
518 position: relative;
519 }
520
521 .wpmui-grid-8 [class*='col-']:last-of-type,
522 .wpmui-grid-12 [class*='col-']:last-of-type {
523 padding-right: 0px;
524 }
525
526 .wpmui-grid-8,
527 .wpmui-grid-12 {
528 width: 100%;
529 margin: 0;
530 overflow: hidden;
531 padding: 10px 0 0;
532 }
533
534 .wpmui-grid-8:after,
535 .wpmui-grid-12:after {
536 content: '';
537 display: table;
538 clear: both;
539 }
540
541 .wpmui-grid-8 .col-8,
542 .wpmui-grid-12 .col-12 {
543 width: 100%;
544 }
545
546 .wpmui-grid-12 .col-11 {
547 width: 91.66%;
548 }
549
550 .wpmui-grid-8 .col-7 {
551 width: 87.5%;
552 }
553
554 .wpmui-grid-12 .col-10 {
555 width: 83.333%;
556 }
557
558 .wpmui-grid-8 .col-6,
559 .wpmui-grid-12 .col-9 {
560 width: 75%;
561 }
562
563 .wpmui-grid-12 .col-8 {
564 width: 66.66%;
565 }
566
567 .wpmui-grid-8 .col-5 {
568 width: 62.5%;
569 }
570
571 .wpmui-grid-12 .col-7 {
572 width: 58.33%;
573 }
574
575 .wpmui-grid-8 .col-4,
576 .wpmui-grid-12 .col-6 {
577 width: 50%;
578 }
579
580 .wpmui-grid-12 .col-5 {
581 width: 41.66%;
582 }
583
584 .wpmui-grid-8 .col-3 {
585 width: 37.5%;
586 }
587
588 .wpmui-grid-12 .col-4 {
589 width: 33.33%;
590 }
591
592 .wpmui-grid-8 .col-2,
593 .wpmui-grid-12 .col-3 {
594 width: 25%;
595 }
596
597 .wpmui-grid-12 .col-2 {
598 width: 16.667%;
599 }
600
601 .wpmui-grid-8 .col-1 {
602 width: 12.5%;
603 }
604
605 .wpmui-grid-12 .col-1 {
606 width: 8.33%;
607 }
608
609 @media handheld, only screen and (max-width: 767px) {
610 .wpmui-grid-8,
611 .wpmui-grid-12 {
612 width: 100%;
613 min-width: 0;
614 margin-left: 0px;
615 margin-right: 0px;
616 padding-left: 0px;
617 padding-right: 0px;
618 }
619
620 .wpmui-grid-8 [class*='col-'],
621 .wpmui-grid-12 [class*='col-'] {
622 width: auto;
623 float: none;
624 margin-left: 0px;
625 margin-right: 0px;
626 margin-top: 10px;
627 margin-bottom: 10px;
628 padding-left: 20px;
629 padding-right: 20px;
630 }
631 }
632 /**
633 * =============================================================================
634 * == 08. WORDPRESS ACCORDEON BOX
635 * =============================================================================
636 *
637 * Example:
638 *
639 * <div class="wpmui-box">
640 * <h3>
641 * <a href="#" class="toggle" title="<?php _e( 'Click to toggle' ); ?>"><br></a>
642 * <span>Title</span>
643 * </h3>
644 * <div class="inside">
645 * <p>Content...</p>
646 * </div>
647 * </div>
648 */
649 .wpmui-box {
650 margin-bottom: 10px;
651 padding: 0;
652 line-height: 1;
653 position: relative;
654 min-width: 255px;
655 border: 1px solid #E5E5E5;
656 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
657 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
658 background: #FFF;
659 }
660 .wpmui-box > h3 {
661 font-size: 14px;
662 padding: 8px 12px;
663 margin: 0;
664 line-height: 1.4;
665 border-bottom: 1px solid #EEE;
666 cursor: pointer;
667 }
668 .wpmui-box > h3 .toggle {
669 cursor: pointer;
670 float: right;
671 width: 36px;
672 height: 36px;
673 color: #AAA;
674 text-decoration: none;
675 margin: -8px -12px;
676 text-align: center;
677 position: relative;
678 line-height: 36px;
679 }
680 .wpmui-box > h3:hover .toggle,
681 .wpmui-box .toggle:hover,
682 .wpmui-box .toggle:focus,
683 .wpmui-box .toggle:active {
684 color: #777;
685 }
686 .wpmui-box > h3 .toggle:before {
687 content: '\f142';
688 font: 400 20px/36px dashicons;
689 speak: none;
690 display: inline-block;
691 position: absolute;
692 -webkit-font-smoothing: antialiased;
693 -moz-osx-font-smoothing: grayscale;
694 text-decoration: none !important;
695 width: 100%;
696 height: 100%;
697 top: 0;
698 right: 0;
699 }
700 .wpmui-box > .inside {
701 margin: 6px 0 0;
702 position: relative;
703 padding: 0 12px 12px;
704 line-height: 1.4em;
705 font-size: 13px;
706 }
707 .wpmui-box > .inside:after {
708 content: '';
709 display: table;
710 clear: both;
711 }
712 .wpmui-box.closed > h3 .toggle:before {
713 content: '\f140';
714 }
715 .wpmui-box.closed > .inside {
716 display: none;
717 }
718 .wpmui-box.static > h3 {
719 cursor: default;
720 }
721 .wpmui-box.static > h3 .toggle {
722 display: none;
723 }
724 .wpmui-box.static > .inside {
725 display: block;
726 }
727
728 /**
729 * =============================================================================
730 * == 09. WORDPRESS TAB-BOX
731 * =============================================================================
732 *
733 * Example:
734 *
735 * <div class="wpmui-tabs">
736 * <a href="#config" class="tab active">Config</a>
737 * <a href="#archive" class="tab">Archive</a>
738 * </div>
739 * <div class="wpmui-tab-contents">
740 * <div class="tab active" id="config"></div>
741 * <div class="tab" id="archive"></div>
742 * </div>
743 */
744 .wpmui-tabs {
745 border-bottom: 1px solid #EEE;
746 padding-bottom: 0;
747 padding-left: 10px;
748 list-style: none;
749 margin: 20px 0 0;
750 }
751
752 .wpmui-tabs .tab {
753 border: 1px solid #EEE;
754 background: #F0F0F0;
755 color: #999;
756 display: inline-block;
757 text-decoration: none;
758 margin: 0 4px -1px 0;
759 padding: 0 12px;
760 font-weight: 600;
761 font-size: 13px;
762 line-height: 34px;
763 }
764
765 .wpmui-tabs .tab:hover,
766 .wpmui-tabs .tab:focus,
767 .wpmui-tabs .tab:active {
768 background: #F4F4F4;
769 color: #777;
770 }
771
772 .wpmui-tabs .tab.active {
773 border-bottom: 1px solid #FFF;
774 background: #FFF;
775 color: #444;
776 }
777
778 .wpmui-tab-contents {
779 padding: 12px;
780 }
781
782 .wpmui-tab-contents .tab {
783 display: none;
784 }
785
786 .wpmui-tab-contents .tab.active {
787 display: block;
788 }
789
790 .wpmui-box > .inside > .wpmui-tabs {
791 margin-left: -12px;
792 margin-right: -12px;
793 padding-left: 22px;
794 }
795
796 .wpmui-box > .inside > .wpmui-tab-contents {
797 margin-left: -12px;
798 margin-right: -12px;
799 margin-bottom: -12px;
800 }
801
802 /**
803 * =============================================================================
804 * == 10. SELECT2
805 * =============================================================================
806 */
807 .select2-container {
808 /* The select element */
809 /* The dropdown list */
810 }
811 .select2-container .wpmui-select2.select2-selection--single {
812 height: 28px;
813 }
814 .select2-container .wpmui-select2.select2-selection--single,
815 .select2-container .wpmui-select2.select2-selection--multiple {
816 min-height: 28px;
817 line-height: 27px;
818 font-size: 14px;
819 border-radius: 2px;
820 border-color: #CCC;
821 }
822 .select2-container .wpmui-select2.select2-selection--single .select2-selection__arrow b,
823 .select2-container .wpmui-select2.select2-selection--multiple .select2-selection__arrow b {
824 border-top-color: #AAA;
825 }
826 .select2-container .wpmui-select2.select2-selection--single .select2-selection__rendered,
827 .select2-container .wpmui-select2.select2-selection--multiple .select2-selection__rendered {
828 display: block;
829 margin-bottom: -1px;
830 }
831 .select2-container .wpmui-select2 .select2-search--inline {
832 margin: 0;
833 width: auto;
834 }
835 .select2-container .wpmui-select2 .select2-search--inline .select2-search__field {
836 margin: 1px;
837 background-image: none !important;
838 }
839 .select2-container.select2-container--focus .wpmui-select2 {
840 border-color: #5897fb;
841 }
842 .select2-container.select2-container--disabled .wpmui-select2 {
843 background: #DDD;
844 font-weight: 200;
845 opacity: .5;
846 }
847 .select2-container .select2-dropdown.wpmui-select2 {
848 overflow: hidden;
849 z-index: 1000500 !important;
850 /* Thickbox modal background has 1000100 */
851 margin-top: -1px;
852 box-shadow: 0 0 0 1px #5897fb inset;
853 border: 0;
854 border-radius: 0;
855 }
856 .select2-container .select2-dropdown.wpmui-select2 .select2-search {
857 margin-bottom: -1px;
858 padding: 1px;
859 }
860 .select2-container .select2-dropdown.wpmui-select2 .select2-search .select2-search__field {
861 margin: 0;
862 border: 0;
863 font-size: 13px;
864 border-bottom: 1px solid #5897fb;
865 background-color: #FAFDFF;
866 }
867 .select2-container .select2-dropdown.wpmui-select2 .select2-results {
868 padding: 0;
869 margin: 0;
870 font-size: 13px;
871 }
872 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option {
873 margin: 0;
874 white-space: nowrap;
875 padding-left: 20px;
876 position: relative;
877 }
878 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option:before {
879 content: '';
880 background-color: transparent;
881 background-position: center center;
882 background-repeat: no-repeat;
883 position: absolute;
884 left: 1px;
885 top: 1px;
886 width: 20px;
887 height: 28px;
888 }
889 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option[aria-selected=true] {
890 color: #5897fb;
891 background-color: #F5F9FF;
892 margin: 1px;
893 }
894 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option[aria-selected=true]:before {
895 /* blue check */
896 background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjEycHgiIGhlaWdodD0iOXB4IiB2aWV3Qm94PSIwIDAgMTIgOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJpY29uIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNC4wMDAwMDAsIC0xMC4wMDAwMDApIiBzdHJva2U9Im5vbmUiIGZpbGw9IiM1ODk3ZmIiPgogICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUwMDAwLCAxMC41MDAwMDApIj4KICAgICAgICAgICAgPHBhdGggZD0iTTguNzUsMCBMNC4zNzUsNC4zNzUgTDEuNzUsMS43NSBMMCwzLjUgTDQuMzc1LDcuODc1IEwxMC41LDEuNzUgTDguNzUsMCBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
897 }
898 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option--highlighted,
899 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option--highlighted[aria-selected=true] {
900 background-color: #5897fb;
901 color: #FFF;
902 }
903 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option--highlighted:before,
904 .select2-container .select2-dropdown.wpmui-select2 .select2-results .select2-results__option--highlighted[aria-selected=true]:before {
905 /* white check */
906 background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjEycHgiIGhlaWdodD0iOXB4IiB2aWV3Qm94PSIwIDAgMTIgOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJpY29uIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNC4wMDAwMDAsIC0xMC4wMDAwMDApIiBzdHJva2U9Im5vbmUiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQuNzUwMDAwLCAxMC41MDAwMDApIj4KICAgICAgICAgICAgPHBhdGggZD0iTTguNzUsMCBMNC4zNzUsNC4zNzUgTDEuNzUsMS43NSBMMCwzLjUgTDQuMzc1LDcuODc1IEwxMC41LDEuNzUgTDguNzUsMCBaIiBpZD0iU2hhcGUiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
907 }
908 .select2-container .select2-dropdown.wpmui-select2 .select2-results [aria-multiselectable=true] .select2-results__option--highlighted[aria-selected=true]:before {
909 /* white cross */
910 background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjEwcHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMCAwIDEwIDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgaWQ9Imljb24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01LjAwMDAwMCwgLTEwLjAwMDAwMCkiIHN0cm9rZT0ibm9uZSIgZmlsbD0iI0ZGRkZGRiI+CiAgICAgICAgPHBhdGggZD0iTTEyLjc0MDAwMTcsMTAuMzAwMDAwMiBMMTAuMTI1LDEyLjkyNSBMNy41LDEwLjMgTDUuNzUsMTIuMDUgTDguMzcwMDAwODQsMTQuNjgwMDAwMyBMNS43NSwxNy4zMTk5OTk3IEw3LjUsMTkuMDY5OTk5NyBMMTAuMTE5OTk4OSwxNi40Mzk5OTk2IEwxMi43NDAwMDE3LDE5LjA2OTk5OTcgTDE0LjQ5MDAwMTcsMTcuMzE5OTk5NyBMMTEuODY5OTk4OSwxNC42ODAwMDAzIEwxNC40OTAwMDE3LDEyLjA1MDAwMDIgTDEyLjc0MDAwMTcsMTAuMzAwMDAwMiBaIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==);
911 }
912
913 /**
914 * =============================================================================
915 * == 11. ON OFF SWITCH
916 * =============================================================================
917 *
918 * Example:
919 *
920 * <div class="wpmui-toggle">
921 * <input type="checkbox" class="wpmui-toggle-checkbox" id="toggle-1" checked="checked" />
922 * <label class="wpmui-toggle-label" for="toggle-1">
923 * <span class="wpmui-toggle-inner"></span>
924 * <span class="wpmui-toggle-switch"></span>
925 * </label>
926 * </div>
927 */
928 .wpmui-toggle {
929 position: relative;
930 width: 26px;
931 -webkit-user-select: none;
932 -moz-user-select: none;
933 -ms-user-select: none;
934 }
935
936 .wpmui-toggle-checkbox {
937 display: none !important;
938 }
939
940 .wpmui-toggle-label {
941 display: block;
942 overflow: hidden;
943 cursor: pointer;
944 border: 1px solid #CCC;
945 border-radius: 50px;
946 }
947
948 .wpmui-toggle-inner {
949 display: block;
950 width: 200%;
951 margin-left: -100%;
952 -moz-transition: margin 0.3s ease-in 0s;
953 -webkit-transition: margin 0.3s ease-in 0s;
954 -o-transition: margin 0.3s ease-in 0s;
955 transition: margin 0.3s ease-in 0s;
956 }
957 .wpmui-toggle-inner:before, .wpmui-toggle-inner:after {
958 display: block;
959 float: left;
960 width: 50%;
961 height: 5px;
962 padding: 0;
963 line-height: 5px;
964 font-size: 10px;
965 color: white;
966 font-family: Trebuchet, Arial, sans-serif;
967 font-weight: bold;
968 -moz-box-sizing: border-box;
969 -webkit-box-sizing: border-box;
970 box-sizing: border-box;
971 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
972 }
973 .wpmui-toggle-inner:before {
974 content: "";
975 padding-left: 5px;
976 background-color: #0074A2;
977 }
978 .wpmui-toggle-inner:after {
979 content: "";
980 padding-right: 5px;
981 background-color: #EEEEEE;
982 text-align: right;
983 }
984
985 .wpmui-toggle-switch {
986 display: block;
987 width: 14px;
988 margin: -3.5px;
989 background: #F8F8F8;
990 border: 1px solid #CCC;
991 border-radius: 15px;
992 position: absolute;
993 top: 0;
994 bottom: 0;
995 right: 20px;
996 -moz-transition: all 0.3s ease-in 0s;
997 -webkit-transition: all 0.3s ease-in 0s;
998 -o-transition: all 0.3s ease-in 0s;
999 transition: all 0.3s ease-in 0s;
1000 box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
1001 }
1002
1003 .wpmui-toggle-checkbox:checked + .wpmui-toggle-label .wpmui-toggle-inner {
1004 margin-left: 0;
1005 }
1006
1007 .wpmui-toggle-checkbox:checked + .wpmui-toggle-label .wpmui-toggle-switch {
1008 right: 0px;
1009 }
1010
1011 /**
1012 * =============================================================================
1013 * == 12. CONFIRMATION
1014 * =============================================================================
1015 */
1016 .wpmui-confirm-modal {
1017 left: 0;
1018 top: 0;
1019 right: 0;
1020 bottom: 0;
1021 z-index: 99998;
1022 background: #000;
1023 opacity: .4;
1024 }
1025
1026 .wpmui-confirm-box {
1027 top: 25%;
1028 width: 580px;
1029 padding: 20px 20px 0;
1030 left: 50%;
1031 margin-left: -310px;
1032 /* Include the padding! */
1033 z-index: 99999;
1034 background: #FFF;
1035 box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
1036 }
1037 .wpmui-confirm-box .wpmui-confirm-btn {
1038 margin: 10px -20px 0px;
1039 padding: 10px 20px;
1040 text-align: right;
1041 background: #FAFAFA;
1042 border-top: 1px solid #E5E5E5;
1043 }
1044 .wpmui-confirm-box .wpmui-confirm-btn button {
1045 margin-left: 10px;
1046 }
1047
1048 /**
1049 * =============================================================================
1050 * == 13. PROGRESS BAR
1051 * =============================================================================
1052 */
1053 .wpmui-progress-wrap {
1054 position: relative;
1055 width: 100%;
1056 }
1057 .wpmui-progress-wrap .wpmui-progress-full {
1058 background: rgba(255, 255, 255, 0.7);
1059 width: 100%;
1060 border-radius: 2px;
1061 box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.1);
1062 }
1063 .wpmui-progress-wrap .wpmui-progress {
1064 background: #369;
1065 border-radius: 2px;
1066 height: 28px;
1067 transition: width .25s;
1068 }
1069 .wpmui-progress-wrap .wpmui-progress-percent {
1070 position: absolute;
1071 left: 0;
1072 right: 0;
1073 top: 0;
1074 line-height: 28px;
1075 font-size: 13px;
1076 text-align: center;
1077 color: #FFF;
1078 text-shadow: 0 0 5px #264d73;
1079 }
1080 .wpmui-progress-wrap .wpmui-progress-percent:before {
1081 content: '';
1082 position: absolute;
1083 left: 50%;
1084 width: 30px;
1085 height: 10px;
1086 top: 50%;
1087 border-radius: 5px;
1088 margin-top: -5px;
1089 margin-left: -15px;
1090 box-shadow: 0 0 8px 4px #264d73;
1091 background: #264d73;
1092 z-index: -1;
1093 opacity: .5;
1094 }
1095 .wpmui-progress-wrap .wpmui-progress-label {
1096 font-size: 12px;
1097 margin-top: 6px;
1098 color: #888;
1099 text-align: right;
1100 }
1101
1102 /**
1103 * =============================================================================
1104 * == 99. GENERAL STYLES
1105 * =============================================================================
1106 */
1107 .no-pad-top {
1108 padding-top: 0 !important;
1109 margin-top: 0 !important;
1110 }
1111
1112 .no-pad-bottom {
1113 padding-bottom: 0 !important;
1114 margin-bottom: 0 !important;
1115 }
1116
1117 .no-pad {
1118 padding-top: 0 !important;
1119 padding-bottom: 0 !important;
1120 margin-top: 0 !important;
1121 margin-bottom: 0 !important;
1122 }
1123
1124 .dashicons.light {
1125 opacity: .5;
1126 }
1127
1128 .cf:before,
1129 .cf:after {
1130 content: '';
1131 display: table;
1132 }
1133
1134 .cf:after {
1135 clear: both;
1136 }
1137
1138 .wpmui-left {
1139 float: left;
1140 }
1141
1142 .wpmui-right {
1143 float: right;
1144 }
1145
1146 .button .dashicons,
1147 .button-primary .dashicons {
1148 line-height: 26px;
1149 height: 26px;
1150 float: left;
1151 margin-right: 6px;
1152 }
1153