@wizishop/angular-components 0.0.40 → 0.0.44
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/angular-components.scss +271 -214
- package/bundles/wizishop-angular-components.umd.js +11 -5
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/alert-popup/alert-popup.component.js +2 -2
- package/esm2015/lib/components/alert-popup/alert-popup.service.js +1 -1
- package/esm2015/lib/components/block/block.component.js +5 -3
- package/esm2015/lib/components/button/button.component.js +4 -2
- package/esm2015/lib/components/inputs/input/input.component.js +4 -2
- package/fesm2015/wizishop-angular-components.js +11 -5
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/alert-popup/alert-popup.service.d.ts +1 -0
- package/lib/components/block/block.component.d.ts +1 -0
- package/lib/components/button/button.component.d.ts +1 -0
- package/lib/components/inputs/input/input.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.44.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.40.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -582,6 +582,33 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
582
582
|
border: 1px solid $wac-main-text;
|
|
583
583
|
color: $wac-main-text;
|
|
584
584
|
}
|
|
585
|
+
|
|
586
|
+
&.small {
|
|
587
|
+
padding: 10px;
|
|
588
|
+
border-radius: 3px;
|
|
589
|
+
bottom: -100px;
|
|
590
|
+
right: 0;
|
|
591
|
+
top: auto;
|
|
592
|
+
left: auto;
|
|
593
|
+
width: auto;
|
|
594
|
+
min-width: unset;
|
|
595
|
+
margin: 0 0 100px;
|
|
596
|
+
background-color: $wac-tag-success;
|
|
597
|
+
.alert--message {
|
|
598
|
+
display: flex;
|
|
599
|
+
align-items: center;
|
|
600
|
+
justify-content: flex-start;
|
|
601
|
+
}
|
|
602
|
+
.wac-alert-popup {
|
|
603
|
+
&__text {
|
|
604
|
+
white-space: nowrap;
|
|
605
|
+
font-weight: 600;
|
|
606
|
+
}
|
|
607
|
+
&__close {
|
|
608
|
+
display: none;
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
}
|
|
585
612
|
}
|
|
586
613
|
|
|
587
614
|
&__title {
|
|
@@ -696,6 +723,14 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
696
723
|
height: auto;
|
|
697
724
|
}
|
|
698
725
|
|
|
726
|
+
&.stretch {
|
|
727
|
+
display: flex;
|
|
728
|
+
flex-wrap: wrap;
|
|
729
|
+
.wac-block__content {
|
|
730
|
+
display: flex;
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
|
|
699
734
|
/*************************/
|
|
700
735
|
/* Titre INTERNE au bloc */
|
|
701
736
|
/*************************/
|
|
@@ -1606,174 +1641,88 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
1606
1641
|
}
|
|
1607
1642
|
}
|
|
1608
1643
|
}
|
|
1609
|
-
.wac-
|
|
1644
|
+
.wac-dropdown {
|
|
1610
1645
|
display: inline-block;
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
min-width: 12px;
|
|
1614
|
-
min-height: 1.4em;
|
|
1615
|
-
|
|
1616
|
-
input {
|
|
1617
|
-
font-size: inherit;
|
|
1618
|
-
transition: width 50ms;
|
|
1619
|
-
position: absolute;
|
|
1620
|
-
top: 0;
|
|
1621
|
-
left: -5px;
|
|
1622
|
-
width: calc(100% + 16px) !important;
|
|
1623
|
-
height: calc(100% + 14px) !important;
|
|
1624
|
-
padding: 5px;
|
|
1625
|
-
z-index: 1;
|
|
1626
|
-
margin: 0;
|
|
1627
|
-
outline: none !important;
|
|
1628
|
-
border: 1px solid $wac-edit-in-place-border;
|
|
1629
|
-
background: inherit;
|
|
1630
|
-
transform: translateY(-17%);
|
|
1631
|
-
background-color: $wac-edit-in-place-background;
|
|
1632
|
-
|
|
1633
|
-
&.nwb-editable {
|
|
1634
|
-
text-decoration: none;
|
|
1635
|
-
color: inherit;
|
|
1636
|
-
border: none;
|
|
1637
|
-
cursor: pointer;
|
|
1638
|
-
height: 26px;
|
|
1639
|
-
}
|
|
1640
|
-
|
|
1641
|
-
&.nwb-editing {
|
|
1642
|
-
color: $wac-edit-in-place-border;
|
|
1643
|
-
}
|
|
1644
|
-
}
|
|
1646
|
+
width: 40px;
|
|
1647
|
+
height: 40px;
|
|
1645
1648
|
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
+
&__wrapper {
|
|
1650
|
+
@include flexbox();
|
|
1651
|
+
@include justify-content(center);
|
|
1652
|
+
@include align-items(center);
|
|
1653
|
+
width: 100%;
|
|
1654
|
+
height: 100%;
|
|
1655
|
+
position: relative;
|
|
1649
1656
|
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
width: 10px;
|
|
1657
|
+
&__icon {
|
|
1658
|
+
font-size: 30px;
|
|
1659
|
+
line-height: 18px;
|
|
1660
|
+
color: $wac-border-form;
|
|
1661
|
+
transition: color 0.3s ease, transform 0.3s ease;
|
|
1656
1662
|
}
|
|
1657
|
-
}
|
|
1658
1663
|
|
|
1659
|
-
|
|
1660
|
-
&.nwb-is-loading {
|
|
1661
|
-
z-index: 2;
|
|
1662
|
-
opacity: 1;
|
|
1664
|
+
&__sublevel {
|
|
1663
1665
|
position: absolute;
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='lds-ellipsis' style='background: none;'%3E%3C!--circle(cx='16',cy='50',r='10')--%3E%3Ccircle cx='84' cy='50' r='0' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='10;0;0;0;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='84;84;84;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='28.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3C/circle%3E%3Ccircle cx='16' cy='50' r='3.71582' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3C/circle%3E%3Ccircle cx='84' cy='50' r='6.28418' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='62.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;0;10;10;10' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;16;50;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3C/svg%3E");
|
|
1673
|
-
background-repeat: no-repeat;
|
|
1674
|
-
background-position: center center;
|
|
1675
|
-
}
|
|
1676
|
-
}
|
|
1677
|
-
span {
|
|
1678
|
-
color: inherit;
|
|
1679
|
-
font-weight: 500;
|
|
1680
|
-
&:not(.nwb-loader) {
|
|
1681
|
-
display: inline-block;
|
|
1682
|
-
min-width: 12px;
|
|
1683
|
-
}
|
|
1684
|
-
&.nwb-editing {
|
|
1666
|
+
width: 160px;
|
|
1667
|
+
top: 100%;
|
|
1668
|
+
right: 0;
|
|
1669
|
+
z-index: -1;
|
|
1670
|
+
opacity: 0;
|
|
1671
|
+
background-color: $wac-white;
|
|
1672
|
+
border-radius: rem(3);
|
|
1673
|
+
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
1685
1674
|
visibility: hidden;
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
&.nwb-is-loading {
|
|
1689
|
-
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
1690
|
-
color: rgba(0, 0, 0, 0.4);
|
|
1691
|
-
opacity: 0.25;
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
|
-
&.nwbSelect {
|
|
1695
|
-
cursor: pointer;
|
|
1696
|
-
}
|
|
1697
|
-
}
|
|
1698
|
-
}
|
|
1675
|
+
transition: opacity 0.15s ease, z-index 0.15s ease, visibility 0s linear .16s;
|
|
1699
1676
|
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
border-bottom: dashed 1px $wac-primary;
|
|
1704
|
-
width: 100%;
|
|
1705
|
-
bottom: 0;
|
|
1706
|
-
left: 0;
|
|
1707
|
-
}
|
|
1677
|
+
&__container {
|
|
1678
|
+
padding: 10px 10px;
|
|
1679
|
+
border: 1px solid $wac-border-color;
|
|
1708
1680
|
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1681
|
+
&__item {
|
|
1682
|
+
padding: 5.7px 10px;
|
|
1683
|
+
font-size: 14px;
|
|
1684
|
+
line-height: 24px;
|
|
1685
|
+
color: $wac-second-color;
|
|
1686
|
+
cursor: pointer;
|
|
1687
|
+
transition: background-color 0.3s ease, color 0.3s ease;
|
|
1688
|
+
display: flex;
|
|
1689
|
+
justify-content: flex-start;
|
|
1690
|
+
align-items: center;
|
|
1691
|
+
align-content: center;
|
|
1719
1692
|
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
1729
|
-
display: inline-block;
|
|
1730
|
-
}
|
|
1693
|
+
i {
|
|
1694
|
+
min-width: 15px;
|
|
1695
|
+
margin-right: 5px;
|
|
1696
|
+
text-align: center;
|
|
1697
|
+
}
|
|
1698
|
+
span {
|
|
1699
|
+
white-space: nowrap;
|
|
1700
|
+
}
|
|
1731
1701
|
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
border-bottom: 6px solid $wac-white;
|
|
1740
|
-
display: inline-block;
|
|
1702
|
+
&:hover {
|
|
1703
|
+
background-color: $wac-gray-background;
|
|
1704
|
+
transition: background-color 0.3s ease, color 0.3s ease;
|
|
1705
|
+
color: $wac-input-active-color;
|
|
1706
|
+
}
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1741
1709
|
}
|
|
1742
1710
|
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
transition: all 0.3s ease-in-out;
|
|
1749
|
-
z-index: 3;
|
|
1750
|
-
font-size: rem(12);
|
|
1751
|
-
text-align: left;
|
|
1752
|
-
border-radius: 0;
|
|
1753
|
-
|
|
1754
|
-
&:hover {
|
|
1755
|
-
background-color: darken($wac-white, 10%);
|
|
1756
|
-
color: $wac-main-text;
|
|
1757
|
-
transition: all 0.3s ease-in-out;
|
|
1711
|
+
&:hover {
|
|
1712
|
+
.wac-dropdown__wrapper__icon {
|
|
1713
|
+
color: $wac-second-color;
|
|
1714
|
+
transform: rotate(90deg);
|
|
1715
|
+
transition: color 0.3s ease, transform 0.3s ease;
|
|
1758
1716
|
}
|
|
1759
1717
|
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
transition:
|
|
1718
|
+
.wac-dropdown__wrapper__sublevel {
|
|
1719
|
+
visibility: visible;
|
|
1720
|
+
opacity: 1;
|
|
1721
|
+
z-index: 2;
|
|
1722
|
+
transition: visibility 0s ease 0s, opacity 0.3s ease .1s;
|
|
1765
1723
|
}
|
|
1766
1724
|
}
|
|
1767
1725
|
}
|
|
1768
|
-
|
|
1769
|
-
&__background {
|
|
1770
|
-
position: fixed;
|
|
1771
|
-
top: 0;
|
|
1772
|
-
left: 0;
|
|
1773
|
-
width: 100vw;
|
|
1774
|
-
height: 100vh;
|
|
1775
|
-
z-index: 2;
|
|
1776
|
-
}
|
|
1777
1726
|
}
|
|
1778
1727
|
.wac-tab {
|
|
1779
1728
|
&__wrapper {
|
|
@@ -3035,6 +2984,10 @@ span.wac-tooltip {
|
|
|
3035
2984
|
margin: 0 auto;
|
|
3036
2985
|
}
|
|
3037
2986
|
|
|
2987
|
+
&.white-space-no-wrap {
|
|
2988
|
+
white-space: nowrap;
|
|
2989
|
+
}
|
|
2990
|
+
|
|
3038
2991
|
&.small {
|
|
3039
2992
|
padding: rem(4) rem(15);
|
|
3040
2993
|
}
|
|
@@ -3541,88 +3494,174 @@ span.wac-tooltip {
|
|
|
3541
3494
|
}
|
|
3542
3495
|
}
|
|
3543
3496
|
}
|
|
3544
|
-
.wac-
|
|
3497
|
+
.wac-edit-in-place.nwb-wrapper {
|
|
3545
3498
|
display: inline-block;
|
|
3546
|
-
|
|
3547
|
-
|
|
3499
|
+
position: relative;
|
|
3500
|
+
width: auto;
|
|
3501
|
+
min-width: 12px;
|
|
3502
|
+
min-height: 1.4em;
|
|
3548
3503
|
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3504
|
+
input {
|
|
3505
|
+
font-size: inherit;
|
|
3506
|
+
transition: width 50ms;
|
|
3507
|
+
position: absolute;
|
|
3508
|
+
top: 0;
|
|
3509
|
+
left: -5px;
|
|
3510
|
+
width: calc(100% + 16px) !important;
|
|
3511
|
+
height: calc(100% + 14px) !important;
|
|
3512
|
+
padding: 5px;
|
|
3513
|
+
z-index: 1;
|
|
3514
|
+
margin: 0;
|
|
3515
|
+
outline: none !important;
|
|
3516
|
+
border: 1px solid $wac-edit-in-place-border;
|
|
3517
|
+
background: inherit;
|
|
3518
|
+
transform: translateY(-17%);
|
|
3519
|
+
background-color: $wac-edit-in-place-background;
|
|
3556
3520
|
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3521
|
+
&.nwb-editable {
|
|
3522
|
+
text-decoration: none;
|
|
3523
|
+
color: inherit;
|
|
3524
|
+
border: none;
|
|
3525
|
+
cursor: pointer;
|
|
3526
|
+
height: 26px;
|
|
3562
3527
|
}
|
|
3563
3528
|
|
|
3564
|
-
|
|
3529
|
+
&.nwb-editing {
|
|
3530
|
+
color: $wac-edit-in-place-border;
|
|
3531
|
+
}
|
|
3532
|
+
}
|
|
3533
|
+
|
|
3534
|
+
div.select {
|
|
3535
|
+
position: absolute;
|
|
3536
|
+
left: 0;
|
|
3537
|
+
|
|
3538
|
+
&:before,
|
|
3539
|
+
&:after {
|
|
3540
|
+
display: block;
|
|
3565
3541
|
position: absolute;
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3542
|
+
height: 10px;
|
|
3543
|
+
width: 10px;
|
|
3544
|
+
}
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
span.nwb-loader {
|
|
3548
|
+
&.nwb-is-loading {
|
|
3549
|
+
z-index: 2;
|
|
3550
|
+
opacity: 1;
|
|
3551
|
+
position: absolute;
|
|
3552
|
+
top: -7px;
|
|
3553
|
+
left: -7px;
|
|
3554
|
+
width: calc(100% + 16px) !important;
|
|
3555
|
+
height: calc(100% + 14px) !important;
|
|
3556
|
+
min-width: 12px;
|
|
3557
|
+
min-height: 1em;
|
|
3558
|
+
margin: 0;
|
|
3559
|
+
background-size: auto 70%;
|
|
3560
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='lds-ellipsis' style='background: none;'%3E%3C!--circle(cx='16',cy='50',r='10')--%3E%3Ccircle cx='84' cy='50' r='0' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='10;0;0;0;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='84;84;84;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='28.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-1s'/%3E%3C/circle%3E%3Ccircle cx='16' cy='50' r='3.71582' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='-0.5s'/%3E%3C/circle%3E%3Ccircle cx='84' cy='50' r='6.28418' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;10;10;10;0' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;50;84;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3Ccircle cx='62.6338' cy='50' r='10' fill='%236c6c6c'%3E%3Canimate attributeName='r' values='0;0;10;10;10' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3Canimate attributeName='cx' values='16;16;16;50;84' keyTimes='0;0.25;0.5;0.75;1' keySplines='0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1;0 0.5 0.5 1' calcMode='spline' dur='2s' repeatCount='indefinite' begin='0s'/%3E%3C/circle%3E%3C/svg%3E");
|
|
3561
|
+
background-repeat: no-repeat;
|
|
3562
|
+
background-position: center center;
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3565
|
+
span {
|
|
3566
|
+
color: inherit;
|
|
3567
|
+
font-weight: 500;
|
|
3568
|
+
&:not(.nwb-loader) {
|
|
3569
|
+
display: inline-block;
|
|
3570
|
+
min-width: 12px;
|
|
3571
|
+
}
|
|
3572
|
+
&.nwb-editing {
|
|
3574
3573
|
visibility: hidden;
|
|
3575
|
-
|
|
3574
|
+
}
|
|
3576
3575
|
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3576
|
+
&.nwb-is-loading {
|
|
3577
|
+
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
3578
|
+
color: rgba(0, 0, 0, 0.4);
|
|
3579
|
+
opacity: 0.25;
|
|
3580
|
+
}
|
|
3580
3581
|
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
cursor: pointer;
|
|
3587
|
-
transition: background-color 0.3s ease, color 0.3s ease;
|
|
3588
|
-
display: flex;
|
|
3589
|
-
justify-content: flex-start;
|
|
3590
|
-
align-items: center;
|
|
3591
|
-
align-content: center;
|
|
3582
|
+
&.nwbSelect {
|
|
3583
|
+
cursor: pointer;
|
|
3584
|
+
}
|
|
3585
|
+
}
|
|
3586
|
+
}
|
|
3592
3587
|
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3588
|
+
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
3589
|
+
position: absolute;
|
|
3590
|
+
content: '';
|
|
3591
|
+
border-bottom: dashed 1px $wac-primary;
|
|
3592
|
+
width: 100%;
|
|
3593
|
+
bottom: 0;
|
|
3594
|
+
left: 0;
|
|
3595
|
+
}
|
|
3601
3596
|
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3597
|
+
.wac-edit-in-place.nwbSelect {
|
|
3598
|
+
&__container {
|
|
3599
|
+
display: flex;
|
|
3600
|
+
flex-direction: column;
|
|
3601
|
+
position: absolute;
|
|
3602
|
+
white-space: nowrap;
|
|
3603
|
+
border: solid 1px rgba(0, 0, 0, 0.2);
|
|
3604
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
3605
|
+
border-radius: 3px;
|
|
3606
|
+
top: calc(100% + 7px);
|
|
3607
|
+
|
|
3608
|
+
&::before {
|
|
3609
|
+
position: absolute;
|
|
3610
|
+
top: -7px;
|
|
3611
|
+
left: 9px;
|
|
3612
|
+
content: '';
|
|
3613
|
+
border-left: 7px solid transparent;
|
|
3614
|
+
border-right: 7px solid transparent;
|
|
3615
|
+
border-bottom: 7px solid $wac-edit-in-place-before-border-bottom;
|
|
3616
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
3617
|
+
display: inline-block;
|
|
3609
3618
|
}
|
|
3610
3619
|
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3620
|
+
&::after {
|
|
3621
|
+
position: absolute;
|
|
3622
|
+
top: -6px;
|
|
3623
|
+
left: 10px;
|
|
3624
|
+
content: '';
|
|
3625
|
+
border-left: 6px solid transparent;
|
|
3626
|
+
border-right: 6px solid transparent;
|
|
3627
|
+
border-bottom: 6px solid $wac-white;
|
|
3628
|
+
display: inline-block;
|
|
3629
|
+
}
|
|
3630
|
+
|
|
3631
|
+
&__item {
|
|
3632
|
+
border: none;
|
|
3633
|
+
padding: 8px 10px;
|
|
3634
|
+
background-color: $wac-white;
|
|
3635
|
+
cursor: pointer;
|
|
3636
|
+
transition: all 0.3s ease-in-out;
|
|
3637
|
+
z-index: 3;
|
|
3638
|
+
font-size: rem(12);
|
|
3639
|
+
text-align: left;
|
|
3640
|
+
border-radius: 0;
|
|
3641
|
+
|
|
3642
|
+
&:hover {
|
|
3643
|
+
background-color: darken($wac-white, 10%);
|
|
3644
|
+
color: $wac-main-text;
|
|
3645
|
+
transition: all 0.3s ease-in-out;
|
|
3616
3646
|
}
|
|
3617
3647
|
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
transition:
|
|
3648
|
+
&--selected,
|
|
3649
|
+
&--selected:hover {
|
|
3650
|
+
background-color: $wac-wizishop-blue;
|
|
3651
|
+
color: $wac-white;
|
|
3652
|
+
transition: all 0.3s ease-in-out;
|
|
3623
3653
|
}
|
|
3624
3654
|
}
|
|
3625
3655
|
}
|
|
3656
|
+
|
|
3657
|
+
&__background {
|
|
3658
|
+
position: fixed;
|
|
3659
|
+
top: 0;
|
|
3660
|
+
left: 0;
|
|
3661
|
+
width: 100vw;
|
|
3662
|
+
height: 100vh;
|
|
3663
|
+
z-index: 2;
|
|
3664
|
+
}
|
|
3626
3665
|
}
|
|
3627
3666
|
h1.wac-h1 {
|
|
3628
3667
|
font-size: rem(30);
|
|
@@ -4961,6 +5000,24 @@ div.wac-field-input-search {
|
|
|
4961
5000
|
}
|
|
4962
5001
|
}
|
|
4963
5002
|
|
|
5003
|
+
&.is-medium {
|
|
5004
|
+
.control {
|
|
5005
|
+
.input,
|
|
5006
|
+
.input:not([disabled]):focus,
|
|
5007
|
+
.input:not([disabled]).is-focused,
|
|
5008
|
+
.input:not([disabled]):active,
|
|
5009
|
+
.input:not([disabled]).is-active {
|
|
5010
|
+
min-height: rem(50);
|
|
5011
|
+
padding-left: rem(45);
|
|
5012
|
+
}
|
|
5013
|
+
.icon {
|
|
5014
|
+
top: rem(4);
|
|
5015
|
+
right: rem(19);
|
|
5016
|
+
font-size: rem(20);
|
|
5017
|
+
}
|
|
5018
|
+
}
|
|
5019
|
+
}
|
|
5020
|
+
|
|
4964
5021
|
&.has-no-block {
|
|
4965
5022
|
.input,
|
|
4966
5023
|
.input:not([disabled]):focus,
|