@wizishop/wizi-block 3.3.37 → 3.3.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/wizi-block.scss +447 -445
package/package.json
CHANGED
package/wizi-block.scss
CHANGED
|
@@ -537,135 +537,6 @@ $transition-base-time: 200ms !default;
|
|
|
537
537
|
padding-top: rem(12);
|
|
538
538
|
}
|
|
539
539
|
}
|
|
540
|
-
.wb-configs {
|
|
541
|
-
.button.is-info {
|
|
542
|
-
margin: 0 rem(5) rem(5) 0;
|
|
543
|
-
border-color: $wb-border-color;
|
|
544
|
-
font-size: 0.875rem !important;
|
|
545
|
-
padding-left: 10px;
|
|
546
|
-
padding-right: 10px;
|
|
547
|
-
|
|
548
|
-
&:last-child {
|
|
549
|
-
margin-right: rem(0);
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
&__color {
|
|
554
|
-
width: rem(40);
|
|
555
|
-
height: rem(40);
|
|
556
|
-
border-radius: rem(40);
|
|
557
|
-
cursor: pointer;
|
|
558
|
-
border: rem(2) solid $wb-border-color;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
&__picker {
|
|
562
|
-
max-height: 0;
|
|
563
|
-
overflow: hidden;
|
|
564
|
-
@include simple_transition();
|
|
565
|
-
|
|
566
|
-
.color-picker {
|
|
567
|
-
border: rem(1) solid $wb-border-color;
|
|
568
|
-
width: 95% !important;
|
|
569
|
-
margin: rem(12) auto auto;
|
|
570
|
-
|
|
571
|
-
&:before {
|
|
572
|
-
position: absolute;
|
|
573
|
-
content: '';
|
|
574
|
-
bottom: 100%;
|
|
575
|
-
left: rem(10);
|
|
576
|
-
margin-left: -(rem(8));
|
|
577
|
-
width: 0;
|
|
578
|
-
height: 0;
|
|
579
|
-
border-bottom: rem(8) solid $wb-border-color;
|
|
580
|
-
border-right: rem(8) solid transparent;
|
|
581
|
-
border-left: rem(8) solid transparent;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.box {
|
|
585
|
-
border: 0 !important;
|
|
586
|
-
margin-bottom: 0;
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
.type-policy {
|
|
590
|
-
top: rem(215);
|
|
591
|
-
}
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
&.is-active {
|
|
595
|
-
max-height: 1000px;
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.help {
|
|
600
|
-
a {
|
|
601
|
-
display: inline-block;
|
|
602
|
-
position: relative;
|
|
603
|
-
color: $wb-main-color;
|
|
604
|
-
@include simple_transition();
|
|
605
|
-
|
|
606
|
-
&:before {
|
|
607
|
-
content: '';
|
|
608
|
-
width: 0;
|
|
609
|
-
height: rem(1);
|
|
610
|
-
position: absolute;
|
|
611
|
-
bottom: -#{rem(4px)};
|
|
612
|
-
background-color: $wb-main-color-hover;
|
|
613
|
-
@include simple_transition();
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
&:hover {
|
|
617
|
-
color: $wb-main-color-hover;
|
|
618
|
-
|
|
619
|
-
&:before {
|
|
620
|
-
width: 100%;
|
|
621
|
-
}
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.icon-help {
|
|
627
|
-
position: relative;
|
|
628
|
-
.fa-info-circle {
|
|
629
|
-
top: rem(-5);
|
|
630
|
-
padding: 0.5rem 0.5rem 0 0.3rem;
|
|
631
|
-
span {
|
|
632
|
-
display: none;
|
|
633
|
-
font-weight: 300;
|
|
634
|
-
}
|
|
635
|
-
&:hover {
|
|
636
|
-
span {
|
|
637
|
-
display: block;
|
|
638
|
-
position: absolute;
|
|
639
|
-
background-color: $white;
|
|
640
|
-
color: $main-text;
|
|
641
|
-
left: 0;
|
|
642
|
-
top: rem(25);
|
|
643
|
-
border: 1px solid $wb-border-color;
|
|
644
|
-
padding: 0.25rem 0.5rem;
|
|
645
|
-
z-index: 100;
|
|
646
|
-
text-align: justify;
|
|
647
|
-
font-family: 'Work Sans', helvetica, serif;
|
|
648
|
-
font-weight: 300;
|
|
649
|
-
font-size: rem(13);
|
|
650
|
-
&:hover {
|
|
651
|
-
display: block;
|
|
652
|
-
}
|
|
653
|
-
}
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
}
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
input::-webkit-outer-spin-button,
|
|
660
|
-
input::-webkit-inner-spin-button {
|
|
661
|
-
-webkit-appearance: none;
|
|
662
|
-
margin: 0;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
/* Firefox */
|
|
666
|
-
input[type='number'] {
|
|
667
|
-
-moz-appearance: textfield;
|
|
668
|
-
}
|
|
669
540
|
.wb-structure-config {
|
|
670
541
|
position: absolute;
|
|
671
542
|
height: 100%;
|
|
@@ -966,6 +837,135 @@ input[type='number'] {
|
|
|
966
837
|
pointer-events: all;
|
|
967
838
|
}
|
|
968
839
|
}
|
|
840
|
+
.wb-configs {
|
|
841
|
+
.button.is-info {
|
|
842
|
+
margin: 0 rem(5) rem(5) 0;
|
|
843
|
+
border-color: $wb-border-color;
|
|
844
|
+
font-size: 0.875rem !important;
|
|
845
|
+
padding-left: 10px;
|
|
846
|
+
padding-right: 10px;
|
|
847
|
+
|
|
848
|
+
&:last-child {
|
|
849
|
+
margin-right: rem(0);
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
&__color {
|
|
854
|
+
width: rem(40);
|
|
855
|
+
height: rem(40);
|
|
856
|
+
border-radius: rem(40);
|
|
857
|
+
cursor: pointer;
|
|
858
|
+
border: rem(2) solid $wb-border-color;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
&__picker {
|
|
862
|
+
max-height: 0;
|
|
863
|
+
overflow: hidden;
|
|
864
|
+
@include simple_transition();
|
|
865
|
+
|
|
866
|
+
.color-picker {
|
|
867
|
+
border: rem(1) solid $wb-border-color;
|
|
868
|
+
width: 95% !important;
|
|
869
|
+
margin: rem(12) auto auto;
|
|
870
|
+
|
|
871
|
+
&:before {
|
|
872
|
+
position: absolute;
|
|
873
|
+
content: '';
|
|
874
|
+
bottom: 100%;
|
|
875
|
+
left: rem(10);
|
|
876
|
+
margin-left: -(rem(8));
|
|
877
|
+
width: 0;
|
|
878
|
+
height: 0;
|
|
879
|
+
border-bottom: rem(8) solid $wb-border-color;
|
|
880
|
+
border-right: rem(8) solid transparent;
|
|
881
|
+
border-left: rem(8) solid transparent;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.box {
|
|
885
|
+
border: 0 !important;
|
|
886
|
+
margin-bottom: 0;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.type-policy {
|
|
890
|
+
top: rem(215);
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
&.is-active {
|
|
895
|
+
max-height: 1000px;
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.help {
|
|
900
|
+
a {
|
|
901
|
+
display: inline-block;
|
|
902
|
+
position: relative;
|
|
903
|
+
color: $wb-main-color;
|
|
904
|
+
@include simple_transition();
|
|
905
|
+
|
|
906
|
+
&:before {
|
|
907
|
+
content: '';
|
|
908
|
+
width: 0;
|
|
909
|
+
height: rem(1);
|
|
910
|
+
position: absolute;
|
|
911
|
+
bottom: -#{rem(4px)};
|
|
912
|
+
background-color: $wb-main-color-hover;
|
|
913
|
+
@include simple_transition();
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
&:hover {
|
|
917
|
+
color: $wb-main-color-hover;
|
|
918
|
+
|
|
919
|
+
&:before {
|
|
920
|
+
width: 100%;
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.icon-help {
|
|
927
|
+
position: relative;
|
|
928
|
+
.fa-info-circle {
|
|
929
|
+
top: rem(-5);
|
|
930
|
+
padding: 0.5rem 0.5rem 0 0.3rem;
|
|
931
|
+
span {
|
|
932
|
+
display: none;
|
|
933
|
+
font-weight: 300;
|
|
934
|
+
}
|
|
935
|
+
&:hover {
|
|
936
|
+
span {
|
|
937
|
+
display: block;
|
|
938
|
+
position: absolute;
|
|
939
|
+
background-color: $white;
|
|
940
|
+
color: $main-text;
|
|
941
|
+
left: 0;
|
|
942
|
+
top: rem(25);
|
|
943
|
+
border: 1px solid $wb-border-color;
|
|
944
|
+
padding: 0.25rem 0.5rem;
|
|
945
|
+
z-index: 100;
|
|
946
|
+
text-align: justify;
|
|
947
|
+
font-family: 'Work Sans', helvetica, serif;
|
|
948
|
+
font-weight: 300;
|
|
949
|
+
font-size: rem(13);
|
|
950
|
+
&:hover {
|
|
951
|
+
display: block;
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
input::-webkit-outer-spin-button,
|
|
960
|
+
input::-webkit-inner-spin-button {
|
|
961
|
+
-webkit-appearance: none;
|
|
962
|
+
margin: 0;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
/* Firefox */
|
|
966
|
+
input[type='number'] {
|
|
967
|
+
-moz-appearance: textfield;
|
|
968
|
+
}
|
|
969
969
|
@function rem($pxval) {
|
|
970
970
|
@if not unitless($pxval) {
|
|
971
971
|
$pxval: strip-unit($pxval);
|
|
@@ -1550,187 +1550,39 @@ input[type='number'] {
|
|
|
1550
1550
|
box-shadow: none;
|
|
1551
1551
|
border: none;
|
|
1552
1552
|
font-weight: 600;
|
|
1553
|
-
font-size: rem(16);
|
|
1554
|
-
}
|
|
1555
|
-
}
|
|
1556
|
-
}
|
|
1557
|
-
}
|
|
1558
|
-
}
|
|
1559
|
-
.wb-blocks {
|
|
1560
|
-
position: relative;
|
|
1561
|
-
z-index: 1;
|
|
1562
|
-
|
|
1563
|
-
span[class^='wb-dynamic-size'] {
|
|
1564
|
-
position: absolute;
|
|
1565
|
-
color: $wb-secondary-text-color;
|
|
1566
|
-
top: 1vw !important;
|
|
1567
|
-
font-size: rem(14);
|
|
1568
|
-
text-align: center;
|
|
1569
|
-
width: rem(200);
|
|
1570
|
-
left: 0;
|
|
1571
|
-
right: 0;
|
|
1572
|
-
margin: auto;
|
|
1573
|
-
}
|
|
1574
|
-
|
|
1575
|
-
.button.is-hidden-button.is-rounded {
|
|
1576
|
-
padding: rem(8) rem(8);
|
|
1577
|
-
border: rem(1) solid transparent;
|
|
1578
|
-
position: absolute;
|
|
1579
|
-
top: -#{rem(26)};
|
|
1580
|
-
right: -#{rem(55)};
|
|
1581
|
-
@include media('<=#{$block-width-mobile * 1.4}') {
|
|
1582
|
-
right: -#{rem(26)};
|
|
1583
|
-
}
|
|
1584
|
-
z-index: 11000;
|
|
1585
|
-
width: rem(36);
|
|
1586
|
-
@include simple_transition();
|
|
1587
|
-
|
|
1588
|
-
&:not(.is-danger) {
|
|
1589
|
-
color: lighten($wb-secondary-text-color, 20%);
|
|
1590
|
-
@include media('>=1419px', '<1515px') {
|
|
1591
|
-
right: -20px !important;
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
&:hover {
|
|
1595
|
-
background-color: lighten($wb-secondary-text-color, 20%);
|
|
1596
|
-
color: $wb-white;
|
|
1597
|
-
}
|
|
1598
|
-
}
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
|
-
&__container {
|
|
1602
|
-
padding-bottom: rem(30);
|
|
1603
|
-
display: block;
|
|
1604
|
-
height: 100%;
|
|
1605
|
-
width: 100%;
|
|
1606
|
-
box-sizing: border-box;
|
|
1607
|
-
|
|
1608
|
-
.wb-component__container {
|
|
1609
|
-
display: block;
|
|
1610
|
-
height: 100%;
|
|
1611
|
-
width: 100%;
|
|
1612
|
-
position: relative;
|
|
1613
|
-
}
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
&.cdk-drop-list-dragging .wb-blocks__container:not(.cdk-drag-placeholder) {
|
|
1617
|
-
transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
1618
|
-
|
|
1619
|
-
.wb-videos-simple,
|
|
1620
|
-
.wb-videos-txt,
|
|
1621
|
-
.wb-videos-txt-left,
|
|
1622
|
-
.wb-videos-txt-content {
|
|
1623
|
-
&__fakeframe {
|
|
1624
|
-
display: flex !important;
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
|
-
&__frame {
|
|
1628
|
-
display: none !important;
|
|
1629
|
-
}
|
|
1630
|
-
}
|
|
1631
|
-
}
|
|
1632
|
-
|
|
1633
|
-
&.cdk-drop-list-dragging {
|
|
1634
|
-
.wb-videos-simple,
|
|
1635
|
-
.wb-videos-txt,
|
|
1636
|
-
.wb-videos-txt-left,
|
|
1637
|
-
.wb-videos-txt-content {
|
|
1638
|
-
&__fakeframe {
|
|
1639
|
-
display: flex !important;
|
|
1640
|
-
}
|
|
1641
|
-
&__frame {
|
|
1642
|
-
display: none !important;
|
|
1643
|
-
}
|
|
1644
|
-
}
|
|
1645
|
-
|
|
1646
|
-
.wb-component__container {
|
|
1647
|
-
border: rem(2) solid $wb-secondary-color !important;
|
|
1648
|
-
}
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
&-empty {
|
|
1652
|
-
text-align: center;
|
|
1653
|
-
background-color: lighten($wb-border-color, 13%);
|
|
1654
|
-
padding: rem(80);
|
|
1655
|
-
margin-bottom: rem(30);
|
|
1656
|
-
|
|
1657
|
-
img {
|
|
1658
|
-
width: rem(75);
|
|
1659
|
-
margin: 0 auto;
|
|
1660
|
-
display: block;
|
|
1661
|
-
}
|
|
1662
|
-
|
|
1663
|
-
p {
|
|
1664
|
-
&:first-of-type {
|
|
1665
|
-
font-size: rem(16);
|
|
1666
|
-
font-weight: 500;
|
|
1667
|
-
color: $wb-main-text-color;
|
|
1668
|
-
margin: rem(20);
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
&:last-of-type {
|
|
1672
|
-
font-size: rem(14);
|
|
1673
|
-
font-weight: 400;
|
|
1674
|
-
color: $wb-secondary-text-color;
|
|
1553
|
+
font-size: rem(16);
|
|
1554
|
+
}
|
|
1675
1555
|
}
|
|
1676
1556
|
}
|
|
1677
1557
|
}
|
|
1678
1558
|
}
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
display: flex !important;
|
|
1689
|
-
}
|
|
1690
|
-
&__frame {
|
|
1691
|
-
display: none !important;
|
|
1692
|
-
}
|
|
1693
|
-
}
|
|
1694
|
-
}
|
|
1695
|
-
|
|
1696
|
-
.wb-blocks__container.cdk-drag-placeholder {
|
|
1697
|
-
opacity: 0.2;
|
|
1698
|
-
.wb-videos-simple,
|
|
1699
|
-
.wb-videos-txt,
|
|
1700
|
-
.wb-videos-txt-left,
|
|
1701
|
-
.wb-videos-txt-content {
|
|
1702
|
-
&__fakeframe {
|
|
1703
|
-
display: flex !important;
|
|
1704
|
-
}
|
|
1705
|
-
&__frame {
|
|
1706
|
-
display: none !important;
|
|
1707
|
-
}
|
|
1559
|
+
.wb-previews {
|
|
1560
|
+
&__iframe {
|
|
1561
|
+
opacity: 0;
|
|
1562
|
+
width: 100%;
|
|
1563
|
+
height: calc(100vh - #{rem(280)});
|
|
1564
|
+
min-height: calc(100vh - #{rem(280)});
|
|
1565
|
+
overflow-y: scroll;
|
|
1566
|
+
&.is-active {
|
|
1567
|
+
opacity: 1;
|
|
1708
1568
|
}
|
|
1709
|
-
|
|
1569
|
+
border: rem(1) dashed $wb-border-color;
|
|
1570
|
+
}
|
|
1710
1571
|
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1572
|
+
&__loader {
|
|
1573
|
+
display: none;
|
|
1574
|
+
height: calc(100vh - #{rem(280)});
|
|
1575
|
+
min-height: calc(100vh - #{rem(280)});
|
|
1714
1576
|
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
.wb-videos-txt-left,
|
|
1718
|
-
.wb-videos-txt-content {
|
|
1719
|
-
&__fakeframe {
|
|
1720
|
-
display: flex !important;
|
|
1721
|
-
}
|
|
1722
|
-
&__frame {
|
|
1723
|
-
display: none !important;
|
|
1724
|
-
}
|
|
1577
|
+
&.is-active {
|
|
1578
|
+
display: block;
|
|
1725
1579
|
}
|
|
1726
|
-
}
|
|
1580
|
+
}
|
|
1727
1581
|
|
|
1728
|
-
.wb-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
}
|
|
1733
|
-
}
|
|
1582
|
+
.wb-loader {
|
|
1583
|
+
margin: 0 auto 1.875rem auto;
|
|
1584
|
+
padding-top: rem(85);
|
|
1585
|
+
}
|
|
1734
1586
|
}
|
|
1735
1587
|
.wb-product-zoom {
|
|
1736
1588
|
//minimum search sized for product - no less needed
|
|
@@ -2660,182 +2512,182 @@ wb-loader {
|
|
|
2660
2512
|
}
|
|
2661
2513
|
}
|
|
2662
2514
|
}
|
|
2663
|
-
.wb-
|
|
2664
|
-
&__iframe {
|
|
2665
|
-
opacity: 0;
|
|
2666
|
-
width: 100%;
|
|
2667
|
-
height: calc(100vh - #{rem(280)});
|
|
2668
|
-
min-height: calc(100vh - #{rem(280)});
|
|
2669
|
-
overflow-y: scroll;
|
|
2670
|
-
&.is-active {
|
|
2671
|
-
opacity: 1;
|
|
2672
|
-
}
|
|
2673
|
-
border: rem(1) dashed $wb-border-color;
|
|
2674
|
-
}
|
|
2675
|
-
|
|
2676
|
-
&__loader {
|
|
2677
|
-
display: none;
|
|
2678
|
-
height: calc(100vh - #{rem(280)});
|
|
2679
|
-
min-height: calc(100vh - #{rem(280)});
|
|
2680
|
-
|
|
2681
|
-
&.is-active {
|
|
2682
|
-
display: block;
|
|
2683
|
-
}
|
|
2684
|
-
}
|
|
2685
|
-
|
|
2686
|
-
.wb-loader {
|
|
2687
|
-
margin: 0 auto 1.875rem auto;
|
|
2688
|
-
padding-top: rem(85);
|
|
2689
|
-
}
|
|
2690
|
-
}
|
|
2691
|
-
.wb-product-zoom-more {
|
|
2692
|
-
//minimum search sized for product - no less needed
|
|
2693
|
-
min-height: rem(380);
|
|
2694
|
-
|
|
2695
|
-
.ql-editor {
|
|
2696
|
-
padding: rem(5) 0;
|
|
2697
|
-
}
|
|
2698
|
-
|
|
2699
|
-
&__selected {
|
|
2700
|
-
padding: rem(30);
|
|
2515
|
+
.wb-blocks {
|
|
2701
2516
|
position: relative;
|
|
2702
|
-
z-index:
|
|
2703
|
-
|
|
2704
|
-
&__container-selector {
|
|
2705
|
-
position: absolute;
|
|
2706
|
-
text-align: center;
|
|
2707
|
-
z-index: 10;
|
|
2708
|
-
left: 0;
|
|
2709
|
-
right: 0;
|
|
2710
|
-
margin: auto;
|
|
2517
|
+
z-index: 1;
|
|
2711
2518
|
|
|
2712
|
-
|
|
2519
|
+
span[class^='wb-dynamic-size'] {
|
|
2520
|
+
position: absolute;
|
|
2521
|
+
color: $wb-secondary-text-color;
|
|
2522
|
+
top: 1vw !important;
|
|
2523
|
+
font-size: rem(14);
|
|
2524
|
+
text-align: center;
|
|
2525
|
+
width: rem(200);
|
|
2526
|
+
left: 0;
|
|
2527
|
+
right: 0;
|
|
2528
|
+
margin: auto;
|
|
2529
|
+
}
|
|
2713
2530
|
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2531
|
+
.button.is-hidden-button.is-rounded {
|
|
2532
|
+
padding: rem(8) rem(8);
|
|
2533
|
+
border: rem(1) solid transparent;
|
|
2534
|
+
position: absolute;
|
|
2535
|
+
top: -#{rem(26)};
|
|
2536
|
+
right: -#{rem(55)};
|
|
2537
|
+
@include media('<=#{$block-width-mobile * 1.4}') {
|
|
2538
|
+
right: -#{rem(26)};
|
|
2539
|
+
}
|
|
2540
|
+
z-index: 11000;
|
|
2541
|
+
width: rem(36);
|
|
2723
2542
|
@include simple_transition();
|
|
2724
2543
|
|
|
2725
|
-
&:
|
|
2726
|
-
|
|
2727
|
-
|
|
2544
|
+
&:not(.is-danger) {
|
|
2545
|
+
color: lighten($wb-secondary-text-color, 20%);
|
|
2546
|
+
@include media('>=1419px', '<1515px') {
|
|
2547
|
+
right: -20px !important;
|
|
2548
|
+
}
|
|
2728
2549
|
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2550
|
+
&:hover {
|
|
2551
|
+
background-color: lighten($wb-secondary-text-color, 20%);
|
|
2552
|
+
color: $wb-white;
|
|
2553
|
+
}
|
|
2733
2554
|
}
|
|
2734
|
-
}
|
|
2735
2555
|
}
|
|
2736
|
-
&__container-image {
|
|
2737
|
-
position: relative;
|
|
2738
2556
|
|
|
2739
|
-
|
|
2740
|
-
|
|
2557
|
+
&__container {
|
|
2558
|
+
padding-bottom: rem(30);
|
|
2559
|
+
display: block;
|
|
2560
|
+
height: 100%;
|
|
2741
2561
|
width: 100%;
|
|
2742
|
-
|
|
2743
|
-
z-index: 1;
|
|
2744
|
-
opacity: 1;
|
|
2745
|
-
left: 0;
|
|
2746
|
-
@include simple_transition();
|
|
2747
|
-
margin-right: rem(30);
|
|
2562
|
+
box-sizing: border-box;
|
|
2748
2563
|
|
|
2749
|
-
|
|
2750
|
-
|
|
2564
|
+
.wb-component__container {
|
|
2565
|
+
display: block;
|
|
2566
|
+
height: 100%;
|
|
2567
|
+
width: 100%;
|
|
2568
|
+
position: relative;
|
|
2751
2569
|
}
|
|
2752
|
-
}
|
|
2753
2570
|
}
|
|
2754
2571
|
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
> h3 {
|
|
2758
|
-
color: $wb-main-text-color;
|
|
2759
|
-
font-size: rem(30);
|
|
2760
|
-
font-weight: 600;
|
|
2761
|
-
line-height: 30px;
|
|
2762
|
-
margin-bottom: 25px;
|
|
2763
|
-
}
|
|
2764
|
-
|
|
2765
|
-
> p {
|
|
2766
|
-
margin: rem(10) 0 rem(30);
|
|
2767
|
-
font-weight: 600;
|
|
2572
|
+
&.cdk-drop-list-dragging .wb-blocks__container:not(.cdk-drag-placeholder) {
|
|
2573
|
+
transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
2768
2574
|
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
user-select: none;
|
|
2777
|
-
cursor: pointer;
|
|
2575
|
+
.wb-videos-simple,
|
|
2576
|
+
.wb-videos-txt,
|
|
2577
|
+
.wb-videos-txt-left,
|
|
2578
|
+
.wb-videos-txt-content {
|
|
2579
|
+
&__fakeframe {
|
|
2580
|
+
display: flex !important;
|
|
2581
|
+
}
|
|
2778
2582
|
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
content: '\f078';
|
|
2782
|
-
right: rem(20);
|
|
2783
|
-
top: 0;
|
|
2784
|
-
bottom: 0;
|
|
2785
|
-
font-family: 'Font Awesome 5 Pro';
|
|
2786
|
-
color: $wb-main-text-color;
|
|
2787
|
-
display: block;
|
|
2788
|
-
margin: auto;
|
|
2789
|
-
height: rem(20);
|
|
2583
|
+
&__frame {
|
|
2584
|
+
display: none !important;
|
|
2790
2585
|
}
|
|
2791
|
-
}
|
|
2792
2586
|
}
|
|
2587
|
+
}
|
|
2793
2588
|
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2589
|
+
&.cdk-drop-list-dragging {
|
|
2590
|
+
.wb-videos-simple,
|
|
2591
|
+
.wb-videos-txt,
|
|
2592
|
+
.wb-videos-txt-left,
|
|
2593
|
+
.wb-videos-txt-content {
|
|
2594
|
+
&__fakeframe {
|
|
2595
|
+
display: flex !important;
|
|
2596
|
+
}
|
|
2597
|
+
&__frame {
|
|
2598
|
+
display: none !important;
|
|
2599
|
+
}
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.wb-component__container {
|
|
2603
|
+
border: rem(2) solid $wb-secondary-color !important;
|
|
2804
2604
|
}
|
|
2805
|
-
}
|
|
2806
2605
|
}
|
|
2807
|
-
}
|
|
2808
2606
|
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
z-index: 35;
|
|
2815
|
-
pointer-events: none;
|
|
2816
|
-
}
|
|
2607
|
+
&-empty {
|
|
2608
|
+
text-align: center;
|
|
2609
|
+
background-color: lighten($wb-border-color, 13%);
|
|
2610
|
+
padding: rem(80);
|
|
2611
|
+
margin-bottom: rem(30);
|
|
2817
2612
|
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
align-content: center;
|
|
2824
|
-
align-items: center;
|
|
2825
|
-
width: 100%;
|
|
2613
|
+
img {
|
|
2614
|
+
width: rem(75);
|
|
2615
|
+
margin: 0 auto;
|
|
2616
|
+
display: block;
|
|
2617
|
+
}
|
|
2826
2618
|
|
|
2827
|
-
|
|
2828
|
-
|
|
2619
|
+
p {
|
|
2620
|
+
&:first-of-type {
|
|
2621
|
+
font-size: rem(16);
|
|
2622
|
+
font-weight: 500;
|
|
2623
|
+
color: $wb-main-text-color;
|
|
2624
|
+
margin: rem(20);
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
&:last-of-type {
|
|
2628
|
+
font-size: rem(14);
|
|
2629
|
+
font-weight: 400;
|
|
2630
|
+
color: $wb-secondary-text-color;
|
|
2631
|
+
}
|
|
2632
|
+
}
|
|
2829
2633
|
}
|
|
2830
|
-
}
|
|
2831
2634
|
}
|
|
2832
2635
|
|
|
2636
|
+
.wb-blocks__container.cdk-drag-animating {
|
|
2637
|
+
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
2833
2638
|
|
|
2639
|
+
.wb-videos-simple,
|
|
2640
|
+
.wb-videos-txt,
|
|
2641
|
+
.wb-videos-txt-left,
|
|
2642
|
+
.wb-videos-txt-content {
|
|
2643
|
+
&__fakeframe {
|
|
2644
|
+
display: flex !important;
|
|
2645
|
+
}
|
|
2646
|
+
&__frame {
|
|
2647
|
+
display: none !important;
|
|
2648
|
+
}
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2834
2651
|
|
|
2652
|
+
.wb-blocks__container.cdk-drag-placeholder {
|
|
2653
|
+
opacity: 0.2;
|
|
2654
|
+
.wb-videos-simple,
|
|
2655
|
+
.wb-videos-txt,
|
|
2656
|
+
.wb-videos-txt-left,
|
|
2657
|
+
.wb-videos-txt-content {
|
|
2658
|
+
&__fakeframe {
|
|
2659
|
+
display: flex !important;
|
|
2660
|
+
}
|
|
2661
|
+
&__frame {
|
|
2662
|
+
display: none !important;
|
|
2663
|
+
}
|
|
2664
|
+
}
|
|
2665
|
+
}
|
|
2835
2666
|
|
|
2667
|
+
.wb-blocks__container.cdk-drag-preview {
|
|
2668
|
+
box-shadow: 0 rem(30) rem(30) rgba(0, 0, 0, 0.2);
|
|
2669
|
+
cursor: move;
|
|
2836
2670
|
|
|
2671
|
+
.wb-videos-simple,
|
|
2672
|
+
.wb-videos-txt,
|
|
2673
|
+
.wb-videos-txt-left,
|
|
2674
|
+
.wb-videos-txt-content {
|
|
2675
|
+
&__fakeframe {
|
|
2676
|
+
display: flex !important;
|
|
2677
|
+
}
|
|
2678
|
+
&__frame {
|
|
2679
|
+
display: none !important;
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2837
2683
|
|
|
2838
|
-
|
|
2684
|
+
.wb-component {
|
|
2685
|
+
&.border-grey {
|
|
2686
|
+
.wb-component__container {
|
|
2687
|
+
border-color: darken(#95a5a6, 15%);
|
|
2688
|
+
}
|
|
2689
|
+
}
|
|
2690
|
+
}
|
|
2839
2691
|
.wb-product-zoom-selected {
|
|
2840
2692
|
//minimum search sized for product - no less needed
|
|
2841
2693
|
min-height: rem(380);
|
|
@@ -2996,6 +2848,154 @@ wb-loader {
|
|
|
2996
2848
|
}
|
|
2997
2849
|
}
|
|
2998
2850
|
}
|
|
2851
|
+
|
|
2852
|
+
|
|
2853
|
+
|
|
2854
|
+
|
|
2855
|
+
|
|
2856
|
+
|
|
2857
|
+
|
|
2858
|
+
.wb-product-zoom-more {
|
|
2859
|
+
//minimum search sized for product - no less needed
|
|
2860
|
+
min-height: rem(380);
|
|
2861
|
+
|
|
2862
|
+
.ql-editor {
|
|
2863
|
+
padding: rem(5) 0;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
&__selected {
|
|
2867
|
+
padding: rem(30);
|
|
2868
|
+
position: relative;
|
|
2869
|
+
z-index: 34;
|
|
2870
|
+
|
|
2871
|
+
&__container-selector {
|
|
2872
|
+
position: absolute;
|
|
2873
|
+
text-align: center;
|
|
2874
|
+
z-index: 10;
|
|
2875
|
+
left: 0;
|
|
2876
|
+
right: 0;
|
|
2877
|
+
margin: auto;
|
|
2878
|
+
|
|
2879
|
+
bottom: 50px;
|
|
2880
|
+
|
|
2881
|
+
span {
|
|
2882
|
+
width: rem(15);
|
|
2883
|
+
height: rem(15);
|
|
2884
|
+
background-color: $wb-border-color;
|
|
2885
|
+
opacity: 0.8;
|
|
2886
|
+
display: inline-block;
|
|
2887
|
+
border-radius: 50%;
|
|
2888
|
+
cursor: pointer;
|
|
2889
|
+
margin-right: rem(7);
|
|
2890
|
+
@include simple_transition();
|
|
2891
|
+
|
|
2892
|
+
&:last-child {
|
|
2893
|
+
margin-right: 0;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
&.is-active,
|
|
2897
|
+
&:hover {
|
|
2898
|
+
opacity: 0.8;
|
|
2899
|
+
background-color: $wb-button-color;
|
|
2900
|
+
}
|
|
2901
|
+
}
|
|
2902
|
+
}
|
|
2903
|
+
&__container-image {
|
|
2904
|
+
position: relative;
|
|
2905
|
+
|
|
2906
|
+
img {
|
|
2907
|
+
margin-bottom: rem(30);
|
|
2908
|
+
width: 100%;
|
|
2909
|
+
position: relative;
|
|
2910
|
+
z-index: 1;
|
|
2911
|
+
opacity: 1;
|
|
2912
|
+
left: 0;
|
|
2913
|
+
@include simple_transition();
|
|
2914
|
+
margin-right: rem(30);
|
|
2915
|
+
|
|
2916
|
+
&:last-child {
|
|
2917
|
+
margin-right: rem(0);
|
|
2918
|
+
}
|
|
2919
|
+
}
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
&__container-other {
|
|
2923
|
+
.column {
|
|
2924
|
+
> h3 {
|
|
2925
|
+
color: $wb-main-text-color;
|
|
2926
|
+
font-size: rem(30);
|
|
2927
|
+
font-weight: 600;
|
|
2928
|
+
line-height: 30px;
|
|
2929
|
+
margin-bottom: 25px;
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
> p {
|
|
2933
|
+
margin: rem(10) 0 rem(30);
|
|
2934
|
+
font-weight: 600;
|
|
2935
|
+
|
|
2936
|
+
&.is-variant {
|
|
2937
|
+
margin: 0 0 rem(30);
|
|
2938
|
+
padding: rem(20) rem(20);
|
|
2939
|
+
font-weight: 400;
|
|
2940
|
+
background-color: lighten($wb-border-color, 10%);
|
|
2941
|
+
border-radius: rem(3);
|
|
2942
|
+
position: relative;
|
|
2943
|
+
user-select: none;
|
|
2944
|
+
cursor: pointer;
|
|
2945
|
+
|
|
2946
|
+
&:before {
|
|
2947
|
+
position: absolute;
|
|
2948
|
+
content: '\f078';
|
|
2949
|
+
right: rem(20);
|
|
2950
|
+
top: 0;
|
|
2951
|
+
bottom: 0;
|
|
2952
|
+
font-family: 'Font Awesome 5 Pro';
|
|
2953
|
+
color: $wb-main-text-color;
|
|
2954
|
+
display: block;
|
|
2955
|
+
margin: auto;
|
|
2956
|
+
height: rem(20);
|
|
2957
|
+
}
|
|
2958
|
+
}
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2961
|
+
> a {
|
|
2962
|
+
text-transform: uppercase;
|
|
2963
|
+
color: $wb-white;
|
|
2964
|
+
font-weight: 600;
|
|
2965
|
+
padding: rem(15) rem(30);
|
|
2966
|
+
background-color: $wb-button-color;
|
|
2967
|
+
border-radius: rem(3);
|
|
2968
|
+
cursor: pointer;
|
|
2969
|
+
display: inline-block;
|
|
2970
|
+
float: right;
|
|
2971
|
+
}
|
|
2972
|
+
}
|
|
2973
|
+
}
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
&__product-config {
|
|
2977
|
+
width: 100%;
|
|
2978
|
+
overflow: hidden;
|
|
2979
|
+
height: 100%;
|
|
2980
|
+
position: absolute;
|
|
2981
|
+
z-index: 35;
|
|
2982
|
+
pointer-events: none;
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
&__noproduct {
|
|
2986
|
+
min-height: rem(380);
|
|
2987
|
+
height: 100%;
|
|
2988
|
+
padding: 0 rem(50);
|
|
2989
|
+
display: flex;
|
|
2990
|
+
align-content: center;
|
|
2991
|
+
align-items: center;
|
|
2992
|
+
width: 100%;
|
|
2993
|
+
|
|
2994
|
+
wb-structure-search-product {
|
|
2995
|
+
width: 100%;
|
|
2996
|
+
}
|
|
2997
|
+
}
|
|
2998
|
+
}
|
|
2999
2999
|
.wb-component {
|
|
3000
3000
|
&__container {
|
|
3001
3001
|
background-color: $wb-white;
|
|
@@ -18498,6 +18498,7 @@ $color-bd: #dddddd;
|
|
|
18498
18498
|
pointer-events: none;
|
|
18499
18499
|
|
|
18500
18500
|
> div {
|
|
18501
|
+
width: 100%;
|
|
18501
18502
|
pointer-events: all;
|
|
18502
18503
|
text-align: center;
|
|
18503
18504
|
background-color: $wb-white;
|
|
@@ -22593,6 +22594,7 @@ $color-size-choose: #6c6c6c;
|
|
|
22593
22594
|
pointer-events: none;
|
|
22594
22595
|
|
|
22595
22596
|
> div {
|
|
22597
|
+
width: 100%;
|
|
22596
22598
|
pointer-events: all;
|
|
22597
22599
|
text-align: center;
|
|
22598
22600
|
background-color: $wb-white;
|