PluginProbe
Elementor Website Builder – more than just a page builder / 3.2.0
Elementor Website Builder – more than just a page builder v3.2.0
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | assets/css/admin.css +323 -80 3.1.43.2.0 View file →
@@ -1,5 +1,5 @@
1 -/*! elementor - v3.1.4 - 10-03-2021 */
1 +/*! elementor - v3.2.0 - 19-04-2021 */
2 2 .elementor-button {
3 3 font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
4 4 font-weight: 500;
5 5 text-transform: uppercase;
@@ -388,8 +388,35 @@
388 388 padding-bottom: 5px;
389 389 padding-right: 15px;
390 390 padding-left: 0; }
391 391
392 +:root {
393 + --e-focus-color: rgba(0, 115, 170, .4);
394 + --e-context-primary-color: #0073aa;
395 + --e-context-primary-color-dark: #005177;
396 + --e-context-primary-tint-4: rgba(0, 115, 170, 0.4);
397 + --e-context-primary-tint-1: rgba(0, 115, 170, 0.04);
398 + --e-context-success-color: #39b54a;
399 + --e-context-success-color-dark: #2d8e3a;
400 + --e-context-success-tint-4: rgba(57, 181, 74, 0.4);
401 + --e-context-success-tint-1: rgba(57, 181, 74, 0.04);
402 + --e-context-info-color: #71d7f7;
403 + --e-context-info-color-dark: #41c9f4;
404 + --e-context-info-tint-4: rgba(113, 215, 247, 0.4);
405 + --e-context-info-tint-1: rgba(113, 215, 247, 0.04);
406 + --e-context-warning-color: #fcb92c;
407 + --e-context-warning-color-dark: #f2a503;
408 + --e-context-warning-tint-4: rgba(252, 185, 44, 0.4);
409 + --e-context-warning-tint-1: rgba(252, 185, 44, 0.04);
410 + --e-context-error-color: #d72b3f;
411 + --e-context-error-color-dark: #ae2131;
412 + --e-context-error-tint-4: rgba(215, 43, 63, 0.4);
413 + --e-context-error-tint-1: rgba(215, 43, 63, 0.04);
414 + --e-context-cta-color: #93003c;
415 + --e-context-cta-color-dark: #600027;
416 + --e-context-cta-tint-4: rgba(147, 0, 60, 0.4);
417 + --e-context-cta-tint-1: rgba(147, 0, 60, 0.04); }
418 +
392 419 .e-getting-started {
393 420 max-width: 900px;
394 421 padding: 2.5em 0;
395 422 margin: auto;
@@ -444,92 +471,261 @@
444 471 box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15); }
445 472 .e-getting-started__actions .button-primary {
446 473 margin-right: 20px; }
447 474
448 -/*= Elementor Message
449 -.notice.elementor-message {
450 - padding: 20px;
451 - border-left-color: #93003c; }
452 - .notice.elementor-message .elementor-message-inner {
475 +:root {
476 + --e-button-padding-y: 0.4375rem;
477 + --e-button-padding-x: 0.75rem;
478 + --e-button-font-size: 0.8125rem;
479 + --e-button-font-weight: 500;
480 + --e-button-line-height: 0.9375rem;
481 + --e-button-border-radius: 3px;
482 + --e-button-context-color: var(--e-context-primary-color);
483 + --e-button-context-color-dark: var(--e-context-primary-color-dark);
484 + --e-button-context-tint: var(--e-context-primary-tint-1); }
485 +
486 +.e-button {
487 + display: inline-block;
488 + font-weight: var(--e-button-font-weight);
489 + text-align: center;
490 + white-space: nowrap;
491 + vertical-align: middle;
492 + -webkit-user-select: none;
493 + -moz-user-select: none;
494 + -ms-user-select: none;
495 + user-select: none;
496 + color: #ffffff;
497 + border: 0;
498 + text-decoration: none;
499 + background: var(--e-button-context-color);
500 + padding: var(--e-button-padding-y) var(--e-button-padding-x);
501 + font-size: var(--e-button-font-size);
502 + line-height: var(--e-button-line-height);
503 + -webkit-border-radius: var(--e-button-border-radius);
504 + border-radius: var(--e-button-border-radius);
505 + -webkit-transition: background-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
506 + transition: background-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
507 + -o-transition: background-color .15s ease-in-out, box-shadow .15s ease-in-out;
508 + transition: background-color .15s ease-in-out, box-shadow .15s ease-in-out;
509 + transition: background-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; }
510 + .e-button:active, .e-button:hover, .e-button:focus {
511 + color: #ffffff;
512 + text-decoration: none;
513 + background: var(--e-button-context-color-dark); }
514 + .e-button:focus, .e-button.focus {
515 + outline: 0;
516 + -webkit-box-shadow: 0 0 0 2px var(--e-focus-color);
517 + box-shadow: 0 0 0 2px var(--e-focus-color); }
518 + .e-button.disabled, .e-button:disabled {
519 + opacity: 0.5;
520 + -webkit-box-shadow: none;
521 + box-shadow: none; }
522 + .e-button:not(:disabled):not(.disabled) {
523 + cursor: pointer; }
524 + .e-button:not(:disabled):not(.disabled):active:focus, .e-button:not(:disabled):not(.disabled).active:focus {
525 + -webkit-box-shadow: 0 0 0 2px var(--e-focus-color);
526 + box-shadow: 0 0 0 2px var(--e-focus-color); }
527 + .e-button--primary {
528 + --e-button-context-color: var(--e-context-primary-color);
529 + --e-button-context-color-dark: var(--e-context-primary-color-dark);
530 + --e-button-context-tint: var(--e-context-primary-tint-1);
531 + --e-focus-color: var(--e-context-primary-tint-4); }
532 + .e-button--success {
533 + --e-button-context-color: var(--e-context-success-color);
534 + --e-button-context-color-dark: var(--e-context-success-color-dark);
535 + --e-button-context-tint: var(--e-context-success-tint-1);
536 + --e-focus-color: var(--e-context-success-tint-4); }
537 + .e-button--info {
538 + --e-button-context-color: var(--e-context-info-color);
539 + --e-button-context-color-dark: var(--e-context-info-color-dark);
540 + --e-button-context-tint: var(--e-context-info-tint-1);
541 + --e-focus-color: var(--e-context-info-tint-4); }
542 + .e-button--warning {
543 + --e-button-context-color: var(--e-context-warning-color);
544 + --e-button-context-color-dark: var(--e-context-warning-color-dark);
545 + --e-button-context-tint: var(--e-context-warning-tint-1);
546 + --e-focus-color: var(--e-context-warning-tint-4); }
547 + .e-button--error {
548 + --e-button-context-color: var(--e-context-error-color);
549 + --e-button-context-color-dark: var(--e-context-error-color-dark);
550 + --e-button-context-tint: var(--e-context-error-tint-1);
551 + --e-focus-color: var(--e-context-error-tint-4); }
552 + .e-button--cta {
553 + --e-button-context-color: var(--e-context-cta-color);
554 + --e-button-context-color-dark: var(--e-context-cta-color-dark);
555 + --e-button-context-tint: var(--e-context-cta-tint-1);
556 + --e-focus-color: var(--e-context-cta-tint-4); }
557 + .e-button.e-button--outline {
558 + color: var(--e-button-context-color);
559 + background: none;
560 + border: 1px solid currentColor; }
561 + .e-button.e-button--outline:hover, .e-button.e-button--outline:focus {
562 + color: var(--e-button-context-color-dark);
563 + background: var(--e-button-context-tint); }
564 + .e-button.e-button--outline.disabled, .e-button.e-button--outline:disabled {
565 + color: var(--e-button-context-color-dark);
566 + background: #818a91; }
567 + .e-button > i {
568 + line-height: inherit;
569 + height: var(--e-button-line-height);
570 + width: -webkit-min-content;
571 + width: -moz-min-content;
572 + width: min-content; }
573 + .e-button > * + * {
574 + -webkit-margin-start: .5ch;
575 + margin-inline-start: .5ch; }
576 + .e-button--link {
577 + color: var(--e-button-context-color);
578 + background-color: transparent; }
579 + .e-button--link:hover, .e-button--link:focus {
580 + color: var(--e-button-context-color-dark);
581 + background: var(--e-button-context-tint); }
582 + .e-button--link:disabled, .e-button--link.disabled {
583 + color: #818a91; }
584 +
585 +a.e-button.disabled,
586 +fieldset:disabled a.e-button {
587 + pointer-events: none; }
588 +
589 +:root {
590 + --e-notice-bg: #fff;
591 + --e-notice-border-color: #ccd0d4;
592 + --e-notice-context-color: #93003c;
593 + --e-notice-context-tint: var(--e-context-cta-tint-1);
594 + --e-notice-box-shadow: 0 1px 4px rgba(0,0,0,.15);
595 + --e-notice-dismiss-color: #6d7882; }
596 +
597 +.e-notice {
598 + position: relative;
599 + display: -webkit-box;
600 + display: -ms-flexbox;
601 + display: flex;
602 + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
603 + background: var(--e-notice-bg);
604 + border: 1px solid var(--e-notice-border-color);
605 + border-inline-start-width: 4px;
606 + -webkit-box-shadow: var(--e-notice-box-shadow);
607 + box-shadow: var(--e-notice-box-shadow);
608 + margin: 5px 20px 5px 2px; }
609 + .e-notice.notice {
610 + padding: 0; }
611 + .e-notice::before {
612 + display: block;
613 + content: '';
614 + position: absolute;
615 + left: -4px;
616 + top: -1px;
617 + bottom: -1px;
618 + width: 4px;
619 + background-color: var(--e-notice-context-color); }
620 + .e-notice--primary {
621 + --e-notice-context-color: var(--e-context-primary-color);
622 + --e-notice-context-color-dark: var(--e-context-primary-color-dark);
623 + --e-notice-context-tint: var(--e-context-primary-tint-1); }
624 + .e-notice--success {
625 + --e-notice-context-color: var(--e-context-success-color);
626 + --e-notice-context-color-dark: var(--e-context-success-color-dark);
627 + --e-notice-context-tint: var(--e-context-success-tint-1); }
628 + .e-notice--info {
629 + --e-notice-context-color: var(--e-context-info-color);
630 + --e-notice-context-color-dark: var(--e-context-info-color-dark);
631 + --e-notice-context-tint: var(--e-context-info-tint-1); }
632 + .e-notice--warning {
633 + --e-notice-context-color: var(--e-context-warning-color);
634 + --e-notice-context-color-dark: var(--e-context-warning-color-dark);
635 + --e-notice-context-tint: var(--e-context-warning-tint-1); }
636 + .e-notice--error {
637 + --e-notice-context-color: var(--e-context-error-color);
638 + --e-notice-context-color-dark: var(--e-context-error-color-dark);
639 + --e-notice-context-tint: var(--e-context-error-tint-1); }
640 + .e-notice--cta {
641 + --e-notice-context-color: var(--e-context-cta-color);
642 + --e-notice-context-color-dark: var(--e-context-cta-color-dark);
643 + --e-notice-context-tint: var(--e-context-cta-tint-1); }
644 + .e-notice--extended {
645 + --e-notice-is-extended: 1; }
646 + .e-notice--dismissible {
647 + padding-right: 38px; }
648 + .e-notice__aside {
649 + overflow: hidden;
650 + background-color: var(--e-notice-context-tint);
651 + width: calc(var(--e-notice-is-extended, 0) * 50px);
652 + text-align: center;
653 + padding-top: 15px;
654 + -webkit-box-flex: 0;
655 + -ms-flex-positive: 0;
656 + flex-grow: 0;
657 + -ms-flex-negative: 0;
658 + flex-shrink: 0; }
659 + .e-notice__icon-wrapper {
660 + display: inline-block;
661 + font-size: 0.625rem;
662 + max-height: 1.5rem;
663 + width: 1.5rem;
664 + line-height: 1.5rem;
665 + -webkit-border-radius: 100px;
666 + border-radius: 100px;
667 + background: var(--e-notice-context-color);
668 + color: #fff;
669 + text-shadow: 0 0 3px var(--e-notice-context-color-dark), 0 0 1px var(--e-notice-context-color-dark), 0 0 1px var(--e-notice-context-color-dark); }
670 + .e-notice__content {
671 + padding: 20px; }
672 + .e-notice__actions {
453 673 display: -webkit-box;
454 674 display: -ms-flexbox;
455 - display: flex;
456 - -webkit-box-align: center;
457 - -ms-flex-align: center;
458 - align-items: center; }
459 - .notice.elementor-message .elementor-message-icon {
460 - font-size: 20px; }
461 - .notice.elementor-message .elementor-message-content {
462 - padding: 0 20px; }
463 - .notice.elementor-message p {
675 + display: flex; }
676 + .e-notice__actions > * + * {
677 + -webkit-margin-start: 8px;
678 + margin-inline-start: 8px; }
679 + .e-notice__dismiss {
680 + width: 20px;
681 + height: 20px;
682 + line-height: 20px;
683 + font-size: 0.8125rem;
684 + text-align: center;
685 + background: none;
686 + display: block;
687 + position: absolute;
688 + top: 0;
689 + right: 1px;
690 + border: none;
691 + margin: 0;
692 + padding: 9px;
693 + cursor: pointer;
694 + font-style: normal; }
695 + .e-notice__dismiss:before {
696 + font-family: eicons;
697 + display: inline-block;
698 + content: "\e87f";
699 + color: var(--e-notice-dismiss-color);
700 + width: 20px;
701 + -webkit-border-radius: 20px;
702 + border-radius: 20px;
703 + speak: none;
704 + text-align: center;
705 + -webkit-font-smoothing: antialiased;
706 + -moz-osx-font-smoothing: grayscale; }
707 + .e-notice__dismiss:hover:before, .e-notice__dismiss:active:before, .e-notice__dismiss:focus:before {
708 + font-weight: bold; }
709 + .e-notice__dismiss:focus:before {
710 + color: #fff;
711 + background: var(--e-notice-dismiss-color);
712 + outline: none; }
713 + .e-notice__dismiss:focus {
714 + outline: none; }
715 + .e-notice p {
716 + line-height: 1.2;
464 717 padding: 0;
465 718 margin: 0; }
466 - .notice.elementor-message h3 {
467 - margin: 0 0 5px; }
468 - .notice.elementor-message .elementor-message-action {
469 - text-align: center;
470 - display: -webkit-box;
471 - display: -ms-flexbox;
472 - display: flex;
473 - -webkit-box-orient: vertical;
474 - -webkit-box-direction: normal;
475 - -ms-flex-direction: column;
476 - flex-direction: column;
477 - margin-left: auto; }
478 - .notice.elementor-message .elementor-message-action .elementor-button {
479 - background-color: #93003c;
480 - color: #fff;
481 - border-color: #7c1337;
482 - -webkit-box-shadow: 0 1px 0 #7c1337;
483 - box-shadow: 0 1px 0 #7c1337;
484 - padding: 5px 30px;
485 - height: auto;
486 - line-height: 20px;
487 - text-transform: capitalize; }
488 - .notice.elementor-message .elementor-message-action .elementor-button i {
489 - margin-right: 5px; }
490 - .notice.elementor-message .elementor-message-action .elementor-button:hover {
491 - background-color: #a0124a; }
492 - .notice.elementor-message .elementor-message-action .elementor-button:active {
493 - -webkit-box-shadow: inset 0 1px 0 #7c1337;
494 - box-shadow: inset 0 1px 0 #7c1337;
495 - -webkit-transform: translateY(1px);
496 - -ms-transform: translateY(1px);
497 - transform: translateY(1px); }
498 - .notice.elementor-message .elementor-message-action .elementor-link {
499 - padding-top: 5px; }
500 - .notice.elementor-message .elementor-message-actions {
501 - margin-top: 10px; }
502 - .notice.elementor-message .elementor-message-actions .button.button-primary {
503 - margin-right: 5px; }
719 + .e-notice p + .e-notice__actions {
720 + margin-top: 1rem; }
721 + .e-notice h3 {
722 + font-size: 1.0625rem;
723 + line-height: 1.2;
724 + margin: 0; }
725 + .e-notice h3 + p {
726 + margin-top: 8px; }
504 727
505 -.notice.elementor-message-announcement {
506 - border-color: #93003c; }
507 - .notice.elementor-message-announcement a {
508 - color: #93003c; }
509 -
510 -@media (min-width: 1200px) {
511 - .elementor-message-action {
512 - padding-right: 10px; } }
513 -
514 -@media (max-width: 600px) {
515 - .notice.elementor-message {
516 - padding: 20px; }
517 - .notice.elementor-message .elementor-message-inner {
518 - display: block;
519 - text-align: center; }
520 - .notice.elementor-message .elementor-message-inner .elementor-message-icon,
521 - .notice.elementor-message .elementor-message-inner .elementor-message-content,
522 - .notice.elementor-message .elementor-message-inner .elementor-message-action {
523 - display: block; }
524 - .notice.elementor-message .elementor-message-inner .elementor-message-action {
525 - text-align: center; }
526 - .notice.elementor-message .elementor-message-inner .elementor-message-icon {
527 - width: auto; }
528 - .notice.elementor-message .elementor-message-inner .elementor-message-content {
529 - padding: 10px 0; } }
530 -
531 728 /*= Elementor Admin Alert
532 729 ---------------------------------------*/
533 730 .elementor-admin-alert {
534 731 padding: 15px;
@@ -759,9 +955,10 @@
759 955 line-height: 1.6;
760 956 display: none; }
761 957
762 958 #tab-replace_url.elementor-active ~ p.submit,
763 -#tab-fontawesome4_migration.elementor-active ~ p.submit {
959 +#tab-fontawesome4_migration.elementor-active ~ p.submit,
960 +#tab-import-export-kit.elementor-active ~ p.submit {
764 961 display: none; }
765 962
766 963 #elementor_rollback > div,
767 964 #elementor_rollback_pro > div,
@@ -775,8 +972,53 @@
775 972 #elementor_rollback_pro > div select,
776 973 #elementor_replace_url > div input,
777 974 #elementor_replace_url > div select {
778 975 margin-right: 6px; }
976 +
977 +.tab-import-export-kit__wrapper {
978 + margin: 40px 0;
979 + max-width: 700px; }
980 +
981 +.tab-import-export-kit__container {
982 + background-color: white;
983 + font-size: 16px;
984 + max-width: 700px;
985 + padding: 30px; }
986 + .tab-import-export-kit__container:not(:first-child) {
987 + margin-top: 5px; }
988 + .tab-import-export-kit__container p {
989 + color: #A4AFB7;
990 + font-size: 16px;
991 + margin: 20px 0 25px; }
992 +
993 +.tab-import-export-kit__info {
994 + font-size: 14px; }
995 +
996 +.tab-import-export-kit__container a:not(.elementor-button),
997 +.tab-import-export-kit__info a {
998 + color: #58d0f5;
999 + text-decoration: underline; }
1000 +
1001 +.tab-import-export-kit__box {
1002 + display: -webkit-box;
1003 + display: -ms-flexbox;
1004 + display: flex;
1005 + -webkit-box-pack: justify;
1006 + -ms-flex-pack: justify;
1007 + justify-content: space-between;
1008 + -webkit-box-align: start;
1009 + -ms-flex-align: start;
1010 + align-items: flex-start; }
1011 + .tab-import-export-kit__box h2 {
1012 + color: #6D7882;
1013 + font-size: 28px;
1014 + font-weight: normal;
1015 + line-height: 1;
1016 + margin: 0; }
1017 + .tab-import-export-kit__box .elementor-button.elementor-button-success {
1018 + font-weight: bold;
1019 + padding: 8px 16px;
1020 + text-transform: initial; }
779 1021
780 1022 #dashboard-widgets .e-dashboard-widget h3.e-heading {
781 1023 font-weight: 600;
782 1024 margin-bottom: 13px; }