@wizishop/angular-components 0.0.62 → 0.0.63
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 +1082 -993
- package/bundles/wizishop-angular-components.umd.js +68 -1
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +2 -2
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/selected-list/selected-list.component.js +62 -0
- package/esm2015/lib/components/selected-list/shared/selected-list-option.model.js +2 -0
- package/esm2015/lib/components/shared-components.module.js +4 -2
- package/esm2015/public-api.js +3 -1
- package/fesm2015/wizishop-angular-components.js +64 -2
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/selected-list/selected-list.component.d.ts +17 -0
- package/lib/components/selected-list/shared/selected-list-option.model.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/wizishop-angular-components-0.0.63.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.62.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -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-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
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
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
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
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
164
|
+
&:not([disabled]) {
|
|
165
|
+
& + label {
|
|
166
|
+
&:before {
|
|
167
|
+
border-color: $wac-input-active-color !important;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
156
170
|
}
|
|
157
171
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
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
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
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
|
-
|
|
180
|
-
|
|
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
|
-
|
|
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
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
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
|
-
.
|
|
570
|
-
display: block;
|
|
623
|
+
.selected-list {
|
|
571
624
|
width: 100%;
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
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-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
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
|
-
|
|
811
|
-
|
|
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-
|
|
939
|
-
|
|
940
|
-
|
|
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
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
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
|
-
|
|
965
|
-
|
|
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
|
-
|
|
969
|
-
|
|
970
|
-
|
|
1070
|
+
&:hover {
|
|
1071
|
+
background-color: $wac-second-color;
|
|
1072
|
+
transition: background-color 0.3s ease-in-out;
|
|
971
1073
|
|
|
972
|
-
|
|
973
|
-
|
|
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,34 +1753,85 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
1578
1753
|
}
|
|
1579
1754
|
}
|
|
1580
1755
|
}
|
|
1581
|
-
.wac-
|
|
1582
|
-
width:
|
|
1583
|
-
height: 40px;
|
|
1584
|
-
|
|
1756
|
+
.wac-filters {
|
|
1757
|
+
width: 100%;
|
|
1585
1758
|
&__wrapper {
|
|
1586
|
-
@include flexbox();
|
|
1587
|
-
@include justify-content(center);
|
|
1588
|
-
@include align-items(center);
|
|
1589
1759
|
width: 100%;
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1760
|
+
display: flex;
|
|
1761
|
+
flex-wrap: wrap;
|
|
1762
|
+
justify-content: flex-start;
|
|
1763
|
+
align-items: center;
|
|
1764
|
+
align-content: center;
|
|
1765
|
+
button {
|
|
1766
|
+
position: relative;
|
|
1767
|
+
width: auto;
|
|
1768
|
+
display: flex;
|
|
1769
|
+
align-items: center;
|
|
1770
|
+
font-size: rem(14);
|
|
1771
|
+
line-height: rem(16);
|
|
1772
|
+
font-weight: 400;
|
|
1773
|
+
color: $wac-second-color;
|
|
1774
|
+
border: 1px solid $wac-border-light;
|
|
1775
|
+
border-radius: 3px;
|
|
1776
|
+
background: transparent;
|
|
1777
|
+
box-shadow: none;
|
|
1778
|
+
margin-bottom: rem(10);
|
|
1779
|
+
transition: 0.3s ease;
|
|
1780
|
+
cursor: pointer;
|
|
1781
|
+
padding: 12px 20px;
|
|
1782
|
+
.event {
|
|
1783
|
+
position: absolute;
|
|
1784
|
+
top: 0;
|
|
1785
|
+
left: 0;
|
|
1786
|
+
width: 100%;
|
|
1787
|
+
height: 100%;
|
|
1788
|
+
z-index: 2;
|
|
1789
|
+
display: inline-block;
|
|
1790
|
+
}
|
|
1606
1791
|
i {
|
|
1607
|
-
color: $wac-
|
|
1608
|
-
|
|
1792
|
+
color: $wac-main-text;
|
|
1793
|
+
font-size: rem(14);
|
|
1794
|
+
margin: 0 rem(10) 0 0;
|
|
1795
|
+
}
|
|
1796
|
+
&:hover,
|
|
1797
|
+
&:focus,
|
|
1798
|
+
&.active {
|
|
1799
|
+
border-color: $wac-wizishop-blue;
|
|
1800
|
+
color: $wac-main-text;
|
|
1801
|
+
}
|
|
1802
|
+
&:not(:last-child) {
|
|
1803
|
+
margin: 0 rem(10) rem(10) 0;
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
> span {
|
|
1807
|
+
position: relative;
|
|
1808
|
+
color: $wac-link-color;
|
|
1809
|
+
display: inline-block;
|
|
1810
|
+
transition: 0.3s ease;
|
|
1811
|
+
font-size: rem(14);
|
|
1812
|
+
line-height: rem(16);
|
|
1813
|
+
margin: 0 0 0 rem(30);
|
|
1814
|
+
cursor: pointer;
|
|
1815
|
+
z-index: 1;
|
|
1816
|
+
&:before {
|
|
1817
|
+
content: '';
|
|
1818
|
+
display: block;
|
|
1819
|
+
position: absolute;
|
|
1820
|
+
width: 100%;
|
|
1821
|
+
max-width: 0;
|
|
1822
|
+
height: 1px;
|
|
1823
|
+
border-radius: 3px;
|
|
1824
|
+
background-color: darken($wac-link-color, 15%);
|
|
1825
|
+
left: 0;
|
|
1826
|
+
bottom: -2px;
|
|
1827
|
+
transition: 0.3s ease;
|
|
1828
|
+
}
|
|
1829
|
+
&:hover,
|
|
1830
|
+
&:focus {
|
|
1831
|
+
color: darken($wac-link-color, 15%);
|
|
1832
|
+
&:before {
|
|
1833
|
+
max-width: 100%;
|
|
1834
|
+
}
|
|
1609
1835
|
}
|
|
1610
1836
|
}
|
|
1611
1837
|
}
|
|
@@ -1768,251 +1994,6 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
1768
1994
|
}
|
|
1769
1995
|
}
|
|
1770
1996
|
}
|
|
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,
|
|
1813
|
-
&:after {
|
|
1814
|
-
display: block;
|
|
1815
|
-
position: absolute;
|
|
1816
|
-
height: 10px;
|
|
1817
|
-
width: 10px;
|
|
1818
|
-
}
|
|
1819
|
-
}
|
|
1820
|
-
|
|
1821
|
-
span.nwb-loader {
|
|
1822
|
-
&.nwb-is-loading {
|
|
1823
|
-
z-index: 2;
|
|
1824
|
-
opacity: 1;
|
|
1825
|
-
position: absolute;
|
|
1826
|
-
top: -7px;
|
|
1827
|
-
left: -7px;
|
|
1828
|
-
width: calc(100% + 16px) !important;
|
|
1829
|
-
height: calc(100% + 14px) !important;
|
|
1830
|
-
min-width: 12px;
|
|
1831
|
-
min-height: 1em;
|
|
1832
|
-
margin: 0;
|
|
1833
|
-
background-size: auto 70%;
|
|
1834
|
-
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");
|
|
1835
|
-
background-repeat: no-repeat;
|
|
1836
|
-
background-position: center center;
|
|
1837
|
-
}
|
|
1838
|
-
}
|
|
1839
|
-
span {
|
|
1840
|
-
color: inherit;
|
|
1841
|
-
font-weight: 500;
|
|
1842
|
-
&:not(.nwb-loader) {
|
|
1843
|
-
display: inline-block;
|
|
1844
|
-
min-width: 12px;
|
|
1845
|
-
}
|
|
1846
|
-
&.nwb-editing {
|
|
1847
|
-
visibility: hidden;
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
|
-
&.nwb-is-loading {
|
|
1851
|
-
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
1852
|
-
color: rgba(0, 0, 0, 0.4);
|
|
1853
|
-
opacity: 0.25;
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
&.nwbSelect {
|
|
1857
|
-
cursor: pointer;
|
|
1858
|
-
}
|
|
1859
|
-
}
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
1863
|
-
position: absolute;
|
|
1864
|
-
content: '';
|
|
1865
|
-
border-bottom: dashed 1px $wac-primary;
|
|
1866
|
-
width: 100%;
|
|
1867
|
-
bottom: 0;
|
|
1868
|
-
left: 0;
|
|
1869
|
-
}
|
|
1870
|
-
|
|
1871
|
-
.wac-edit-in-place.nwbSelect {
|
|
1872
|
-
&__container {
|
|
1873
|
-
display: flex;
|
|
1874
|
-
flex-direction: column;
|
|
1875
|
-
position: absolute;
|
|
1876
|
-
white-space: nowrap;
|
|
1877
|
-
border: solid 1px rgba(0, 0, 0, 0.2);
|
|
1878
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1879
|
-
border-radius: 3px;
|
|
1880
|
-
top: calc(100% + 7px);
|
|
1881
|
-
|
|
1882
|
-
&::before {
|
|
1883
|
-
position: absolute;
|
|
1884
|
-
top: -7px;
|
|
1885
|
-
left: 9px;
|
|
1886
|
-
content: '';
|
|
1887
|
-
border-left: 7px solid transparent;
|
|
1888
|
-
border-right: 7px solid transparent;
|
|
1889
|
-
border-bottom: 7px solid $wac-edit-in-place-before-border-bottom;
|
|
1890
|
-
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
1891
|
-
display: inline-block;
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
&::after {
|
|
1895
|
-
position: absolute;
|
|
1896
|
-
top: -6px;
|
|
1897
|
-
left: 10px;
|
|
1898
|
-
content: '';
|
|
1899
|
-
border-left: 6px solid transparent;
|
|
1900
|
-
border-right: 6px solid transparent;
|
|
1901
|
-
border-bottom: 6px solid $wac-white;
|
|
1902
|
-
display: inline-block;
|
|
1903
|
-
}
|
|
1904
|
-
|
|
1905
|
-
&__item {
|
|
1906
|
-
border: none;
|
|
1907
|
-
padding: 8px 10px;
|
|
1908
|
-
background-color: $wac-white;
|
|
1909
|
-
cursor: pointer;
|
|
1910
|
-
transition: all 0.3s ease-in-out;
|
|
1911
|
-
z-index: 3;
|
|
1912
|
-
font-size: rem(12);
|
|
1913
|
-
text-align: left;
|
|
1914
|
-
border-radius: 0;
|
|
1915
|
-
|
|
1916
|
-
&:hover {
|
|
1917
|
-
background-color: darken($wac-white, 10%);
|
|
1918
|
-
color: $wac-main-text;
|
|
1919
|
-
transition: all 0.3s ease-in-out;
|
|
1920
|
-
}
|
|
1921
|
-
|
|
1922
|
-
&--selected,
|
|
1923
|
-
&--selected:hover {
|
|
1924
|
-
background-color: $wac-wizishop-blue;
|
|
1925
|
-
color: $wac-white;
|
|
1926
|
-
transition: all 0.3s ease-in-out;
|
|
1927
|
-
}
|
|
1928
|
-
}
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
&__background {
|
|
1932
|
-
position: fixed;
|
|
1933
|
-
top: 0;
|
|
1934
|
-
left: 0;
|
|
1935
|
-
width: 100vw;
|
|
1936
|
-
height: 100vh;
|
|
1937
|
-
z-index: 2;
|
|
1938
|
-
}
|
|
1939
|
-
}
|
|
1940
|
-
.wac-tab {
|
|
1941
|
-
&__wrapper {
|
|
1942
|
-
position: relative;
|
|
1943
|
-
@include flexbox();
|
|
1944
|
-
margin-bottom: 30px;
|
|
1945
|
-
|
|
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;
|
|
1959
|
-
}
|
|
1960
|
-
|
|
1961
|
-
&: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;
|
|
1970
|
-
}
|
|
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;
|
|
1978
|
-
}
|
|
1979
|
-
}
|
|
1980
|
-
}
|
|
1981
|
-
}
|
|
1982
|
-
|
|
1983
|
-
&--underline {
|
|
1984
|
-
.wac-tab__wrapper:before {
|
|
1985
|
-
position: absolute;
|
|
1986
|
-
width: 100%;
|
|
1987
|
-
height: 1px;
|
|
1988
|
-
bottom: -5px;
|
|
1989
|
-
left: 0;
|
|
1990
|
-
content: '';
|
|
1991
|
-
background-color: $wac-border-form;
|
|
1992
|
-
}
|
|
1993
|
-
}
|
|
1994
|
-
|
|
1995
|
-
&--button {
|
|
1996
|
-
.wac-tab__wrapper__tab {
|
|
1997
|
-
background-color: $wac-button-tab-background;
|
|
1998
|
-
padding: 12px 20px;
|
|
1999
|
-
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;
|
|
2009
|
-
}
|
|
2010
|
-
&:after {
|
|
2011
|
-
display: none;
|
|
2012
|
-
}
|
|
2013
|
-
}
|
|
2014
|
-
}
|
|
2015
|
-
}
|
|
2016
1997
|
.wac-free-popin {
|
|
2017
1998
|
height: 100%;
|
|
2018
1999
|
width: 100%;
|
|
@@ -2153,6 +2134,109 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2153
2134
|
.wac-free-popin .ps-content > * {
|
|
2154
2135
|
padding-right: 15px;
|
|
2155
2136
|
}
|
|
2137
|
+
.wac-tab {
|
|
2138
|
+
&__wrapper {
|
|
2139
|
+
position: relative;
|
|
2140
|
+
@include flexbox();
|
|
2141
|
+
margin-bottom: 30px;
|
|
2142
|
+
|
|
2143
|
+
&__tab {
|
|
2144
|
+
position: relative;
|
|
2145
|
+
font-size: 14px;
|
|
2146
|
+
line-height: 25px;
|
|
2147
|
+
color: $wac-secondary-color;
|
|
2148
|
+
|
|
2149
|
+
&:hover {
|
|
2150
|
+
color: $wac-main-text;
|
|
2151
|
+
transition: color 0.3s ease-in-out;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
&:not(:last-child) {
|
|
2155
|
+
margin-right: 30px;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
&:after {
|
|
2159
|
+
position: absolute;
|
|
2160
|
+
width: 0;
|
|
2161
|
+
height: 2px;
|
|
2162
|
+
bottom: -5px;
|
|
2163
|
+
left: 0;
|
|
2164
|
+
content: '';
|
|
2165
|
+
background-color: $wac-input-active-color;
|
|
2166
|
+
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
2167
|
+
}
|
|
2168
|
+
|
|
2169
|
+
&--selected {
|
|
2170
|
+
color: $wac-main-text;
|
|
2171
|
+
|
|
2172
|
+
&:after {
|
|
2173
|
+
width: 100%;
|
|
2174
|
+
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
2175
|
+
}
|
|
2176
|
+
}
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
&--underline {
|
|
2181
|
+
.wac-tab__wrapper:before {
|
|
2182
|
+
position: absolute;
|
|
2183
|
+
width: 100%;
|
|
2184
|
+
height: 1px;
|
|
2185
|
+
bottom: -5px;
|
|
2186
|
+
left: 0;
|
|
2187
|
+
content: '';
|
|
2188
|
+
background-color: $wac-border-form;
|
|
2189
|
+
}
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
&--button {
|
|
2193
|
+
.wac-tab__wrapper__tab {
|
|
2194
|
+
background-color: $wac-button-tab-background;
|
|
2195
|
+
padding: 12px 20px;
|
|
2196
|
+
font-size: rem(14);
|
|
2197
|
+
line-height: rem(16);
|
|
2198
|
+
white-space: nowrap;
|
|
2199
|
+
color: $second-color;
|
|
2200
|
+
margin: 0 rem(2) 0 0;
|
|
2201
|
+
border-radius: 3px;
|
|
2202
|
+
transition: .3s ease;
|
|
2203
|
+
&--selected, &:hover, &:focus {
|
|
2204
|
+
background-color: $wac-wizishop-blue;
|
|
2205
|
+
color: $white;
|
|
2206
|
+
}
|
|
2207
|
+
&:after {
|
|
2208
|
+
display: none;
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2212
|
+
}
|
|
2213
|
+
.wac-image {
|
|
2214
|
+
width: 60px;
|
|
2215
|
+
height: 60px;
|
|
2216
|
+
|
|
2217
|
+
&__wrapper {
|
|
2218
|
+
@include flexbox();
|
|
2219
|
+
@include justify-content(center);
|
|
2220
|
+
@include align-items(center);
|
|
2221
|
+
width: 100%;
|
|
2222
|
+
height: 100%;
|
|
2223
|
+
border-radius: 3px;
|
|
2224
|
+
border: 1px solid $wac-border-light;
|
|
2225
|
+
background-position: center;
|
|
2226
|
+
background-size: contain;
|
|
2227
|
+
background-repeat: no-repeat;
|
|
2228
|
+
|
|
2229
|
+
&.empty {
|
|
2230
|
+
background-color: $wac-gray-background;
|
|
2231
|
+
}
|
|
2232
|
+
|
|
2233
|
+
i {
|
|
2234
|
+
color: $wac-border-form;
|
|
2235
|
+
font-size: 25px;
|
|
2236
|
+
line-height: 23px;
|
|
2237
|
+
}
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2156
2240
|
.wac-table {
|
|
2157
2241
|
width: 100%;
|
|
2158
2242
|
|
|
@@ -2295,30 +2379,35 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2295
2379
|
}
|
|
2296
2380
|
}
|
|
2297
2381
|
}
|
|
2298
|
-
.wac-
|
|
2299
|
-
|
|
2300
|
-
|
|
2382
|
+
.wac-label {
|
|
2383
|
+
@include flexbox();
|
|
2384
|
+
background-color: $wac-gray-background;
|
|
2385
|
+
border-radius: 3px;
|
|
2386
|
+
border: 1px solid $wac-gray-background;
|
|
2387
|
+
transition: border-color 0.3s ease-in-out;
|
|
2301
2388
|
|
|
2302
2389
|
&__wrapper {
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
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
|
-
}
|
|
2390
|
+
padding: 7.5px 13px;
|
|
2391
|
+
font-size: 14px;
|
|
2392
|
+
line-height: 16px;
|
|
2393
|
+
color: $wac-second-color;
|
|
2317
2394
|
|
|
2318
2395
|
i {
|
|
2319
|
-
|
|
2320
|
-
font-size:
|
|
2396
|
+
margin-left: 10px;
|
|
2397
|
+
font-size: 12px;
|
|
2321
2398
|
line-height: 23px;
|
|
2399
|
+
color: $wac-border-form;
|
|
2400
|
+
transition: color 0.3s ease-in-out;
|
|
2401
|
+
}
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
&:hover {
|
|
2405
|
+
border-color: $wac-input-border;
|
|
2406
|
+
transition: border-color 0.3s ease-in-out;
|
|
2407
|
+
|
|
2408
|
+
.wac-label__wrapper i {
|
|
2409
|
+
color: $wac-second-color;
|
|
2410
|
+
transition: color 0.3s ease-in-out;
|
|
2322
2411
|
}
|
|
2323
2412
|
}
|
|
2324
2413
|
}
|
|
@@ -2428,68 +2517,6 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2428
2517
|
}
|
|
2429
2518
|
}
|
|
2430
2519
|
}
|
|
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
2520
|
.wac-loader {
|
|
2494
2521
|
&.is-small {
|
|
2495
2522
|
position: absolute;
|
|
@@ -2554,98 +2581,48 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2554
2581
|
border-bottom-color: $wac-color-loader2;
|
|
2555
2582
|
}
|
|
2556
2583
|
|
|
2557
|
-
div:hover {
|
|
2558
|
-
animation-play-state: paused;
|
|
2559
|
-
}
|
|
2560
|
-
|
|
2561
|
-
.loader,
|
|
2562
|
-
.loader * {
|
|
2563
|
-
will-change: transform;
|
|
2564
|
-
}
|
|
2565
|
-
|
|
2566
|
-
p {
|
|
2567
|
-
margin-top: -50px;
|
|
2568
|
-
font-weight: 500;
|
|
2569
|
-
}
|
|
2570
|
-
}
|
|
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
|
-
}
|
|
2614
|
-
}
|
|
2615
|
-
|
|
2616
|
-
.input:focus,
|
|
2617
|
-
.input.is-focused,
|
|
2618
|
-
.input:active,
|
|
2619
|
-
.input.is-active {
|
|
2620
|
-
border-color: $wac-wizishop-blue;
|
|
2621
|
-
}
|
|
2622
|
-
|
|
2623
|
-
.control > label {
|
|
2624
|
-
font-size: rem(14);
|
|
2625
|
-
padding: 0 0 rem(10);
|
|
2626
|
-
display: inline-block;
|
|
2584
|
+
div:hover {
|
|
2585
|
+
animation-play-state: paused;
|
|
2627
2586
|
}
|
|
2628
2587
|
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
color: $wac-secondary-text;
|
|
2633
|
-
position: absolute;
|
|
2634
|
-
bottom: -25px;
|
|
2635
|
-
|
|
2636
|
-
left: 0;
|
|
2588
|
+
.loader,
|
|
2589
|
+
.loader * {
|
|
2590
|
+
will-change: transform;
|
|
2637
2591
|
}
|
|
2638
2592
|
|
|
2639
|
-
|
|
2593
|
+
p {
|
|
2594
|
+
margin-top: -50px;
|
|
2595
|
+
font-weight: 500;
|
|
2596
|
+
}
|
|
2597
|
+
}
|
|
2598
|
+
.wac-text {
|
|
2599
|
+
font-size: rem(14);
|
|
2600
|
+
line-height: rem(25);
|
|
2601
|
+
color: $wac-main-text;
|
|
2602
|
+
margin: 0 0 rem(30);
|
|
2603
|
+
&.grey {
|
|
2604
|
+
color: $wac-second-color;
|
|
2605
|
+
}
|
|
2606
|
+
&.yellow {
|
|
2607
|
+
color: $wac-warning-color;
|
|
2608
|
+
}
|
|
2609
|
+
&.red {
|
|
2610
|
+
color: $wac-primary;
|
|
2611
|
+
}
|
|
2612
|
+
&.label {
|
|
2613
|
+
color: $placeholder-color;
|
|
2614
|
+
}
|
|
2615
|
+
&.optional {
|
|
2640
2616
|
font-size: rem(12);
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
right: 0;
|
|
2617
|
+
line-height: rem(23);
|
|
2618
|
+
color: $color-text-grey;
|
|
2619
|
+
font-style: italic;
|
|
2645
2620
|
}
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2621
|
+
p {
|
|
2622
|
+
font: inherit;
|
|
2623
|
+
line-height: inherit;
|
|
2624
|
+
color: inherit;
|
|
2625
|
+
margin: inherit;
|
|
2649
2626
|
}
|
|
2650
2627
|
}
|
|
2651
2628
|
.wac-multiple-search {
|
|
@@ -2895,26 +2872,85 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2895
2872
|
border-radius: 3px;
|
|
2896
2873
|
}
|
|
2897
2874
|
}
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2875
|
+
.wac-text-area {
|
|
2876
|
+
label {
|
|
2877
|
+
font-size: rem(14);
|
|
2878
|
+
color: $wac-main-text;
|
|
2879
|
+
font-weight: 500 !important;
|
|
2880
|
+
margin-bottom: 0;
|
|
2903
2881
|
}
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2882
|
+
textarea:focus {
|
|
2883
|
+
border-color: $wizishop-blue !important;
|
|
2884
|
+
|
|
2885
|
+
+ span {
|
|
2886
|
+
color: $wizishop-blue !important;
|
|
2887
|
+
}
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
textarea.has-help-text {
|
|
2891
|
+
margin-bottom: rem(20) !important;
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
.input,
|
|
2895
|
+
.textarea,
|
|
2896
|
+
.input:focus,
|
|
2897
|
+
.input.is-focused,
|
|
2898
|
+
.input:active,
|
|
2899
|
+
.input.is-active,
|
|
2900
|
+
.textarea:focus,
|
|
2901
|
+
.textarea.is-focused,
|
|
2902
|
+
.textarea:active,
|
|
2903
|
+
.textarea.is-active {
|
|
2904
|
+
font-size: rem(14);
|
|
2905
|
+
color: $wac-main-text;
|
|
2906
|
+
border: rem(1) solid $wac-border-form;
|
|
2907
|
+
box-shadow: none;
|
|
2908
|
+
padding: rem(12) rem(20);
|
|
2909
|
+
border-radius: rem(3);
|
|
2910
|
+
margin-bottom: 0;
|
|
2911
|
+
max-height: rem(80);
|
|
2912
|
+
min-height: rem(80);
|
|
2913
|
+
|
|
2914
|
+
&::placeholder {
|
|
2915
|
+
color: $wac-placeholder;
|
|
2916
|
+
font-weight: 400;
|
|
2916
2917
|
}
|
|
2917
2918
|
}
|
|
2919
|
+
|
|
2920
|
+
.input:focus,
|
|
2921
|
+
.input.is-focused,
|
|
2922
|
+
.input:active,
|
|
2923
|
+
.input.is-active {
|
|
2924
|
+
border-color: $wac-wizishop-blue;
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
.control > label {
|
|
2928
|
+
font-size: rem(14);
|
|
2929
|
+
padding: 0 0 rem(10);
|
|
2930
|
+
display: inline-block;
|
|
2931
|
+
}
|
|
2932
|
+
|
|
2933
|
+
&__info,
|
|
2934
|
+
&__error {
|
|
2935
|
+
font-size: rem(12);
|
|
2936
|
+
color: $wac-secondary-text;
|
|
2937
|
+
position: absolute;
|
|
2938
|
+
bottom: -25px;
|
|
2939
|
+
|
|
2940
|
+
left: 0;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
&__size {
|
|
2944
|
+
font-size: rem(12);
|
|
2945
|
+
color: $wac-secondary-text;
|
|
2946
|
+
position: absolute;
|
|
2947
|
+
bottom: -25px;
|
|
2948
|
+
right: 0;
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
.icon.is-small.is-right {
|
|
2952
|
+
margin-top: rem(5);
|
|
2953
|
+
}
|
|
2918
2954
|
}
|
|
2919
2955
|
.wac-pagination {
|
|
2920
2956
|
width: 100%;
|
|
@@ -3021,80 +3057,100 @@ span.wac-tooltip {
|
|
|
3021
3057
|
}
|
|
3022
3058
|
}
|
|
3023
3059
|
}
|
|
3024
|
-
.wac-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3060
|
+
span.wac-tooltip {
|
|
3061
|
+
position: relative;
|
|
3062
|
+
padding: 0.5rem;
|
|
3063
|
+
.tooltip-content {
|
|
3064
|
+
display: none;
|
|
3065
|
+
}
|
|
3066
|
+
&:hover {
|
|
3067
|
+
.tooltip-content {
|
|
3068
|
+
position: absolute;
|
|
3069
|
+
width: 500px;
|
|
3070
|
+
background-color: $wac-gray-background;
|
|
3071
|
+
color: $wac-secondary-text;
|
|
3072
|
+
display: block;
|
|
3073
|
+
left: 30px;
|
|
3074
|
+
top: 0;
|
|
3075
|
+
border: 1px solid $wac-border-color;
|
|
3076
|
+
padding: 0.25rem 0.5rem;
|
|
3077
|
+
z-index: 100;
|
|
3078
|
+
}
|
|
3029
3079
|
}
|
|
3030
3080
|
}
|
|
3031
|
-
.wac-
|
|
3081
|
+
.wac-progressBarContent {
|
|
3082
|
+
position: relative;
|
|
3032
3083
|
width: 100%;
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
color: $wac-p-alert-color-success;
|
|
3084
|
+
display: block;
|
|
3085
|
+
.progressBar {
|
|
3086
|
+
position: relative;
|
|
3087
|
+
width: 88%;
|
|
3088
|
+
margin-bottom: 1rem;
|
|
3089
|
+
progress {
|
|
3090
|
+
&.progress {
|
|
3091
|
+
margin-bottom: 0;
|
|
3092
|
+
height: rem(2);
|
|
3093
|
+
&::-webkit-progress-value {
|
|
3094
|
+
transition: width 0.5s ease;
|
|
3095
|
+
}
|
|
3046
3096
|
}
|
|
3047
3097
|
}
|
|
3048
|
-
|
|
3049
|
-
|
|
3098
|
+
span {
|
|
3099
|
+
position: absolute;
|
|
3100
|
+
top: -4px;
|
|
3101
|
+
height: 11px;
|
|
3102
|
+
width: 11px;
|
|
3103
|
+
background-color: $wac-border-color;
|
|
3104
|
+
border-radius: 50%;
|
|
3050
3105
|
}
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
color: $wac-p-alert-color-warning;
|
|
3056
|
-
> * {
|
|
3057
|
-
color: $wac-p-alert-color-warning;
|
|
3106
|
+
.is-danger {
|
|
3107
|
+
background-color: $wac-primary-button;
|
|
3108
|
+
&::-webkit-progress-value {
|
|
3109
|
+
background-color: $wac-primary-button;
|
|
3058
3110
|
}
|
|
3059
3111
|
}
|
|
3060
|
-
|
|
3061
|
-
color: $wac-
|
|
3112
|
+
.is-warning {
|
|
3113
|
+
background-color: $wac-orange-color;
|
|
3114
|
+
&::-webkit-progress-value {
|
|
3115
|
+
background-color: $wac-orange-color;
|
|
3116
|
+
}
|
|
3062
3117
|
}
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
color: $wac-p-alert-color-alert;
|
|
3068
|
-
> * {
|
|
3069
|
-
color: $wac-p-alert-color-alert;
|
|
3118
|
+
.is-success {
|
|
3119
|
+
background-color: $wac-green-color;
|
|
3120
|
+
&::-webkit-progress-value {
|
|
3121
|
+
background-color: $wac-green-color;
|
|
3070
3122
|
}
|
|
3071
3123
|
}
|
|
3072
|
-
|
|
3124
|
+
}
|
|
3125
|
+
.size {
|
|
3126
|
+
display: inline;
|
|
3127
|
+
color: $wac-color-text-grey;
|
|
3128
|
+
position: absolute;
|
|
3129
|
+
right: 0;
|
|
3130
|
+
top: -9px;
|
|
3131
|
+
background: $wac-white;
|
|
3132
|
+
padding-left: 0.875rem;
|
|
3133
|
+
.is-success {
|
|
3134
|
+
color: $wac-green-color;
|
|
3135
|
+
}
|
|
3136
|
+
.is-warning {
|
|
3073
3137
|
color: $wac-orange-color;
|
|
3074
3138
|
}
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3139
|
+
.is-danger {
|
|
3140
|
+
color: $wac-primary-button;
|
|
3141
|
+
}
|
|
3142
|
+
> span {
|
|
3143
|
+
font-size: rem(14) !important;
|
|
3144
|
+
line-height: 1;
|
|
3145
|
+
transform: translateY(-3px);
|
|
3146
|
+
display: inline-block;
|
|
3147
|
+
letter-spacing: 0;
|
|
3148
|
+
strong {
|
|
3149
|
+
letter-spacing: 0;
|
|
3150
|
+
font-weight: 600;
|
|
3151
|
+
}
|
|
3085
3152
|
}
|
|
3086
3153
|
}
|
|
3087
|
-
i {
|
|
3088
|
-
width: auto;
|
|
3089
|
-
margin: 0 10px 0 0;
|
|
3090
|
-
color: inherit;
|
|
3091
|
-
font-size: rem(14);
|
|
3092
|
-
line-height: rem(25);
|
|
3093
|
-
}
|
|
3094
|
-
|
|
3095
|
-
.wac-button i {
|
|
3096
|
-
color: $wac-white;
|
|
3097
|
-
}
|
|
3098
3154
|
}
|
|
3099
3155
|
.wac-upload {
|
|
3100
3156
|
width: auto;
|
|
@@ -3219,25 +3275,11 @@ span.wac-tooltip {
|
|
|
3219
3275
|
}
|
|
3220
3276
|
}
|
|
3221
3277
|
}
|
|
3222
|
-
.wac-wrapper
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
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
|
-
}
|
|
3278
|
+
.wac-wrapper {
|
|
3279
|
+
width: 100%;
|
|
3280
|
+
&.max-width {
|
|
3281
|
+
max-width: 1080px;
|
|
3282
|
+
margin: 0 auto;
|
|
3241
3283
|
}
|
|
3242
3284
|
}
|
|
3243
3285
|
.wac-field-checkbox {
|
|
@@ -3390,101 +3432,203 @@ span.wac-tooltip {
|
|
|
3390
3432
|
}
|
|
3391
3433
|
|
|
3392
3434
|
}
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
color: $wac-main-text;
|
|
3398
|
-
}
|
|
3399
|
-
.wac-filters {
|
|
3400
|
-
width: 100%;
|
|
3401
|
-
&__wrapper {
|
|
3402
|
-
width: 100%;
|
|
3435
|
+
.wac-wrapper-blocs {
|
|
3436
|
+
&.sidebar {
|
|
3437
|
+
width: calc(100% + 30px);
|
|
3438
|
+
transform: translateX(-15px);
|
|
3403
3439
|
display: flex;
|
|
3404
|
-
flex-wrap:
|
|
3405
|
-
|
|
3406
|
-
align-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
position: relative;
|
|
3410
|
-
width: auto;
|
|
3411
|
-
display: flex;
|
|
3412
|
-
align-items: center;
|
|
3413
|
-
font-size: rem(14);
|
|
3414
|
-
line-height: rem(16);
|
|
3415
|
-
font-weight: 400;
|
|
3416
|
-
color: $wac-second-color;
|
|
3417
|
-
border: 1px solid $wac-border-light;
|
|
3418
|
-
border-radius: 3px;
|
|
3419
|
-
background: transparent;
|
|
3420
|
-
box-shadow: none;
|
|
3421
|
-
margin-bottom: rem(10);
|
|
3422
|
-
transition: 0.3s ease;
|
|
3423
|
-
cursor: pointer;
|
|
3424
|
-
padding: 12px 20px;
|
|
3425
|
-
.event {
|
|
3426
|
-
position: absolute;
|
|
3427
|
-
top: 0;
|
|
3428
|
-
left: 0;
|
|
3440
|
+
flex-wrap: nowrap;
|
|
3441
|
+
align-items: flex-start;
|
|
3442
|
+
align-content: flex-start;
|
|
3443
|
+
& > :first-child {
|
|
3444
|
+
@include media('>=desktop') {
|
|
3429
3445
|
width: 100%;
|
|
3430
|
-
height: 100%;
|
|
3431
|
-
z-index: 2;
|
|
3432
|
-
display: inline-block;
|
|
3433
|
-
}
|
|
3434
|
-
i {
|
|
3435
|
-
color: $wac-main-text;
|
|
3436
|
-
font-size: rem(14);
|
|
3437
|
-
margin: 0 rem(10) 0 0;
|
|
3438
|
-
}
|
|
3439
|
-
&:hover,
|
|
3440
|
-
&:focus,
|
|
3441
|
-
&.active {
|
|
3442
|
-
border-color: $wac-wizishop-blue;
|
|
3443
|
-
color: $wac-main-text;
|
|
3444
|
-
}
|
|
3445
|
-
&:not(:last-child) {
|
|
3446
|
-
margin: 0 rem(10) rem(10) 0;
|
|
3447
3446
|
}
|
|
3448
3447
|
}
|
|
3449
|
-
>
|
|
3450
|
-
|
|
3451
|
-
|
|
3448
|
+
& > :last-child:not(:first-child) {
|
|
3449
|
+
min-width: 340px;
|
|
3450
|
+
}
|
|
3451
|
+
& > * {
|
|
3452
|
+
margin: 0 15px;
|
|
3453
|
+
}
|
|
3454
|
+
}
|
|
3455
|
+
}
|
|
3456
|
+
.wac-edit-in-place.nwb-wrapper {
|
|
3457
|
+
display: inline-block;
|
|
3458
|
+
position: relative;
|
|
3459
|
+
width: auto;
|
|
3460
|
+
min-width: 12px;
|
|
3461
|
+
min-height: 1.4em;
|
|
3462
|
+
|
|
3463
|
+
input {
|
|
3464
|
+
font-size: inherit;
|
|
3465
|
+
transition: width 50ms;
|
|
3466
|
+
position: absolute;
|
|
3467
|
+
top: 0;
|
|
3468
|
+
left: -5px;
|
|
3469
|
+
width: calc(100% + 16px) !important;
|
|
3470
|
+
height: calc(100% + 14px) !important;
|
|
3471
|
+
padding: 5px;
|
|
3472
|
+
z-index: 1;
|
|
3473
|
+
margin: 0;
|
|
3474
|
+
outline: none !important;
|
|
3475
|
+
border: 1px solid $wac-edit-in-place-border;
|
|
3476
|
+
background: inherit;
|
|
3477
|
+
transform: translateY(-17%);
|
|
3478
|
+
background-color: $wac-edit-in-place-background;
|
|
3479
|
+
|
|
3480
|
+
&.nwb-editable {
|
|
3481
|
+
text-decoration: none;
|
|
3482
|
+
color: inherit;
|
|
3483
|
+
border: none;
|
|
3484
|
+
cursor: pointer;
|
|
3485
|
+
height: 26px;
|
|
3486
|
+
}
|
|
3487
|
+
|
|
3488
|
+
&.nwb-editing {
|
|
3489
|
+
color: $wac-edit-in-place-border;
|
|
3490
|
+
}
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
div.select {
|
|
3494
|
+
position: absolute;
|
|
3495
|
+
left: 0;
|
|
3496
|
+
|
|
3497
|
+
&:before,
|
|
3498
|
+
&:after {
|
|
3499
|
+
display: block;
|
|
3500
|
+
position: absolute;
|
|
3501
|
+
height: 10px;
|
|
3502
|
+
width: 10px;
|
|
3503
|
+
}
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
span.nwb-loader {
|
|
3507
|
+
&.nwb-is-loading {
|
|
3508
|
+
z-index: 2;
|
|
3509
|
+
opacity: 1;
|
|
3510
|
+
position: absolute;
|
|
3511
|
+
top: -7px;
|
|
3512
|
+
left: -7px;
|
|
3513
|
+
width: calc(100% + 16px) !important;
|
|
3514
|
+
height: calc(100% + 14px) !important;
|
|
3515
|
+
min-width: 12px;
|
|
3516
|
+
min-height: 1em;
|
|
3517
|
+
margin: 0;
|
|
3518
|
+
background-size: auto 70%;
|
|
3519
|
+
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");
|
|
3520
|
+
background-repeat: no-repeat;
|
|
3521
|
+
background-position: center center;
|
|
3522
|
+
}
|
|
3523
|
+
}
|
|
3524
|
+
span {
|
|
3525
|
+
color: inherit;
|
|
3526
|
+
font-weight: 500;
|
|
3527
|
+
&:not(.nwb-loader) {
|
|
3528
|
+
display: inline-block;
|
|
3529
|
+
min-width: 12px;
|
|
3530
|
+
}
|
|
3531
|
+
&.nwb-editing {
|
|
3532
|
+
visibility: hidden;
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
&.nwb-is-loading {
|
|
3536
|
+
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
3537
|
+
color: rgba(0, 0, 0, 0.4);
|
|
3538
|
+
opacity: 0.25;
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
&.nwbSelect {
|
|
3542
|
+
cursor: pointer;
|
|
3543
|
+
}
|
|
3544
|
+
}
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
3548
|
+
position: absolute;
|
|
3549
|
+
content: '';
|
|
3550
|
+
border-bottom: dashed 1px $wac-primary;
|
|
3551
|
+
width: 100%;
|
|
3552
|
+
bottom: 0;
|
|
3553
|
+
left: 0;
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
.wac-edit-in-place.nwbSelect {
|
|
3557
|
+
&__container {
|
|
3558
|
+
display: flex;
|
|
3559
|
+
flex-direction: column;
|
|
3560
|
+
position: absolute;
|
|
3561
|
+
white-space: nowrap;
|
|
3562
|
+
border: solid 1px rgba(0, 0, 0, 0.2);
|
|
3563
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
3564
|
+
border-radius: 3px;
|
|
3565
|
+
top: calc(100% + 7px);
|
|
3566
|
+
|
|
3567
|
+
&::before {
|
|
3568
|
+
position: absolute;
|
|
3569
|
+
top: -7px;
|
|
3570
|
+
left: 9px;
|
|
3571
|
+
content: '';
|
|
3572
|
+
border-left: 7px solid transparent;
|
|
3573
|
+
border-right: 7px solid transparent;
|
|
3574
|
+
border-bottom: 7px solid $wac-edit-in-place-before-border-bottom;
|
|
3575
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
3576
|
+
display: inline-block;
|
|
3577
|
+
}
|
|
3578
|
+
|
|
3579
|
+
&::after {
|
|
3580
|
+
position: absolute;
|
|
3581
|
+
top: -6px;
|
|
3582
|
+
left: 10px;
|
|
3583
|
+
content: '';
|
|
3584
|
+
border-left: 6px solid transparent;
|
|
3585
|
+
border-right: 6px solid transparent;
|
|
3586
|
+
border-bottom: 6px solid $wac-white;
|
|
3452
3587
|
display: inline-block;
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
&__item {
|
|
3591
|
+
border: none;
|
|
3592
|
+
padding: 8px 10px;
|
|
3593
|
+
background-color: $wac-white;
|
|
3457
3594
|
cursor: pointer;
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
left: 0;
|
|
3469
|
-
bottom: -2px;
|
|
3470
|
-
transition: 0.3s ease;
|
|
3595
|
+
transition: all 0.3s ease-in-out;
|
|
3596
|
+
z-index: 3;
|
|
3597
|
+
font-size: rem(12);
|
|
3598
|
+
text-align: left;
|
|
3599
|
+
border-radius: 0;
|
|
3600
|
+
|
|
3601
|
+
&:hover {
|
|
3602
|
+
background-color: darken($wac-white, 10%);
|
|
3603
|
+
color: $wac-main-text;
|
|
3604
|
+
transition: all 0.3s ease-in-out;
|
|
3471
3605
|
}
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3606
|
+
|
|
3607
|
+
&--selected,
|
|
3608
|
+
&--selected:hover {
|
|
3609
|
+
background-color: $wac-wizishop-blue;
|
|
3610
|
+
color: $wac-white;
|
|
3611
|
+
transition: all 0.3s ease-in-out;
|
|
3478
3612
|
}
|
|
3479
3613
|
}
|
|
3480
3614
|
}
|
|
3615
|
+
|
|
3616
|
+
&__background {
|
|
3617
|
+
position: fixed;
|
|
3618
|
+
top: 0;
|
|
3619
|
+
left: 0;
|
|
3620
|
+
width: 100vw;
|
|
3621
|
+
height: 100vh;
|
|
3622
|
+
z-index: 2;
|
|
3623
|
+
}
|
|
3481
3624
|
}
|
|
3482
|
-
|
|
3483
|
-
font-size: rem(
|
|
3484
|
-
line-height: rem(
|
|
3485
|
-
font-weight:
|
|
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
|
-
}
|
|
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
|
-
|
|
3544
|
-
font-size: rem(
|
|
3545
|
-
line-height: rem(
|
|
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
|
-
|
|
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
|
-
|
|
3568
|
-
font-size: rem(
|
|
3569
|
-
line-height: rem(
|
|
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
|
-
|
|
5433
|
-
color: $wac-
|
|
5434
|
-
|
|
5435
|
-
|
|
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
|
-
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
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
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5449
|
-
|
|
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
|
-
|
|
5456
|
-
|
|
5457
|
-
|
|
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
|
-
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
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
|
-
|
|
5488
|
-
|
|
5698
|
+
font-size: rem(14);
|
|
5699
|
+
line-height: rem(25);
|
|
5700
|
+
margin: 0;
|
|
5489
5701
|
padding: 0;
|
|
5490
|
-
|
|
5491
|
-
|
|
5492
|
-
|
|
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
|
-
}
|