@wizishop/angular-components 0.0.61 → 0.0.65

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.
@@ -118,76 +118,130 @@ $wac-color-success-popup-alert: #6DCC95!default;
118
118
  width: rem(36);
119
119
  height: rem(36);
120
120
  }
121
- .wac-progressBarContent {
122
- position: relative;
123
- width: 100%;
124
- display: block;
125
- .progressBar {
126
- position: relative;
127
- width: 88%;
128
- margin-bottom: 1rem;
129
- progress {
130
- &.progress {
131
- margin-bottom: 0;
132
- height: rem(2);
133
- &::-webkit-progress-value {
134
- transition: width 0.5s ease;
121
+ .wac-radio {
122
+ .is-checkradio[type='radio'] {
123
+ outline: 0 !important;
124
+ & + label {
125
+ font-size: rem(14);
126
+ line-height: rem(24);
127
+ color: $wac-input-radio-color-label;
128
+ padding-left: 30px;
129
+ padding-right: 5px;
130
+ margin-right: 0;
131
+ outline: 0 !important;
132
+ &:before {
133
+ width: 16px;
134
+ height: 16px;
135
+ border: 1px solid $wac-border-form;
136
+ border-radius: 23px;
137
+ top: 3px;
138
+ }
139
+ &:after {
140
+ width: 20px;
141
+ height: 20px;
142
+ background: $wac-input-active-color;
143
+ top: 1px;
144
+ left: -2px;
145
+ }
146
+ &:before,
147
+ &:after {
148
+ outline: 0 !important;
149
+ }
150
+ &:hover,
151
+ &:focus {
152
+ &:before {
153
+ border-color: $wac-input-active-color !important;
135
154
  }
136
155
  }
137
156
  }
138
- span {
139
- position: absolute;
140
- top: -4px;
141
- height: 11px;
142
- width: 11px;
143
- background-color: $wac-border-color;
144
- border-radius: 50%;
145
- }
146
- .is-danger {
147
- background-color: $wac-primary-button;
148
- &::-webkit-progress-value {
149
- background-color: $wac-primary-button;
157
+ &:hover {
158
+ & + label {
159
+ color: $wac-input-radio-color-active-label;
160
+ &:before {
161
+ border-color: $wac-input-active-color !important;
162
+ }
150
163
  }
151
- }
152
- .is-warning {
153
- background-color: $wac-orange-color;
154
- &::-webkit-progress-value {
155
- background-color: $wac-orange-color;
164
+ &:not([disabled]) {
165
+ & + label {
166
+ &:before {
167
+ border-color: $wac-input-active-color !important;
168
+ }
169
+ }
156
170
  }
157
171
  }
158
- .is-success {
159
- background-color: $wac-green-color;
160
- &::-webkit-progress-value {
161
- background-color: $wac-green-color;
172
+ &:checked + label {
173
+ color: $wac-input-radio-color-active-label;
174
+ &:before {
175
+ border-color: $wac-input-active-color;
162
176
  }
163
177
  }
164
178
  }
165
- .size {
166
- display: inline;
167
- color: $wac-color-text-grey;
168
- position: absolute;
169
- right: 0;
170
- top: -9px;
171
- background: $wac-white;
172
- padding-left: 0.875rem;
173
- .is-success {
174
- color: $wac-green-color;
175
- }
176
- .is-warning {
177
- color: $wac-orange-color;
179
+
180
+
181
+ .wac-radio__row {
182
+ min-width: 100%;
183
+ margin: 0 0 7px;
184
+ }
185
+
186
+ &--nowrap {
187
+ display: inline-block;
188
+ width: auto;
189
+ min-width: 0;
190
+ margin: 0 10px 10px 0;
191
+ .wac-radio {
192
+ &__row {
193
+ width: auto;
194
+ display: inline-block;
195
+ margin: 0;
196
+ }
178
197
  }
179
- .is-danger {
180
- color: $wac-primary-button;
198
+ }
199
+ & + .wac-radio {
200
+ margin-top: rem(-6);
201
+ }
202
+
203
+ &.alone {
204
+ label {
205
+ padding-left: 7px;
206
+ margin-right: 0;
181
207
  }
182
- > span {
208
+
209
+ }
210
+
211
+ &__input {
212
+ width: 100%;
213
+ margin: rem(10) 0 0;
214
+ border: none;
215
+ padding: 0;
216
+ input {
217
+ height: 40px;
218
+ max-height: 40px;
219
+ padding: 0 20px;
220
+ line-height: 40px;
221
+ border: 1px solid $wac-border-form;
222
+ border-radius: 3px;
223
+ margin: 0 0 30px!important;
183
224
  font-size: rem(14) !important;
184
- line-height: 1;
185
- transform: translateY(-3px);
186
- display: inline-block;
187
- letter-spacing: 0;
188
- strong {
189
- letter-spacing: 0;
190
- font-weight: 600;
225
+ color: $wac-main-text;
226
+ &:focus {
227
+ border-color: $wizishop-blue !important;
228
+ box-shadow: 0px 0px 4px $wac-radio !important;
229
+ &::-webkit-input-placeholder {
230
+ /* Chrome/Opera/Safari */
231
+ opacity: 0;
232
+ }
233
+ &::-moz-placeholder {
234
+ /* Firefox 19+ */
235
+ opacity: 0;
236
+ }
237
+ &:-ms-input-placeholder {
238
+ /* IE 10+ */
239
+ opacity: 0;
240
+ }
241
+ &:-moz-placeholder {
242
+ /* Firefox 18- */
243
+ opacity: 0;
244
+ }
191
245
  }
192
246
  }
193
247
  }
@@ -566,14 +620,93 @@ $wac-color-success-popup-alert: #6DCC95!default;
566
620
  }
567
621
  }
568
622
  }
569
- .wac-separator {
570
- display: block;
623
+ .selected-list {
571
624
  width: 100%;
572
- border-bottom: 1px solid $wac-border-color;
573
- margin: 17px 0;
574
-
575
- &.dashed {
576
- border-bottom-style: dashed;
625
+ &__wrapper {
626
+ display: flex;
627
+ flex-direction: column;
628
+ align-items: flex-start;
629
+ justify-content: flex-start;
630
+ &__head {
631
+ width: 100%;
632
+ min-height: rem(60);
633
+ display: flex;
634
+ padding: 10px 20px;
635
+ background-color: $wac-gray-background;
636
+ margin: 0 0 10px;
637
+ > p {
638
+ display: flex;
639
+ align-items: center;
640
+ white-space: nowrap;
641
+ font-size: rem(16);
642
+ line-height: rem(19);
643
+ font-weight: 500;
644
+ }
645
+ > span {
646
+ height: rem(40);
647
+ white-space: nowrap;
648
+ border: 1px solid $wac-wizishop-blue;
649
+ color: $wac-wizishop-blue;
650
+ border-radius: 2px;
651
+ padding: 0 20px;
652
+ display: flex;
653
+ justify-content: center;
654
+ align-items: center;
655
+ font-size: rem(16);
656
+ line-height: 1;
657
+ font-weight: 500;
658
+ align-self: flex-end;
659
+ margin-left: auto;
660
+ transition: .3s ease;
661
+ cursor: pointer;
662
+ &:hover, &:focus {
663
+ background-color: $wac-wizishop-blue;
664
+ color: $white;
665
+ }
666
+ }
667
+ }
668
+ &__content {
669
+ width: 100%;
670
+ display: flex;
671
+ flex-wrap: wrap;
672
+ align-items: flex-start;
673
+ align-content: flex-start;
674
+ justify-content: flex-start;
675
+ &__item {
676
+ white-space: nowrap;
677
+ margin: 0 10px 10px 0;
678
+ border: 1px solid $wac-border-form;
679
+ border-radius: 2px;
680
+ color: $wac-second-color;
681
+ height: rem(40);
682
+ display: flex;
683
+ justify-content: center;
684
+ align-items: center;
685
+ padding: 0 20px;
686
+ transition: .3s ease;
687
+ font-size: rem(16);
688
+ line-height: rem(19);
689
+ font-weight: 500;
690
+ cursor: pointer;
691
+ &:hover, &:focus {
692
+ border: 1px solid $wac-main-text;
693
+ }
694
+ > i {
695
+ color: $wac-green-color;
696
+ max-width: 0;
697
+ display: block;
698
+ transition: .3s ease;
699
+ overflow: hidden;
700
+ }
701
+ &.active {
702
+ color: $wac-main-text;
703
+ > i {
704
+ max-width: unset;
705
+ margin: 0 0 0 10px;
706
+ }
707
+ }
708
+ }
709
+ }
577
710
  }
578
711
  }
579
712
  .wac-alert-popup {
@@ -793,36 +926,14 @@ $wac-color-success-popup-alert: #6DCC95!default;
793
926
  }
794
927
 
795
928
  }
796
- .wac-settings {
797
- width: 40px;
798
- height: 40px;
799
-
800
- &__wrapper {
801
- @include flexbox();
802
- @include justify-content(center);
803
- @include align-items(center);
804
- width: 100%;
805
- height: 100%;
806
- border-radius: 3px;
807
- background-color: $wac-gray-background;
808
- transition: background-color 0.3s ease-in-out;
929
+ .wac-separator {
930
+ display: block;
931
+ width: 100%;
932
+ border-bottom: 1px solid $wac-border-color;
933
+ margin: 17px 0;
809
934
 
810
- i {
811
- color: $wac-second-color;
812
- font-size: 15px;
813
- line-height: 0;
814
- transition: color 0.3s ease-in-out;
815
- }
816
-
817
- &:hover {
818
- background-color: $wac-second-color;
819
- transition: background-color 0.3s ease-in-out;
820
-
821
- i {
822
- color: $wac-white;
823
- transition: color 0.3s ease-in-out;
824
- }
825
- }
935
+ &.dashed {
936
+ border-bottom-style: dashed;
826
937
  }
827
938
  }
828
939
  .wac-block {
@@ -935,44 +1046,37 @@ $wac-color-success-popup-alert: #6DCC95!default;
935
1046
  }
936
1047
  }
937
1048
  }
938
- .wac-snackbar {
939
- .notification {
940
- position: fixed;
941
- bottom: 0;
942
- width: 800px;
943
- color: #fff;
944
- font-size: 15px;
945
- font-weight: 300;
946
- margin: 0 auto;
947
- left: 0;
948
- right: 0;
949
- z-index: 10;
950
- }
951
-
952
- .notification.is-transparent {
953
- background-color: rgba(0, 0, 0, 0.8);
954
- }
1049
+ .wac-settings {
1050
+ width: 40px;
1051
+ height: 40px;
955
1052
 
956
- .notification button {
957
- word-wrap: break-word;
958
- word-break: break-all;
959
- white-space: normal;
960
- height: 100%;
961
- margin-right: 1em;
962
- }
1053
+ &__wrapper {
1054
+ @include flexbox();
1055
+ @include justify-content(center);
1056
+ @include align-items(center);
1057
+ width: 100%;
1058
+ height: 100%;
1059
+ border-radius: 3px;
1060
+ background-color: $wac-gray-background;
1061
+ transition: background-color 0.3s ease-in-out;
963
1062
 
964
- .notification .column:nth-child(2) {
965
- text-align: right;
1063
+ i {
1064
+ color: $wac-second-color;
1065
+ font-size: 15px;
1066
+ line-height: 0;
1067
+ transition: color 0.3s ease-in-out;
966
1068
  }
967
1069
 
968
- .notification .column:nth-child(1) {
969
- text-align: left;
970
- }
1070
+ &:hover {
1071
+ background-color: $wac-second-color;
1072
+ transition: background-color 0.3s ease-in-out;
971
1073
 
972
- .notification--message {
973
- align-self: center;
1074
+ i {
1075
+ color: $wac-white;
1076
+ transition: color 0.3s ease-in-out;
1077
+ }
974
1078
  }
975
-
1079
+ }
976
1080
  }
977
1081
  .wac-calendar {
978
1082
  position: relative;
@@ -1519,6 +1623,77 @@ $wac-color-success-popup-alert: #6DCC95!default;
1519
1623
  .datetimepicker .datetimepicker-footer {
1520
1624
  display: none;
1521
1625
  }
1626
+ .wac-snackbar {
1627
+ .notification {
1628
+ position: fixed;
1629
+ bottom: 0;
1630
+ width: 800px;
1631
+ color: #fff;
1632
+ font-size: 15px;
1633
+ font-weight: 300;
1634
+ margin: 0 auto;
1635
+ left: 0;
1636
+ right: 0;
1637
+ z-index: 10;
1638
+ }
1639
+
1640
+ .notification.is-transparent {
1641
+ background-color: rgba(0, 0, 0, 0.8);
1642
+ }
1643
+
1644
+ .notification button {
1645
+ word-wrap: break-word;
1646
+ word-break: break-all;
1647
+ white-space: normal;
1648
+ height: 100%;
1649
+ margin-right: 1em;
1650
+ }
1651
+
1652
+ .notification .column:nth-child(2) {
1653
+ text-align: right;
1654
+ }
1655
+
1656
+ .notification .column:nth-child(1) {
1657
+ text-align: left;
1658
+ }
1659
+
1660
+ .notification--message {
1661
+ align-self: center;
1662
+ }
1663
+
1664
+ }
1665
+ .wac-delete {
1666
+ width: 40px;
1667
+ height: 40px;
1668
+
1669
+ &__wrapper {
1670
+ @include flexbox();
1671
+ @include justify-content(center);
1672
+ @include align-items(center);
1673
+ width: 100%;
1674
+ height: 100%;
1675
+ border-radius: 3px;
1676
+ background-color: transparent;
1677
+ transition: background-color 0.3s ease-in-out;
1678
+
1679
+ i {
1680
+ color: $wac-border-form;
1681
+ font-size: 14px;
1682
+ line-height: 23px;
1683
+ transition: color 0.3s ease-in-out;
1684
+ }
1685
+
1686
+ &:hover {
1687
+ background-color: $wac-primary-button;
1688
+ transition: background-color 0.3s ease-in-out;
1689
+
1690
+ i {
1691
+ color: $wac-white;
1692
+ transition: color 0.3s ease-in-out;
1693
+ }
1694
+ }
1695
+ }
1696
+ }
1522
1697
  .wac-state {
1523
1698
  width: 12px;
1524
1699
  height: 12px;
@@ -1578,238 +1753,48 @@ $wac-color-success-popup-alert: #6DCC95!default;
1578
1753
  }
1579
1754
  }
1580
1755
  }
1581
- .wac-delete {
1582
- width: 40px;
1583
- height: 40px;
1756
+ .wac-edit-in-place.nwb-wrapper {
1757
+ display: inline-block;
1758
+ position: relative;
1759
+ width: auto;
1760
+ min-width: 12px;
1761
+ min-height: 1.4em;
1584
1762
 
1585
- &__wrapper {
1586
- @include flexbox();
1587
- @include justify-content(center);
1588
- @include align-items(center);
1589
- width: 100%;
1590
- height: 100%;
1591
- border-radius: 3px;
1592
- background-color: transparent;
1593
- transition: background-color 0.3s ease-in-out;
1763
+ input {
1764
+ font-size: inherit;
1765
+ transition: width 50ms;
1766
+ position: absolute;
1767
+ top: 0;
1768
+ left: -5px;
1769
+ width: calc(100% + 16px) !important;
1770
+ height: calc(100% + 14px) !important;
1771
+ padding: 5px;
1772
+ z-index: 1;
1773
+ margin: 0;
1774
+ outline: none !important;
1775
+ border: 1px solid $wac-edit-in-place-border;
1776
+ background: inherit;
1777
+ transform: translateY(-17%);
1778
+ background-color: $wac-edit-in-place-background;
1594
1779
 
1595
- i {
1596
- color: $wac-border-form;
1597
- font-size: 14px;
1598
- line-height: 23px;
1599
- transition: color 0.3s ease-in-out;
1780
+ &.nwb-editable {
1781
+ text-decoration: none;
1782
+ color: inherit;
1783
+ border: none;
1784
+ cursor: pointer;
1785
+ height: 26px;
1600
1786
  }
1601
1787
 
1602
- &:hover {
1603
- background-color: $wac-primary-button;
1604
- transition: background-color 0.3s ease-in-out;
1605
-
1606
- i {
1607
- color: $wac-white;
1608
- transition: color 0.3s ease-in-out;
1609
- }
1788
+ &.nwb-editing {
1789
+ color: $wac-edit-in-place-border;
1610
1790
  }
1611
1791
  }
1612
- }
1613
1792
 
1614
- .wac-switch {
1615
- input {
1616
- display: none;
1617
- &:checked + label {
1618
- &:before {
1619
- background-color: $wac-bleu-color;
1620
- }
1621
- &:after {
1622
- transform: translateY(-50%) translateX(24px) rotate(180deg);
1623
- }
1624
- > span {
1625
- .disable {
1626
- display: none;
1627
- }
1628
- .enable {
1629
- display: block;
1630
- }
1631
- }
1632
- }
1633
- &.danger {
1634
- &:checked + label {
1635
- &:before {
1636
- background-color: $wac-red-color;
1637
- }
1638
- }
1639
- }
1640
- }
1641
- &__label {
1642
- display: block;
1643
- padding: 0 0 0 56px;
1644
- position: relative;
1645
- min-height: 22px;
1646
- min-width: 56px;
1647
- cursor: pointer;
1648
- &:before {
1649
- content: '';
1650
- display: block;
1651
- width: rem(46);
1652
- height: rem(22);
1653
- border-radius: 12px;
1654
- background-color: $wac-border-form;
1655
- position: absolute;
1656
- top: 0;
1657
- left: 0;
1658
- transition: background-color 0.3s ease;
1659
- }
1660
- &:after {
1661
- content: '';
1662
- display: block;
1663
- width: rem(16);
1664
- height: rem(16);
1665
- background-color: $wac-white;
1666
- border-radius: 50%;
1667
- position: absolute;
1668
- left: 3px;
1669
- top: 50%;
1670
- transform: translateY(-50%) translateX(0) rotate(0deg);
1671
- transition: transform 0.3s ease;
1672
- }
1673
- &__text {
1674
- font-size: rem(14);
1675
- line-height: rem(22);
1676
- font-weight: 400;
1677
- color: $wac-main-text;
1678
- &:empty {
1679
- display: none;
1680
- }
1681
- .disable {
1682
- display: block;
1683
- }
1684
- .enable {
1685
- display: none;
1686
- }
1687
- span {
1688
- display: flex;
1689
- align-items: center;
1690
- white-space: nowrap;
1691
- strong {
1692
- margin: 0 0 0 5px;
1693
- font-weight: 600;
1694
- }
1695
- }
1696
- }
1697
- }
1698
- }
1699
-
1700
- .wac-show-input {
1701
- width: 100%;
1702
- margin: 15px 0 0 0;
1703
- input {
1704
- width: 100%;
1705
- height: 40px;
1706
- line-height: 40px;
1707
- padding: 0 20px;
1708
- color: $wac-main-text;
1709
- border-radius: 3px;
1710
- border: 1px solid $wac-border-form;
1711
- &::-webkit-input-placeholder {
1712
- /* Chrome/Opera/Safari */
1713
- color: $wac-color-icon-search-multiple-search;
1714
- opacity: 1;
1715
- font-weight: 400;
1716
- @include media('<tablet') {
1717
- font-size: rem(11);
1718
- }
1719
- }
1720
- &::-moz-placeholder {
1721
- /* Firefox 19+ */
1722
- color: $wac-color-icon-search-multiple-search;
1723
- opacity: 1;
1724
- font-weight: 400;
1725
- @include media('<tablet') {
1726
- font-size: rem(11);
1727
- }
1728
- }
1729
- &:-ms-input-placeholder {
1730
- /* IE 10+ */
1731
- color: $wac-color-icon-search-multiple-search;
1732
- opacity: 1;
1733
- font-weight: 400;
1734
- @include media('<tablet') {
1735
- font-size: rem(11);
1736
- }
1737
- }
1738
- &:-moz-placeholder {
1739
- /* Firefox 18- */
1740
- color: $wac-color-icon-search-multiple-search;
1741
- opacity: 1;
1742
- font-weight: 400;
1743
- @include media('<tablet') {
1744
- font-size: rem(11);
1745
- }
1746
- }
1747
- &:focus {
1748
- &::-webkit-input-placeholder {
1749
- /* Chrome/Opera/Safari */
1750
- color: $wac-white;
1751
- opacity: 1;
1752
- }
1753
- &::-moz-placeholder {
1754
- /* Firefox 19+ */
1755
- color: $wac-white;
1756
- opacity: 1;
1757
- }
1758
- &:-ms-input-placeholder {
1759
- /* IE 10+ */
1760
- color: $wac-white;
1761
- opacity: 1;
1762
- }
1763
- &:-moz-placeholder {
1764
- /* Firefox 18- */
1765
- color: $wac-white;
1766
- opacity: 1;
1767
- }
1768
- }
1769
- }
1770
- }
1771
- .wac-edit-in-place.nwb-wrapper {
1772
- display: inline-block;
1773
- position: relative;
1774
- width: auto;
1775
- min-width: 12px;
1776
- min-height: 1.4em;
1777
-
1778
- input {
1779
- font-size: inherit;
1780
- transition: width 50ms;
1781
- position: absolute;
1782
- top: 0;
1783
- left: -5px;
1784
- width: calc(100% + 16px) !important;
1785
- height: calc(100% + 14px) !important;
1786
- padding: 5px;
1787
- z-index: 1;
1788
- margin: 0;
1789
- outline: none !important;
1790
- border: 1px solid $wac-edit-in-place-border;
1791
- background: inherit;
1792
- transform: translateY(-17%);
1793
- background-color: $wac-edit-in-place-background;
1794
-
1795
- &.nwb-editable {
1796
- text-decoration: none;
1797
- color: inherit;
1798
- border: none;
1799
- cursor: pointer;
1800
- height: 26px;
1801
- }
1802
-
1803
- &.nwb-editing {
1804
- color: $wac-edit-in-place-border;
1805
- }
1806
- }
1807
-
1808
- div.select {
1809
- position: absolute;
1810
- left: 0;
1811
-
1812
- &:before,
1793
+ div.select {
1794
+ position: absolute;
1795
+ left: 0;
1796
+
1797
+ &:before,
1813
1798
  &:after {
1814
1799
  display: block;
1815
1800
  position: absolute;
@@ -1937,79 +1922,161 @@ $wac-color-success-popup-alert: #6DCC95!default;
1937
1922
  z-index: 2;
1938
1923
  }
1939
1924
  }
1940
- .wac-tab {
1941
- &__wrapper {
1942
- position: relative;
1943
- @include flexbox();
1944
- margin-bottom: 30px;
1945
1925
 
1946
- &__tab {
1947
- position: relative;
1948
- font-size: 14px;
1949
- line-height: 25px;
1950
- color: $wac-secondary-color;
1951
-
1952
- &:hover {
1953
- color: $wac-main-text;
1954
- transition: color 0.3s ease-in-out;
1955
- }
1956
-
1957
- &:not(:last-child) {
1958
- margin-right: 30px;
1926
+ .wac-switch {
1927
+ input {
1928
+ display: none;
1929
+ &:checked + label {
1930
+ &:before {
1931
+ background-color: $wac-bleu-color;
1959
1932
  }
1960
-
1961
1933
  &:after {
1962
- position: absolute;
1963
- width: 0;
1964
- height: 2px;
1965
- bottom: -5px;
1966
- left: 0;
1967
- content: '';
1968
- background-color: $wac-input-active-color;
1969
- transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
1934
+ transform: translateY(-50%) translateX(24px) rotate(180deg);
1970
1935
  }
1971
-
1972
- &--selected {
1973
- color: $wac-main-text;
1974
-
1975
- &:after {
1976
- width: 100%;
1977
- transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
1936
+ > span {
1937
+ .disable {
1938
+ display: none;
1939
+ }
1940
+ .enable {
1941
+ display: block;
1942
+ }
1943
+ }
1944
+ }
1945
+ &.danger {
1946
+ &:checked + label {
1947
+ &:before {
1948
+ background-color: $wac-red-color;
1978
1949
  }
1979
1950
  }
1980
1951
  }
1981
1952
  }
1982
-
1983
- &--underline {
1984
- .wac-tab__wrapper:before {
1953
+ &__label {
1954
+ display: block;
1955
+ padding: 0 0 0 56px;
1956
+ position: relative;
1957
+ min-height: 22px;
1958
+ min-width: 56px;
1959
+ cursor: pointer;
1960
+ &:before {
1961
+ content: '';
1962
+ display: block;
1963
+ width: rem(46);
1964
+ height: rem(22);
1965
+ border-radius: 12px;
1966
+ background-color: $wac-border-form;
1985
1967
  position: absolute;
1986
- width: 100%;
1987
- height: 1px;
1988
- bottom: -5px;
1968
+ top: 0;
1989
1969
  left: 0;
1970
+ transition: background-color 0.3s ease;
1971
+ }
1972
+ &:after {
1990
1973
  content: '';
1991
- background-color: $wac-border-form;
1974
+ display: block;
1975
+ width: rem(16);
1976
+ height: rem(16);
1977
+ background-color: $wac-white;
1978
+ border-radius: 50%;
1979
+ position: absolute;
1980
+ left: 3px;
1981
+ top: 50%;
1982
+ transform: translateY(-50%) translateX(0) rotate(0deg);
1983
+ transition: transform 0.3s ease;
1992
1984
  }
1993
- }
1994
-
1995
- &--button {
1996
- .wac-tab__wrapper__tab {
1997
- background-color: $wac-button-tab-background;
1998
- padding: 12px 20px;
1985
+ &__text {
1999
1986
  font-size: rem(14);
2000
- line-height: rem(16);
2001
- white-space: nowrap;
2002
- color: $second-color;
2003
- margin: 0 rem(2) 0 0;
2004
- border-radius: 3px;
2005
- transition: .3s ease;
2006
- &--selected, &:hover, &:focus {
2007
- background-color: $wac-wizishop-blue;
2008
- color: $white;
1987
+ line-height: rem(22);
1988
+ font-weight: 400;
1989
+ color: $wac-main-text;
1990
+ &:empty {
1991
+ display: none;
2009
1992
  }
2010
- &:after {
1993
+ .disable {
1994
+ display: block;
1995
+ }
1996
+ .enable {
2011
1997
  display: none;
2012
1998
  }
1999
+ span {
2000
+ display: flex;
2001
+ align-items: center;
2002
+ white-space: nowrap;
2003
+ strong {
2004
+ margin: 0 0 0 5px;
2005
+ font-weight: 600;
2006
+ }
2007
+ }
2008
+ }
2009
+ }
2010
+ }
2011
+
2012
+ .wac-show-input {
2013
+ width: 100%;
2014
+ margin: 15px 0 0 0;
2015
+ input {
2016
+ width: 100%;
2017
+ height: 40px;
2018
+ line-height: 40px;
2019
+ padding: 0 20px;
2020
+ color: $wac-main-text;
2021
+ border-radius: 3px;
2022
+ border: 1px solid $wac-border-form;
2023
+ &::-webkit-input-placeholder {
2024
+ /* Chrome/Opera/Safari */
2025
+ color: $wac-color-icon-search-multiple-search;
2026
+ opacity: 1;
2027
+ font-weight: 400;
2028
+ @include media('<tablet') {
2029
+ font-size: rem(11);
2030
+ }
2031
+ }
2032
+ &::-moz-placeholder {
2033
+ /* Firefox 19+ */
2034
+ color: $wac-color-icon-search-multiple-search;
2035
+ opacity: 1;
2036
+ font-weight: 400;
2037
+ @include media('<tablet') {
2038
+ font-size: rem(11);
2039
+ }
2040
+ }
2041
+ &:-ms-input-placeholder {
2042
+ /* IE 10+ */
2043
+ color: $wac-color-icon-search-multiple-search;
2044
+ opacity: 1;
2045
+ font-weight: 400;
2046
+ @include media('<tablet') {
2047
+ font-size: rem(11);
2048
+ }
2049
+ }
2050
+ &:-moz-placeholder {
2051
+ /* Firefox 18- */
2052
+ color: $wac-color-icon-search-multiple-search;
2053
+ opacity: 1;
2054
+ font-weight: 400;
2055
+ @include media('<tablet') {
2056
+ font-size: rem(11);
2057
+ }
2058
+ }
2059
+ &:focus {
2060
+ &::-webkit-input-placeholder {
2061
+ /* Chrome/Opera/Safari */
2062
+ color: $wac-white;
2063
+ opacity: 1;
2064
+ }
2065
+ &::-moz-placeholder {
2066
+ /* Firefox 19+ */
2067
+ color: $wac-white;
2068
+ opacity: 1;
2069
+ }
2070
+ &:-ms-input-placeholder {
2071
+ /* IE 10+ */
2072
+ color: $wac-white;
2073
+ opacity: 1;
2074
+ }
2075
+ &:-moz-placeholder {
2076
+ /* Firefox 18- */
2077
+ color: $wac-white;
2078
+ opacity: 1;
2079
+ }
2013
2080
  }
2014
2081
  }
2015
2082
  }
@@ -2150,8 +2217,111 @@ $wac-color-success-popup-alert: #6DCC95!default;
2150
2217
  }
2151
2218
  }
2152
2219
 
2153
- .wac-free-popin .ps-content > * {
2154
- padding-right: 15px;
2220
+ .wac-free-popin .ps-content > * {
2221
+ padding-right: 15px;
2222
+ }
2223
+ .wac-tab {
2224
+ &__wrapper {
2225
+ position: relative;
2226
+ @include flexbox();
2227
+ margin-bottom: 30px;
2228
+
2229
+ &__tab {
2230
+ position: relative;
2231
+ font-size: 14px;
2232
+ line-height: 25px;
2233
+ color: $wac-secondary-color;
2234
+
2235
+ &:hover {
2236
+ color: $wac-main-text;
2237
+ transition: color 0.3s ease-in-out;
2238
+ }
2239
+
2240
+ &:not(:last-child) {
2241
+ margin-right: 30px;
2242
+ }
2243
+
2244
+ &:after {
2245
+ position: absolute;
2246
+ width: 0;
2247
+ height: 2px;
2248
+ bottom: -5px;
2249
+ left: 0;
2250
+ content: '';
2251
+ background-color: $wac-input-active-color;
2252
+ transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
2253
+ }
2254
+
2255
+ &--selected {
2256
+ color: $wac-main-text;
2257
+
2258
+ &:after {
2259
+ width: 100%;
2260
+ transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
2261
+ }
2262
+ }
2263
+ }
2264
+ }
2265
+
2266
+ &--underline {
2267
+ .wac-tab__wrapper:before {
2268
+ position: absolute;
2269
+ width: 100%;
2270
+ height: 1px;
2271
+ bottom: -5px;
2272
+ left: 0;
2273
+ content: '';
2274
+ background-color: $wac-border-form;
2275
+ }
2276
+ }
2277
+
2278
+ &--button {
2279
+ .wac-tab__wrapper__tab {
2280
+ background-color: $wac-button-tab-background;
2281
+ padding: 12px 20px;
2282
+ font-size: rem(14);
2283
+ line-height: rem(16);
2284
+ white-space: nowrap;
2285
+ color: $second-color;
2286
+ margin: 0 rem(2) 0 0;
2287
+ border-radius: 3px;
2288
+ transition: .3s ease;
2289
+ &--selected, &:hover, &:focus {
2290
+ background-color: $wac-wizishop-blue;
2291
+ color: $white;
2292
+ }
2293
+ &:after {
2294
+ display: none;
2295
+ }
2296
+ }
2297
+ }
2298
+ }
2299
+ .wac-image {
2300
+ width: 60px;
2301
+ height: 60px;
2302
+
2303
+ &__wrapper {
2304
+ @include flexbox();
2305
+ @include justify-content(center);
2306
+ @include align-items(center);
2307
+ width: 100%;
2308
+ height: 100%;
2309
+ border-radius: 3px;
2310
+ border: 1px solid $wac-border-light;
2311
+ background-position: center;
2312
+ background-size: contain;
2313
+ background-repeat: no-repeat;
2314
+
2315
+ &.empty {
2316
+ background-color: $wac-gray-background;
2317
+ }
2318
+
2319
+ i {
2320
+ color: $wac-border-form;
2321
+ font-size: 25px;
2322
+ line-height: 23px;
2323
+ }
2324
+ }
2155
2325
  }
2156
2326
  .wac-table {
2157
2327
  width: 100%;
@@ -2295,30 +2465,35 @@ $wac-color-success-popup-alert: #6DCC95!default;
2295
2465
  }
2296
2466
  }
2297
2467
  }
2298
- .wac-image {
2299
- width: 60px;
2300
- height: 60px;
2468
+ .wac-label {
2469
+ @include flexbox();
2470
+ background-color: $wac-gray-background;
2471
+ border-radius: 3px;
2472
+ border: 1px solid $wac-gray-background;
2473
+ transition: border-color 0.3s ease-in-out;
2301
2474
 
2302
2475
  &__wrapper {
2303
- @include flexbox();
2304
- @include justify-content(center);
2305
- @include align-items(center);
2306
- width: 100%;
2307
- height: 100%;
2308
- border-radius: 3px;
2309
- border: 1px solid $wac-border-light;
2310
- background-position: center;
2311
- background-size: contain;
2312
- background-repeat: no-repeat;
2313
-
2314
- &.empty {
2315
- background-color: $wac-gray-background;
2316
- }
2476
+ padding: 7.5px 13px;
2477
+ font-size: 14px;
2478
+ line-height: 16px;
2479
+ color: $wac-second-color;
2317
2480
 
2318
2481
  i {
2319
- color: $wac-border-form;
2320
- font-size: 25px;
2482
+ margin-left: 10px;
2483
+ font-size: 12px;
2321
2484
  line-height: 23px;
2485
+ color: $wac-border-form;
2486
+ transition: color 0.3s ease-in-out;
2487
+ }
2488
+ }
2489
+
2490
+ &:hover {
2491
+ border-color: $wac-input-border;
2492
+ transition: border-color 0.3s ease-in-out;
2493
+
2494
+ .wac-label__wrapper i {
2495
+ color: $wac-second-color;
2496
+ transition: color 0.3s ease-in-out;
2322
2497
  }
2323
2498
  }
2324
2499
  }
@@ -2428,68 +2603,6 @@ $wac-color-success-popup-alert: #6DCC95!default;
2428
2603
  }
2429
2604
  }
2430
2605
  }
2431
- .wac-label {
2432
- @include flexbox();
2433
- background-color: $wac-gray-background;
2434
- border-radius: 3px;
2435
- border: 1px solid $wac-gray-background;
2436
- transition: border-color 0.3s ease-in-out;
2437
-
2438
- &__wrapper {
2439
- padding: 7.5px 13px;
2440
- font-size: 14px;
2441
- line-height: 16px;
2442
- color: $wac-second-color;
2443
-
2444
- i {
2445
- margin-left: 10px;
2446
- font-size: 12px;
2447
- line-height: 23px;
2448
- color: $wac-border-form;
2449
- transition: color 0.3s ease-in-out;
2450
- }
2451
- }
2452
-
2453
- &:hover {
2454
- border-color: $wac-input-border;
2455
- transition: border-color 0.3s ease-in-out;
2456
-
2457
- .wac-label__wrapper i {
2458
- color: $wac-second-color;
2459
- transition: color 0.3s ease-in-out;
2460
- }
2461
- }
2462
- }
2463
- .wac-text {
2464
- font-size: rem(14);
2465
- line-height: rem(25);
2466
- color: $wac-main-text;
2467
- margin: 0 0 rem(30);
2468
- &.grey {
2469
- color: $wac-second-color;
2470
- }
2471
- &.yellow {
2472
- color: $wac-warning-color;
2473
- }
2474
- &.red {
2475
- color: $wac-primary;
2476
- }
2477
- &.label {
2478
- color: $placeholder-color;
2479
- }
2480
- &.optional {
2481
- font-size: rem(12);
2482
- line-height: rem(23);
2483
- color: $color-text-grey;
2484
- font-style: italic;
2485
- }
2486
- p {
2487
- font: inherit;
2488
- line-height: inherit;
2489
- color: inherit;
2490
- margin: inherit;
2491
- }
2492
- }
2493
2606
  .wac-loader {
2494
2607
  &.is-small {
2495
2608
  position: absolute;
@@ -2568,84 +2681,34 @@ $wac-color-success-popup-alert: #6DCC95!default;
2568
2681
  font-weight: 500;
2569
2682
  }
2570
2683
  }
2571
- .wac-text-area {
2572
- label {
2573
- font-size: rem(14);
2574
- color: $wac-main-text;
2575
- font-weight: 500 !important;
2576
- margin-bottom: 0;
2577
- }
2578
- textarea:focus {
2579
- border-color: $wizishop-blue !important;
2580
-
2581
- + span {
2582
- color: $wizishop-blue !important;
2583
- }
2584
- }
2585
-
2586
- textarea.has-help-text {
2587
- margin-bottom: rem(20) !important;
2588
- }
2589
-
2590
- .input,
2591
- .textarea,
2592
- .input:focus,
2593
- .input.is-focused,
2594
- .input:active,
2595
- .input.is-active,
2596
- .textarea:focus,
2597
- .textarea.is-focused,
2598
- .textarea:active,
2599
- .textarea.is-active {
2600
- font-size: rem(14);
2601
- color: $wac-main-text;
2602
- border: rem(1) solid $wac-border-form;
2603
- box-shadow: none;
2604
- padding: rem(12) rem(20);
2605
- border-radius: rem(3);
2606
- margin-bottom: 0;
2607
- max-height: rem(80);
2608
- min-height: rem(80);
2609
-
2610
- &::placeholder {
2611
- color: $wac-placeholder;
2612
- font-weight: 400;
2613
- }
2684
+ .wac-text {
2685
+ font-size: rem(14);
2686
+ line-height: rem(25);
2687
+ color: $wac-main-text;
2688
+ margin: 0 0 rem(30);
2689
+ &.grey {
2690
+ color: $wac-second-color;
2614
2691
  }
2615
-
2616
- .input:focus,
2617
- .input.is-focused,
2618
- .input:active,
2619
- .input.is-active {
2620
- border-color: $wac-wizishop-blue;
2692
+ &.yellow {
2693
+ color: $wac-warning-color;
2621
2694
  }
2622
-
2623
- .control > label {
2624
- font-size: rem(14);
2625
- padding: 0 0 rem(10);
2626
- display: inline-block;
2695
+ &.red {
2696
+ color: $wac-primary;
2627
2697
  }
2628
-
2629
- &__info,
2630
- &__error {
2631
- font-size: rem(12);
2632
- color: $wac-secondary-text;
2633
- position: absolute;
2634
- bottom: -25px;
2635
-
2636
- left: 0;
2698
+ &.label {
2699
+ color: $placeholder-color;
2637
2700
  }
2638
-
2639
- &__size {
2701
+ &.optional {
2640
2702
  font-size: rem(12);
2641
- color: $wac-secondary-text;
2642
- position: absolute;
2643
- bottom: -25px;
2644
- right: 0;
2703
+ line-height: rem(23);
2704
+ color: $color-text-grey;
2705
+ font-style: italic;
2645
2706
  }
2646
-
2647
- .icon.is-small.is-right {
2648
- margin-top: rem(5);
2707
+ p {
2708
+ font: inherit;
2709
+ line-height: inherit;
2710
+ color: inherit;
2711
+ margin: inherit;
2649
2712
  }
2650
2713
  }
2651
2714
  .wac-multiple-search {
@@ -2879,41 +2942,100 @@ $wac-color-success-popup-alert: #6DCC95!default;
2879
2942
  }
2880
2943
  &__error {
2881
2944
  position: absolute;
2882
- top: 100%;
2883
- margin-top: 10px;
2884
- width: auto;
2885
- right: 0;
2886
- height: 30px;
2887
- line-height: 30px;
2888
- text-align: center;
2889
- background-color: $wac-multiple-search-error;
2890
- color: $wac-white;
2891
- font-size: rem(16);
2892
- font-weight: 500;
2893
- white-space: nowrap;
2894
- padding: 0 20px;
2895
- border-radius: 3px;
2945
+ top: 100%;
2946
+ margin-top: 10px;
2947
+ width: auto;
2948
+ right: 0;
2949
+ height: 30px;
2950
+ line-height: 30px;
2951
+ text-align: center;
2952
+ background-color: $wac-multiple-search-error;
2953
+ color: $wac-white;
2954
+ font-size: rem(16);
2955
+ font-weight: 500;
2956
+ white-space: nowrap;
2957
+ padding: 0 20px;
2958
+ border-radius: 3px;
2959
+ }
2960
+ }
2961
+ .wac-text-area {
2962
+ label {
2963
+ font-size: rem(14);
2964
+ color: $wac-main-text;
2965
+ font-weight: 500 !important;
2966
+ margin-bottom: 0;
2967
+ }
2968
+ textarea:focus {
2969
+ border-color: $wizishop-blue !important;
2970
+
2971
+ + span {
2972
+ color: $wizishop-blue !important;
2973
+ }
2974
+ }
2975
+
2976
+ textarea.has-help-text {
2977
+ margin-bottom: rem(20) !important;
2978
+ }
2979
+
2980
+ .input,
2981
+ .textarea,
2982
+ .input:focus,
2983
+ .input.is-focused,
2984
+ .input:active,
2985
+ .input.is-active,
2986
+ .textarea:focus,
2987
+ .textarea.is-focused,
2988
+ .textarea:active,
2989
+ .textarea.is-active {
2990
+ font-size: rem(14);
2991
+ color: $wac-main-text;
2992
+ border: rem(1) solid $wac-border-form;
2993
+ box-shadow: none;
2994
+ padding: rem(12) rem(20);
2995
+ border-radius: rem(3);
2996
+ margin-bottom: 0;
2997
+ max-height: rem(80);
2998
+ min-height: rem(80);
2999
+
3000
+ &::placeholder {
3001
+ color: $wac-placeholder;
3002
+ font-weight: 400;
3003
+ }
3004
+ }
3005
+
3006
+ .input:focus,
3007
+ .input.is-focused,
3008
+ .input:active,
3009
+ .input.is-active {
3010
+ border-color: $wac-wizishop-blue;
3011
+ }
3012
+
3013
+ .control > label {
3014
+ font-size: rem(14);
3015
+ padding: 0 0 rem(10);
3016
+ display: inline-block;
3017
+ }
3018
+
3019
+ &__info,
3020
+ &__error {
3021
+ font-size: rem(12);
3022
+ color: $wac-secondary-text;
3023
+ position: absolute;
3024
+ bottom: -25px;
3025
+
3026
+ left: 0;
2896
3027
  }
2897
- }
2898
- span.wac-tooltip {
2899
- position: relative;
2900
- padding: 0.5rem;
2901
- .tooltip-content {
2902
- display: none;
3028
+
3029
+ &__size {
3030
+ font-size: rem(12);
3031
+ color: $wac-secondary-text;
3032
+ position: absolute;
3033
+ bottom: -25px;
3034
+ right: 0;
2903
3035
  }
2904
- &:hover {
2905
- .tooltip-content {
2906
- position: absolute;
2907
- width: 500px;
2908
- background-color: $wac-gray-background;
2909
- color: $wac-secondary-text;
2910
- display: block;
2911
- left: 30px;
2912
- top: 0;
2913
- border: 1px solid $wac-border-color;
2914
- padding: 0.25rem 0.5rem;
2915
- z-index: 100;
2916
- }
3036
+
3037
+ .icon.is-small.is-right {
3038
+ margin-top: rem(5);
2917
3039
  }
2918
3040
  }
2919
3041
  .wac-pagination {
@@ -3021,6 +3143,101 @@ span.wac-tooltip {
3021
3143
  }
3022
3144
  }
3023
3145
  }
3146
+ span.wac-tooltip {
3147
+ position: relative;
3148
+ padding: 0.5rem;
3149
+ .tooltip-content {
3150
+ display: none;
3151
+ }
3152
+ &:hover {
3153
+ .tooltip-content {
3154
+ position: absolute;
3155
+ width: 500px;
3156
+ background-color: $wac-gray-background;
3157
+ color: $wac-secondary-text;
3158
+ display: block;
3159
+ left: 30px;
3160
+ top: 0;
3161
+ border: 1px solid $wac-border-color;
3162
+ padding: 0.25rem 0.5rem;
3163
+ z-index: 100;
3164
+ }
3165
+ }
3166
+ }
3167
+ .wac-progressBarContent {
3168
+ position: relative;
3169
+ width: 100%;
3170
+ display: block;
3171
+ .progressBar {
3172
+ position: relative;
3173
+ width: 88%;
3174
+ margin-bottom: 1rem;
3175
+ progress {
3176
+ &.progress {
3177
+ margin-bottom: 0;
3178
+ height: rem(2);
3179
+ &::-webkit-progress-value {
3180
+ transition: width 0.5s ease;
3181
+ }
3182
+ }
3183
+ }
3184
+ span {
3185
+ position: absolute;
3186
+ top: -4px;
3187
+ height: 11px;
3188
+ width: 11px;
3189
+ background-color: $wac-border-color;
3190
+ border-radius: 50%;
3191
+ }
3192
+ .is-danger {
3193
+ background-color: $wac-primary-button;
3194
+ &::-webkit-progress-value {
3195
+ background-color: $wac-primary-button;
3196
+ }
3197
+ }
3198
+ .is-warning {
3199
+ background-color: $wac-orange-color;
3200
+ &::-webkit-progress-value {
3201
+ background-color: $wac-orange-color;
3202
+ }
3203
+ }
3204
+ .is-success {
3205
+ background-color: $wac-green-color;
3206
+ &::-webkit-progress-value {
3207
+ background-color: $wac-green-color;
3208
+ }
3209
+ }
3210
+ }
3211
+ .size {
3212
+ display: inline;
3213
+ color: $wac-color-text-grey;
3214
+ position: absolute;
3215
+ right: 0;
3216
+ top: -9px;
3217
+ background: $wac-white;
3218
+ padding-left: 0.875rem;
3219
+ .is-success {
3220
+ color: $wac-green-color;
3221
+ }
3222
+ .is-warning {
3223
+ color: $wac-orange-color;
3224
+ }
3225
+ .is-danger {
3226
+ color: $wac-primary-button;
3227
+ }
3228
+ > span {
3229
+ font-size: rem(14) !important;
3230
+ line-height: 1;
3231
+ transform: translateY(-3px);
3232
+ display: inline-block;
3233
+ letter-spacing: 0;
3234
+ strong {
3235
+ letter-spacing: 0;
3236
+ font-weight: 600;
3237
+ }
3238
+ }
3239
+ }
3240
+ }
3024
3241
  .wac-upload {
3025
3242
  width: auto;
3026
3243
  &__wrapper {
@@ -3108,88 +3325,13 @@ span.wac-tooltip {
3108
3325
  margin: 0 0 rem(20);
3109
3326
  }
3110
3327
  }
3111
- > span {
3112
- font-size: rem(14);
3113
- line-height: rem(16);
3114
- margin: 0 rem(20) 0;
3115
- }
3116
- }
3117
- }
3118
- }
3119
- }
3120
- .wac-alert {
3121
- width: 100%;
3122
- background-color: transparentize($wac-link-color, 0.85);
3123
- color: $wac-link-color;
3124
- border-radius: 3px;
3125
- display: flex;
3126
- flex-wrap: nowrap;
3127
- justify-content: space-between;
3128
- padding: 20px;
3129
- &.success {
3130
- background-color: transparentize($wac-green-color, 0.85);
3131
- p {
3132
- color: $wac-p-alert-color-success;
3133
- > * {
3134
- color: $wac-p-alert-color-success;
3135
- }
3136
- }
3137
- i {
3138
- color: $wac-green-color;
3139
- }
3140
- }
3141
- &.warning {
3142
- background-color: transparentize($wac-primary-button, 0.85);
3143
- p {
3144
- color: $wac-p-alert-color-warning;
3145
- > * {
3146
- color: $wac-p-alert-color-warning;
3147
- }
3148
- }
3149
- i {
3150
- color: $wac-primary-button;
3151
- }
3152
- }
3153
- &.alert {
3154
- background-color: transparentize($wac-orange-color, 0.85);
3155
- p {
3156
- color: $wac-p-alert-color-alert;
3157
- > * {
3158
- color: $wac-p-alert-color-alert;
3159
- }
3160
- }
3161
- i {
3162
- color: $wac-orange-color;
3163
- }
3164
- }
3165
- p {
3166
- width: 100%;
3167
- font-size: rem(14);
3168
- line-height: rem(25);
3169
- margin: 0;
3170
- padding: 0;
3171
- color: $wac-p-alert-color-default;
3172
- > * {
3173
- color: $wac-p-alert-color-default;
3174
- }
3175
- }
3176
- i {
3177
- width: auto;
3178
- margin: 0 10px 0 0;
3179
- color: inherit;
3180
- font-size: rem(14);
3181
- line-height: rem(25);
3182
- }
3183
-
3184
- .wac-button i {
3185
- color: $wac-white;
3186
- }
3187
- }
3188
- .wac-wrapper {
3189
- width: 100%;
3190
- &.max-width {
3191
- max-width: 1080px;
3192
- margin: 0 auto;
3328
+ > span {
3329
+ font-size: rem(14);
3330
+ line-height: rem(16);
3331
+ margin: 0 rem(20) 0;
3332
+ }
3333
+ }
3334
+ }
3193
3335
  }
3194
3336
  }
3195
3337
  .wac-back {
@@ -3219,25 +3361,11 @@ span.wac-tooltip {
3219
3361
  }
3220
3362
  }
3221
3363
  }
3222
- .wac-wrapper-blocs {
3223
- &.sidebar {
3224
- width: calc(100% + 30px);
3225
- transform: translateX(-15px);
3226
- display: flex;
3227
- flex-wrap: nowrap;
3228
- align-items: flex-start;
3229
- align-content: flex-start;
3230
- & > :first-child {
3231
- @include media('>=desktop') {
3232
- width: 100%;
3233
- }
3234
- }
3235
- & > :last-child:not(:first-child) {
3236
- min-width: 340px;
3237
- }
3238
- & > * {
3239
- margin: 0 15px;
3240
- }
3364
+ .wac-wrapper {
3365
+ width: 100%;
3366
+ &.max-width {
3367
+ max-width: 1080px;
3368
+ margin: 0 auto;
3241
3369
  }
3242
3370
  }
3243
3371
  .wac-field-checkbox {
@@ -3390,11 +3518,26 @@ span.wac-tooltip {
3390
3518
  }
3391
3519
 
3392
3520
  }
3393
- h1.wac-h1 {
3394
- font-size: rem(30);
3395
- line-height: rem(35);
3396
- font-weight: 600;
3397
- color: $wac-main-text;
3521
+ .wac-wrapper-blocs {
3522
+ &.sidebar {
3523
+ width: calc(100% + 30px);
3524
+ transform: translateX(-15px);
3525
+ display: flex;
3526
+ flex-wrap: nowrap;
3527
+ align-items: flex-start;
3528
+ align-content: flex-start;
3529
+ & > :first-child {
3530
+ @include media('>=desktop') {
3531
+ width: 100%;
3532
+ }
3533
+ }
3534
+ & > :last-child:not(:first-child) {
3535
+ min-width: 340px;
3536
+ }
3537
+ & > * {
3538
+ margin: 0 15px;
3539
+ }
3540
+ }
3398
3541
  }
3399
3542
  .wac-filters {
3400
3543
  width: 100%;
@@ -3479,12 +3622,13 @@ h1.wac-h1 {
3479
3622
  }
3480
3623
  }
3481
3624
  }
3482
- h2.wac-h2 {
3483
- font-size: rem(18);
3484
- line-height: rem(21);
3485
- font-weight: 500;
3625
+ h1.wac-h1 {
3626
+ font-size: rem(30);
3627
+ line-height: rem(35);
3628
+ font-weight: 600;
3486
3629
  color: $wac-main-text;
3487
- }.wac-info {
3630
+ }
3631
+ .wac-info {
3488
3632
  display: inline-block;
3489
3633
  width: 40px;
3490
3634
  height: 40px;
@@ -3540,16 +3684,12 @@ h2.wac-h2 {
3540
3684
  }
3541
3685
  }
3542
3686
  }
3543
- h3.wac-h3 {
3544
- font-size: rem(16);
3545
- line-height: rem(19);
3687
+ h2.wac-h2 {
3688
+ font-size: rem(18);
3689
+ line-height: rem(21);
3546
3690
  font-weight: 500;
3547
3691
  color: $wac-main-text;
3548
- &.grey {
3549
- color: $wac-second-color;
3550
- }
3551
- }
3552
- .wac-logo {
3692
+ }.wac-logo {
3553
3693
  &__wrapper {
3554
3694
  svg {
3555
3695
  width: 128px !important;
@@ -3564,9 +3704,9 @@ h3.wac-h3 {
3564
3704
  }
3565
3705
  }
3566
3706
  }
3567
- h4.wac-h4 {
3568
- font-size: rem(14);
3569
- line-height: rem(16);
3707
+ h3.wac-h3 {
3708
+ font-size: rem(16);
3709
+ line-height: rem(19);
3570
3710
  font-weight: 500;
3571
3711
  color: $wac-main-text;
3572
3712
  &.grey {
@@ -3697,6 +3837,15 @@ h4.wac-h4 {
3697
3837
  .wac-free .ps-content > * {
3698
3838
  padding-right: 15px;
3699
3839
  }
3840
+ h4.wac-h4 {
3841
+ font-size: rem(14);
3842
+ line-height: rem(16);
3843
+ font-weight: 500;
3844
+ color: $wac-main-text;
3845
+ &.grey {
3846
+ color: $wac-second-color;
3847
+ }
3848
+ }
3700
3849
  .wac-button {
3701
3850
  @include flexbox();
3702
3851
  @include justify-content(center);
@@ -4389,6 +4538,85 @@ h4.wac-h4 {
4389
4538
  }
4390
4539
  }
4391
4540
  }
4541
+ .wac-header-page {
4542
+ width: 100%;
4543
+ background-color: transparent;
4544
+ position: relative;
4545
+ z-index: 2;
4546
+ &__maxWidth {
4547
+ width: 100%;
4548
+ margin: 0 auto;
4549
+ &__top {
4550
+ width: 100%;
4551
+ display: flex;
4552
+ justify-content: space-between;
4553
+ align-items: center;
4554
+ margin: 0 0 27px;
4555
+ @include media('<tablet') {
4556
+ flex-wrap: wrap;
4557
+ justify-content: flex-start;
4558
+ align-items: flex-start;
4559
+ margin: 0;
4560
+ }
4561
+ &__left {
4562
+ width: auto;
4563
+ display: flex;
4564
+ align-items: center;
4565
+ align-content: center;
4566
+ margin: 0 10px 0 0;
4567
+ @include media('<tablet') {
4568
+ width: 100%;
4569
+ margin: 0 0 30px;
4570
+ }
4571
+ a {
4572
+ display: flex;
4573
+ min-width: 40px;
4574
+ height: 40px;
4575
+ border-radius: 3px;
4576
+ border: 1px solid $wac-border-light;
4577
+ margin: 0 20px 0 0;
4578
+ transition: 0.3s ease;
4579
+ justify-content: center;
4580
+ align-items: center;
4581
+ i {
4582
+ font-size: rem(12);
4583
+ font-weight: 400;
4584
+ color: $wac-second-color;
4585
+ }
4586
+ &:hover,
4587
+ &:focus {
4588
+ background-color: $wizishop-blue;
4589
+ border-color: $wizishop-blue;
4590
+ i {
4591
+ color: $white;
4592
+ }
4593
+ }
4594
+ & + * {
4595
+ white-space: nowrap;
4596
+ }
4597
+ }
4598
+ }
4599
+ &__right {
4600
+ width: 100%;
4601
+ display: flex;
4602
+ justify-content: flex-end;
4603
+ align-items: center;
4604
+ align-content: center;
4605
+ margin: 0 0 0 10px;
4606
+ @include media('<tablet') {
4607
+ width: 100%;
4608
+ margin: 0;
4609
+ justify-content: center;
4610
+ }
4611
+ > * {
4612
+ &:not(:last-child) {
4613
+ margin: 0 20px 0 0;
4614
+ }
4615
+ }
4616
+ }
4617
+ }
4618
+ }
4619
+ }
4392
4620
 
4393
4621
 
4394
4622
  .wac {
@@ -5309,6 +5537,34 @@ div.wac-field-input-search {
5309
5537
  color: $wac-green-color;
5310
5538
  font-size: rem(14);
5311
5539
  }
5540
+ a.wac-link {
5541
+ position: relative;
5542
+ color: $wac-link-color;
5543
+ display: inline-block;
5544
+ transition: 0.3s ease;
5545
+ font-size: rem(14);
5546
+ line-height: rem(16);
5547
+ &:before {
5548
+ content: '';
5549
+ display: block;
5550
+ position: absolute;
5551
+ width: 100%;
5552
+ max-width: 0;
5553
+ height: 1px;
5554
+ border-radius: 3px;
5555
+ background-color: darken($wac-link-color, 15%);
5556
+ left: 0;
5557
+ bottom: -2px;
5558
+ transition: 0.3s ease;
5559
+ }
5560
+ &:hover,
5561
+ &:focus {
5562
+ color: darken($wac-link-color, 15%);
5563
+ &:before {
5564
+ max-width: 100%;
5565
+ }
5566
+ }
5567
+ }
5312
5568
  .wac-dropdown {
5313
5569
  display: inline-block;
5314
5570
  width: 40px;
@@ -5366,159 +5622,99 @@ div.wac-field-input-search {
5366
5622
  span {
5367
5623
  white-space: nowrap;
5368
5624
  }
5369
-
5370
- &:hover {
5371
- background-color: $wac-gray-background;
5372
- transition: background-color 0.3s ease, color 0.3s ease;
5373
- color: $wac-input-active-color;
5374
- }
5375
- }
5376
- }
5377
- }
5378
-
5379
- &:hover {
5380
- .wac-dropdown__wrapper__icon {
5381
- color: $wac-wizishop-blue;
5382
- transform: rotate(90deg);
5383
- transition: color 0.3s ease, transform 0.3s ease;
5384
- }
5385
-
5386
- .wac-dropdown__wrapper__sublevel {
5387
- visibility: visible;
5388
- opacity: 1;
5389
- z-index: 2;
5390
- transition: visibility 0s ease 0s, opacity 0.3s ease .1s;
5391
- }
5392
- }
5393
- }
5394
- }
5395
- .wac-radio {
5396
- .is-checkradio[type='radio'] {
5397
- outline: 0 !important;
5398
- & + label {
5399
- font-size: rem(14);
5400
- line-height: rem(24);
5401
- color: $wac-input-radio-color-label;
5402
- padding-left: 30px;
5403
- padding-right: 5px;
5404
- margin-right: 0;
5405
- outline: 0 !important;
5406
- &:before {
5407
- width: 16px;
5408
- height: 16px;
5409
- border: 1px solid $wac-border-form;
5410
- border-radius: 23px;
5411
- top: 3px;
5412
- }
5413
- &:after {
5414
- width: 20px;
5415
- height: 20px;
5416
- background: $wac-input-active-color;
5417
- top: 1px;
5418
- left: -2px;
5419
- }
5420
- &:before,
5421
- &:after {
5422
- outline: 0 !important;
5423
- }
5424
- &:hover,
5425
- &:focus {
5426
- &:before {
5427
- border-color: $wac-input-active-color !important;
5625
+
5626
+ &:hover {
5627
+ background-color: $wac-gray-background;
5628
+ transition: background-color 0.3s ease, color 0.3s ease;
5629
+ color: $wac-input-active-color;
5630
+ }
5428
5631
  }
5429
5632
  }
5430
5633
  }
5634
+
5431
5635
  &:hover {
5432
- & + label {
5433
- color: $wac-input-radio-color-active-label;
5434
- &:before {
5435
- border-color: $wac-input-active-color !important;
5436
- }
5636
+ .wac-dropdown__wrapper__icon {
5637
+ color: $wac-wizishop-blue;
5638
+ transform: rotate(90deg);
5639
+ transition: color 0.3s ease, transform 0.3s ease;
5437
5640
  }
5438
- &:not([disabled]) {
5439
- & + label {
5440
- &:before {
5441
- border-color: $wac-input-active-color !important;
5442
- }
5443
- }
5641
+
5642
+ .wac-dropdown__wrapper__sublevel {
5643
+ visibility: visible;
5644
+ opacity: 1;
5645
+ z-index: 2;
5646
+ transition: visibility 0s ease 0s, opacity 0.3s ease .1s;
5444
5647
  }
5445
5648
  }
5446
- &:checked + label {
5447
- color: $wac-input-radio-color-active-label;
5448
- &:before {
5449
- border-color: $wac-input-active-color;
5649
+ }
5650
+ }
5651
+ .wac-alert {
5652
+ width: 100%;
5653
+ background-color: transparentize($wac-link-color, 0.85);
5654
+ color: $wac-link-color;
5655
+ border-radius: 3px;
5656
+ display: flex;
5657
+ flex-wrap: nowrap;
5658
+ justify-content: space-between;
5659
+ padding: 20px;
5660
+ &.success {
5661
+ background-color: transparentize($wac-green-color, 0.85);
5662
+ p {
5663
+ color: $wac-p-alert-color-success;
5664
+ > * {
5665
+ color: $wac-p-alert-color-success;
5450
5666
  }
5451
5667
  }
5668
+ i {
5669
+ color: $wac-green-color;
5670
+ }
5452
5671
  }
5453
-
5454
-
5455
- .wac-radio__row {
5456
- min-width: 100%;
5457
- margin: 0 0 7px;
5458
- }
5459
-
5460
- &--nowrap {
5461
- display: inline-block;
5462
- width: auto;
5463
- min-width: 0;
5464
- margin: 0 10px 10px 0;
5465
- .wac-radio {
5466
- &__row {
5467
- width: auto;
5468
- display: inline-block;
5469
- margin: 0;
5672
+ &.warning {
5673
+ background-color: transparentize($wac-primary-button, 0.85);
5674
+ p {
5675
+ color: $wac-p-alert-color-warning;
5676
+ > * {
5677
+ color: $wac-p-alert-color-warning;
5470
5678
  }
5471
5679
  }
5680
+ i {
5681
+ color: $wac-primary-button;
5682
+ }
5472
5683
  }
5473
- & + .wac-radio {
5474
- margin-top: rem(-6);
5475
- }
5476
-
5477
- &.alone {
5478
- label {
5479
- padding-left: 7px;
5480
- margin-right: 0;
5684
+ &.alert {
5685
+ background-color: transparentize($wac-orange-color, 0.85);
5686
+ p {
5687
+ color: $wac-p-alert-color-alert;
5688
+ > * {
5689
+ color: $wac-p-alert-color-alert;
5690
+ }
5691
+ }
5692
+ i {
5693
+ color: $wac-orange-color;
5481
5694
  }
5482
-
5483
5695
  }
5484
-
5485
- &__input {
5696
+ p {
5486
5697
  width: 100%;
5487
- margin: rem(10) 0 0;
5488
- border: none;
5698
+ font-size: rem(14);
5699
+ line-height: rem(25);
5700
+ margin: 0;
5489
5701
  padding: 0;
5490
- input {
5491
- height: 40px;
5492
- max-height: 40px;
5493
- padding: 0 20px;
5494
- line-height: 40px;
5495
- border: 1px solid $wac-border-form;
5496
- border-radius: 3px;
5497
- margin: 0 0 30px!important;
5498
- font-size: rem(14) !important;
5499
- color: $wac-main-text;
5500
- &:focus {
5501
- border-color: $wizishop-blue !important;
5502
- box-shadow: 0px 0px 4px $wac-radio !important;
5503
- &::-webkit-input-placeholder {
5504
- /* Chrome/Opera/Safari */
5505
- opacity: 0;
5506
- }
5507
- &::-moz-placeholder {
5508
- /* Firefox 19+ */
5509
- opacity: 0;
5510
- }
5511
- &:-ms-input-placeholder {
5512
- /* IE 10+ */
5513
- opacity: 0;
5514
- }
5515
- &:-moz-placeholder {
5516
- /* Firefox 18- */
5517
- opacity: 0;
5518
- }
5519
- }
5702
+ color: $wac-p-alert-color-default;
5703
+ > * {
5704
+ color: $wac-p-alert-color-default;
5520
5705
  }
5521
5706
  }
5707
+ i {
5708
+ width: auto;
5709
+ margin: 0 10px 0 0;
5710
+ color: inherit;
5711
+ font-size: rem(14);
5712
+ line-height: rem(25);
5713
+ }
5714
+
5715
+ .wac-button i {
5716
+ color: $wac-white;
5717
+ }
5522
5718
  }
5523
5719
  .wac-multiple-search-plus {
5524
5720
 
@@ -5834,110 +6030,3 @@ div.wac-field-input-search {
5834
6030
  border-radius: 3px;
5835
6031
  }
5836
6032
  }
5837
- a.wac-link {
5838
- position: relative;
5839
- color: $wac-link-color;
5840
- display: inline-block;
5841
- transition: 0.3s ease;
5842
- font-size: rem(14);
5843
- line-height: rem(16);
5844
- &:before {
5845
- content: '';
5846
- display: block;
5847
- position: absolute;
5848
- width: 100%;
5849
- max-width: 0;
5850
- height: 1px;
5851
- border-radius: 3px;
5852
- background-color: darken($wac-link-color, 15%);
5853
- left: 0;
5854
- bottom: -2px;
5855
- transition: 0.3s ease;
5856
- }
5857
- &:hover,
5858
- &:focus {
5859
- color: darken($wac-link-color, 15%);
5860
- &:before {
5861
- max-width: 100%;
5862
- }
5863
- }
5864
- }
5865
- .wac-header-page {
5866
- width: 100%;
5867
- background-color: transparent;
5868
- position: relative;
5869
- z-index: 2;
5870
- &__maxWidth {
5871
- width: 100%;
5872
- margin: 0 auto;
5873
- &__top {
5874
- width: 100%;
5875
- display: flex;
5876
- justify-content: space-between;
5877
- align-items: center;
5878
- margin: 0 0 27px;
5879
- @include media('<tablet') {
5880
- flex-wrap: wrap;
5881
- justify-content: flex-start;
5882
- align-items: flex-start;
5883
- margin: 0;
5884
- }
5885
- &__left {
5886
- width: auto;
5887
- display: flex;
5888
- align-items: center;
5889
- align-content: center;
5890
- margin: 0 10px 0 0;
5891
- @include media('<tablet') {
5892
- width: 100%;
5893
- margin: 0 0 30px;
5894
- }
5895
- a {
5896
- display: flex;
5897
- min-width: 40px;
5898
- height: 40px;
5899
- border-radius: 3px;
5900
- border: 1px solid $wac-border-light;
5901
- margin: 0 20px 0 0;
5902
- transition: 0.3s ease;
5903
- justify-content: center;
5904
- align-items: center;
5905
- i {
5906
- font-size: rem(12);
5907
- font-weight: 400;
5908
- color: $wac-second-color;
5909
- }
5910
- &:hover,
5911
- &:focus {
5912
- background-color: $wizishop-blue;
5913
- border-color: $wizishop-blue;
5914
- i {
5915
- color: $white;
5916
- }
5917
- }
5918
- & + * {
5919
- white-space: nowrap;
5920
- }
5921
- }
5922
- }
5923
- &__right {
5924
- width: 100%;
5925
- display: flex;
5926
- justify-content: flex-end;
5927
- align-items: center;
5928
- align-content: center;
5929
- margin: 0 0 0 10px;
5930
- @include media('<tablet') {
5931
- width: 100%;
5932
- margin: 0;
5933
- justify-content: center;
5934
- }
5935
- > * {
5936
- &:not(:last-child) {
5937
- margin: 0 20px 0 0;
5938
- }
5939
- }
5940
- }
5941
- }
5942
- }
5943
- }