@wizishop/angular-components 0.0.184 → 0.0.187
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 +628 -546
- package/bundles/wizishop-angular-components.umd.js +62 -5
- package/bundles/wizishop-angular-components.umd.js.map +1 -1
- package/bundles/wizishop-angular-components.umd.min.js +1 -1
- package/bundles/wizishop-angular-components.umd.min.js.map +1 -1
- package/esm2015/lib/components/block-with-checkbox/block-with-checkbox.component.js +2 -2
- package/esm2015/lib/components/content-with-buttons/content-with-buttons.component.js +43 -5
- package/esm2015/lib/components/link/link.component.js +4 -2
- package/esm2015/lib/components/shared-components.module.js +4 -2
- package/esm2015/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.js +14 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/wizishop-angular-components.js +61 -7
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/content-with-buttons/content-with-buttons.component.d.ts +19 -3
- package/lib/components/link/link.component.d.ts +1 -0
- package/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/wizishop-angular-components-0.0.187.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.184.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -142,129 +142,79 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
142
142
|
.wac-table__head__cell--checkbox .wac-field-checkbox__row {
|
|
143
143
|
transform: translateX(5px);
|
|
144
144
|
}
|
|
145
|
-
.wac-
|
|
146
|
-
|
|
145
|
+
.wac-progressBarContent {
|
|
146
|
+
position: relative;
|
|
147
147
|
width: 100%;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
position: absolute;
|
|
162
|
-
left: 50%;
|
|
163
|
-
top: 50%;
|
|
164
|
-
transform: translate(-50%, -50%);
|
|
165
|
-
padding: 50px;
|
|
166
|
-
z-index: 3;
|
|
167
|
-
max-height: 90vh;
|
|
168
|
-
display: flex;
|
|
169
|
-
flex-wrap: nowrap;
|
|
170
|
-
flex-direction: column;
|
|
171
|
-
justify-content: center;
|
|
172
|
-
align-items: center;
|
|
173
|
-
width: 100%;
|
|
174
|
-
max-width: 575px;
|
|
175
|
-
overflow: hidden;
|
|
176
|
-
|
|
177
|
-
&__content {
|
|
178
|
-
position: relative;
|
|
179
|
-
overflow: hidden;
|
|
180
|
-
display: flex;
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
div:not([class]) {
|
|
185
|
-
width: 100%;
|
|
186
|
-
margin: 0 0 20px;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
> * {
|
|
190
|
-
width: 100%;
|
|
148
|
+
display: block;
|
|
149
|
+
.progressBar {
|
|
150
|
+
position: relative;
|
|
151
|
+
width: 88%;
|
|
152
|
+
margin-bottom: 1rem;
|
|
153
|
+
progress {
|
|
154
|
+
&.progress {
|
|
155
|
+
margin-bottom: 0;
|
|
156
|
+
height: rem(2);
|
|
157
|
+
&::-webkit-progress-value {
|
|
158
|
+
transition: width 0.5s ease;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
191
161
|
}
|
|
192
|
-
|
|
193
|
-
&__button-close {
|
|
162
|
+
span {
|
|
194
163
|
position: absolute;
|
|
195
|
-
top:
|
|
196
|
-
|
|
197
|
-
width:
|
|
198
|
-
|
|
164
|
+
top: -4px;
|
|
165
|
+
height: 11px;
|
|
166
|
+
width: 11px;
|
|
167
|
+
background-color: $wac-border-color;
|
|
199
168
|
border-radius: 50%;
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
i {
|
|
206
|
-
color: $wac-second-color;
|
|
207
|
-
font-size: 14px;
|
|
208
|
-
font-weight: 400;
|
|
169
|
+
}
|
|
170
|
+
.is-danger {
|
|
171
|
+
background-color: $wac-primary-button;
|
|
172
|
+
&::-webkit-progress-value {
|
|
173
|
+
background-color: $wac-primary-button;
|
|
209
174
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
175
|
+
}
|
|
176
|
+
.is-warning {
|
|
177
|
+
background-color: $wac-orange-color;
|
|
178
|
+
&::-webkit-progress-value {
|
|
179
|
+
background-color: $wac-orange-color;
|
|
215
180
|
}
|
|
216
181
|
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
182
|
+
.is-success {
|
|
183
|
+
background-color: $wac-green-color;
|
|
184
|
+
&::-webkit-progress-value {
|
|
185
|
+
background-color: $wac-green-color;
|
|
186
|
+
}
|
|
222
187
|
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
188
|
+
}
|
|
189
|
+
.size {
|
|
190
|
+
display: inline;
|
|
191
|
+
color: $wac-color-text-grey;
|
|
192
|
+
position: absolute;
|
|
193
|
+
right: 0;
|
|
194
|
+
top: -9px;
|
|
195
|
+
background: $wac-white;
|
|
196
|
+
padding-left: 0.875rem;
|
|
197
|
+
.is-success {
|
|
198
|
+
color: $wac-green-color;
|
|
231
199
|
}
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
font-size: rem(14);
|
|
235
|
-
line-height: rem(25);
|
|
236
|
-
color: $wac-second-color;
|
|
237
|
-
width: 100%;
|
|
238
|
-
text-align: center;
|
|
239
|
-
padding: 0;
|
|
240
|
-
margin: 0;
|
|
200
|
+
.is-warning {
|
|
201
|
+
color: $wac-orange-color;
|
|
241
202
|
}
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
203
|
+
.is-danger {
|
|
204
|
+
color: $wac-primary-button;
|
|
205
|
+
}
|
|
206
|
+
> span {
|
|
207
|
+
font-size: rem(14) !important;
|
|
208
|
+
line-height: 1;
|
|
209
|
+
transform: translateY(-3px);
|
|
210
|
+
display: inline-block;
|
|
211
|
+
letter-spacing: 0;
|
|
212
|
+
strong {
|
|
213
|
+
letter-spacing: 0;
|
|
214
|
+
font-weight: 600;
|
|
252
215
|
}
|
|
253
216
|
}
|
|
254
217
|
}
|
|
255
|
-
&__background {
|
|
256
|
-
z-index: 1;
|
|
257
|
-
position: absolute;
|
|
258
|
-
top: 0;
|
|
259
|
-
left: 0;
|
|
260
|
-
width: 100%;
|
|
261
|
-
height: 100%;
|
|
262
|
-
background-color: transparentize($wac-main-text, .5);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.wac-free .ps-content > * {
|
|
267
|
-
padding-right: 15px;
|
|
268
218
|
}
|
|
269
219
|
.wac-radio {
|
|
270
220
|
.is-checkradio[type='radio'] {
|
|
@@ -2170,6 +2120,51 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2170
2120
|
}
|
|
2171
2121
|
}
|
|
2172
2122
|
}
|
|
2123
|
+
.wac-content-with-buttons {
|
|
2124
|
+
display: flex;
|
|
2125
|
+
align-items: center;
|
|
2126
|
+
width: 100%;
|
|
2127
|
+
@include media('<tablet') {
|
|
2128
|
+
flex-direction: column;
|
|
2129
|
+
justify-content: flex-start;
|
|
2130
|
+
align-items: flex-start;
|
|
2131
|
+
}
|
|
2132
|
+
&__text {
|
|
2133
|
+
width: 100%;
|
|
2134
|
+
&__count {
|
|
2135
|
+
margin: 10px 0 0;
|
|
2136
|
+
width: 100%;
|
|
2137
|
+
display: flex;
|
|
2138
|
+
align-items: flex-end;
|
|
2139
|
+
justify-content: flex-start;
|
|
2140
|
+
> span {
|
|
2141
|
+
&:first-child {
|
|
2142
|
+
font-size: rem(12);
|
|
2143
|
+
font-style: italic;
|
|
2144
|
+
color: $wac-color-text-grey;
|
|
2145
|
+
line-height: rem(16);
|
|
2146
|
+
display: inline-block;
|
|
2147
|
+
transform: translateY(-3px);
|
|
2148
|
+
}
|
|
2149
|
+
&:last-child {
|
|
2150
|
+
display: inline-block;
|
|
2151
|
+
margin: 0 0 0 20px;
|
|
2152
|
+
}
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
}
|
|
2156
|
+
&__cta {
|
|
2157
|
+
display: flex;
|
|
2158
|
+
align-items: center;
|
|
2159
|
+
width: auto;
|
|
2160
|
+
> div {
|
|
2161
|
+
margin: 0 0 0 20px;
|
|
2162
|
+
}
|
|
2163
|
+
@include media('<tablet') {
|
|
2164
|
+
margin: 15px 0 0;
|
|
2165
|
+
}
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2173
2168
|
|
|
2174
2169
|
.wac-switch {
|
|
2175
2170
|
input {
|
|
@@ -2794,7 +2789,9 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2794
2789
|
}
|
|
2795
2790
|
}
|
|
2796
2791
|
.subtitle {
|
|
2792
|
+
padding: 0 0 0 60px;
|
|
2797
2793
|
.center & {
|
|
2794
|
+
padding: 0;
|
|
2798
2795
|
display: flex;
|
|
2799
2796
|
justify-content: center;
|
|
2800
2797
|
}
|
|
@@ -2939,10 +2936,9 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2939
2936
|
}
|
|
2940
2937
|
}
|
|
2941
2938
|
}
|
|
2942
|
-
.wac-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
height: 40px;
|
|
2939
|
+
.wac-image {
|
|
2940
|
+
width: 60px;
|
|
2941
|
+
height: 60px;
|
|
2946
2942
|
|
|
2947
2943
|
&__wrapper {
|
|
2948
2944
|
@include flexbox();
|
|
@@ -2950,48 +2946,20 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2950
2946
|
@include align-items(center);
|
|
2951
2947
|
width: 100%;
|
|
2952
2948
|
height: 100%;
|
|
2953
|
-
|
|
2949
|
+
border-radius: 3px;
|
|
2950
|
+
border: 1px solid $wac-border-light;
|
|
2951
|
+
background-position: center;
|
|
2952
|
+
background-size: contain;
|
|
2953
|
+
background-repeat: no-repeat;
|
|
2954
2954
|
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
line-height: 25px;
|
|
2958
|
-
color: $wac-second-color;
|
|
2959
|
-
transition: color 0.3s ease-in-out;
|
|
2955
|
+
&.empty {
|
|
2956
|
+
background-color: $wac-gray-background;
|
|
2960
2957
|
}
|
|
2961
2958
|
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
left: 100%;
|
|
2967
|
-
z-index: -1;
|
|
2968
|
-
opacity: 0;
|
|
2969
|
-
background-color: $wac-white;
|
|
2970
|
-
border-radius: rem(3);
|
|
2971
|
-
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
2972
|
-
visibility: hidden;
|
|
2973
|
-
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
2974
|
-
|
|
2975
|
-
&__container {
|
|
2976
|
-
padding: 15px 20px;
|
|
2977
|
-
font-size: rem(14);
|
|
2978
|
-
line-height: rem(25);
|
|
2979
|
-
color: $wac-second-color;
|
|
2980
|
-
}
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
|
-
&:hover {
|
|
2984
|
-
i {
|
|
2985
|
-
color: $wac-input-active-color;
|
|
2986
|
-
transition: color 0.3s ease-in-out;
|
|
2987
|
-
}
|
|
2988
|
-
|
|
2989
|
-
.wac-info__wrapper__sublevel {
|
|
2990
|
-
visibility: visible;
|
|
2991
|
-
opacity: 1;
|
|
2992
|
-
z-index: 2;
|
|
2993
|
-
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
2994
|
-
}
|
|
2959
|
+
i {
|
|
2960
|
+
color: $wac-border-form;
|
|
2961
|
+
font-size: 25px;
|
|
2962
|
+
line-height: 23px;
|
|
2995
2963
|
}
|
|
2996
2964
|
}
|
|
2997
2965
|
}
|
|
@@ -3565,79 +3533,73 @@ span.wac-tooltip {
|
|
|
3565
3533
|
}
|
|
3566
3534
|
}
|
|
3567
3535
|
}
|
|
3568
|
-
.wac-
|
|
3569
|
-
position: relative;
|
|
3536
|
+
.wac-alert {
|
|
3570
3537
|
width: 100%;
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3538
|
+
background-color: transparentize($wac-link-color, 0.85);
|
|
3539
|
+
color: $wac-link-color;
|
|
3540
|
+
border-radius: 3px;
|
|
3541
|
+
display: flex;
|
|
3542
|
+
flex-wrap: nowrap;
|
|
3543
|
+
justify-content: space-between;
|
|
3544
|
+
padding: 20px;
|
|
3545
|
+
&.success {
|
|
3546
|
+
background-color: transparentize($wac-green-color, 0.85);
|
|
3547
|
+
p {
|
|
3548
|
+
color: $wac-p-alert-color-success;
|
|
3549
|
+
> * {
|
|
3550
|
+
color: $wac-p-alert-color-success;
|
|
3583
3551
|
}
|
|
3584
3552
|
}
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
top: -4px;
|
|
3588
|
-
height: 11px;
|
|
3589
|
-
width: 11px;
|
|
3590
|
-
background-color: $wac-border-color;
|
|
3591
|
-
border-radius: 50%;
|
|
3592
|
-
}
|
|
3593
|
-
.is-danger {
|
|
3594
|
-
background-color: $wac-primary-button;
|
|
3595
|
-
&::-webkit-progress-value {
|
|
3596
|
-
background-color: $wac-primary-button;
|
|
3597
|
-
}
|
|
3553
|
+
i {
|
|
3554
|
+
color: $wac-green-color;
|
|
3598
3555
|
}
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3556
|
+
}
|
|
3557
|
+
&.warning {
|
|
3558
|
+
background-color: transparentize($wac-primary-button, 0.85);
|
|
3559
|
+
p {
|
|
3560
|
+
color: $wac-p-alert-color-warning;
|
|
3561
|
+
> * {
|
|
3562
|
+
color: $wac-p-alert-color-warning;
|
|
3603
3563
|
}
|
|
3604
3564
|
}
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
&::-webkit-progress-value {
|
|
3608
|
-
background-color: $wac-green-color;
|
|
3609
|
-
}
|
|
3565
|
+
i {
|
|
3566
|
+
color: $wac-primary-button;
|
|
3610
3567
|
}
|
|
3611
3568
|
}
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
padding-left: 0.875rem;
|
|
3620
|
-
.is-success {
|
|
3621
|
-
color: $wac-green-color;
|
|
3569
|
+
&.alert {
|
|
3570
|
+
background-color: transparentize($wac-orange-color, 0.85);
|
|
3571
|
+
p {
|
|
3572
|
+
color: $wac-p-alert-color-alert;
|
|
3573
|
+
> * {
|
|
3574
|
+
color: $wac-p-alert-color-alert;
|
|
3575
|
+
}
|
|
3622
3576
|
}
|
|
3623
|
-
|
|
3577
|
+
i {
|
|
3624
3578
|
color: $wac-orange-color;
|
|
3625
3579
|
}
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
letter-spacing: 0;
|
|
3637
|
-
font-weight: 600;
|
|
3638
|
-
}
|
|
3580
|
+
}
|
|
3581
|
+
p {
|
|
3582
|
+
width: 100%;
|
|
3583
|
+
font-size: rem(14);
|
|
3584
|
+
line-height: rem(25);
|
|
3585
|
+
margin: 0;
|
|
3586
|
+
padding: 0;
|
|
3587
|
+
color: $wac-p-alert-color-default;
|
|
3588
|
+
> * {
|
|
3589
|
+
color: $wac-p-alert-color-default;
|
|
3639
3590
|
}
|
|
3640
3591
|
}
|
|
3592
|
+
i {
|
|
3593
|
+
width: auto;
|
|
3594
|
+
margin: 0 10px 0 0;
|
|
3595
|
+
color: inherit;
|
|
3596
|
+
font-size: rem(14);
|
|
3597
|
+
line-height: rem(25);
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3600
|
+
.wac-button i {
|
|
3601
|
+
color: $wac-white;
|
|
3602
|
+
}
|
|
3641
3603
|
}
|
|
3642
3604
|
.wac-upload {
|
|
3643
3605
|
width: auto;
|
|
@@ -3747,7 +3709,7 @@ span.wac-tooltip {
|
|
|
3747
3709
|
border: 2px solid transparent;
|
|
3748
3710
|
transition: .3s ease;
|
|
3749
3711
|
opacity: .45;
|
|
3750
|
-
&.selected
|
|
3712
|
+
&.selected, &:not(.disabled):hover, &:not(.disabled):focus {
|
|
3751
3713
|
border-color: $wac-input-active-color;
|
|
3752
3714
|
opacity: 1!important;
|
|
3753
3715
|
}
|
|
@@ -4037,62 +3999,38 @@ span.wac-tooltip {
|
|
|
4037
3999
|
}
|
|
4038
4000
|
}
|
|
4039
4001
|
}
|
|
4040
|
-
.wac-wrapper-
|
|
4002
|
+
.wac-wrapper-multiple-block {
|
|
4041
4003
|
width: 100%;
|
|
4042
4004
|
display: flex;
|
|
4043
|
-
|
|
4005
|
+
flex-direction: row-reverse;
|
|
4006
|
+
justify-content: center;
|
|
4007
|
+
align-items: flex-start;
|
|
4044
4008
|
@include media('<desktop') {
|
|
4045
|
-
flex-direction: column;
|
|
4009
|
+
flex-direction: column-reverse;
|
|
4046
4010
|
justify-content: flex-start;
|
|
4047
|
-
align-items: flex-start;
|
|
4048
4011
|
}
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
flex-direction: row-reverse;
|
|
4052
|
-
|
|
4012
|
+
&__sidebar {
|
|
4013
|
+
width: 100%;
|
|
4053
4014
|
@include media('<desktop') {
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
}
|
|
4062
|
-
}
|
|
4015
|
+
margin: 0 0 20px;
|
|
4016
|
+
}
|
|
4017
|
+
@include media('>=desktop') {
|
|
4018
|
+
margin: 0 0 0 30px;
|
|
4019
|
+
}
|
|
4020
|
+
&:empty {
|
|
4021
|
+
display: none;
|
|
4063
4022
|
}
|
|
4064
4023
|
}
|
|
4065
|
-
|
|
4066
|
-
> div {
|
|
4024
|
+
&__content {
|
|
4067
4025
|
width: 100%;
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
@include media('<tablet') {
|
|
4071
|
-
padding-right: 20px;
|
|
4026
|
+
@include media('>=desktop') {
|
|
4027
|
+
min-width: 680px;
|
|
4072
4028
|
}
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
background-color: $wac-white;
|
|
4076
|
-
|
|
4077
|
-
@include media('<desktop') {
|
|
4078
|
-
margin: 0 0 20px;
|
|
4079
|
-
}
|
|
4080
|
-
|
|
4081
|
-
@include media('>=desktop') {
|
|
4082
|
-
width: 33%;
|
|
4083
|
-
min-width: 33%;
|
|
4084
|
-
}
|
|
4029
|
+
@include media('>=1400px') {
|
|
4030
|
+
min-width: 880px;
|
|
4085
4031
|
}
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
background: $wac-grey center center no-repeat;
|
|
4089
|
-
background-size: auto;
|
|
4090
|
-
|
|
4091
|
-
@include media('>=desktop') {
|
|
4092
|
-
width: 67%;
|
|
4093
|
-
min-width: 67%;
|
|
4094
|
-
padding: 80px 30px;
|
|
4095
|
-
}
|
|
4032
|
+
@include media('>=1600px') {
|
|
4033
|
+
min-width: 1080px;
|
|
4096
4034
|
}
|
|
4097
4035
|
}
|
|
4098
4036
|
}
|
|
@@ -4235,29 +4173,63 @@ span.wac-tooltip {
|
|
|
4235
4173
|
.wac-free-popin .ps-content > * {
|
|
4236
4174
|
padding-right: 15px;
|
|
4237
4175
|
}
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
color: $wac-main-text;
|
|
4176
|
+
.wac-wrapper-sidebar {
|
|
4177
|
+
width: 100%;
|
|
4178
|
+
display: flex;
|
|
4179
|
+
|
|
4243
4180
|
@include media('<desktop') {
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
&.with-img {
|
|
4248
|
-
display: flex;
|
|
4249
|
-
align-items: center;
|
|
4181
|
+
flex-direction: column;
|
|
4182
|
+
justify-content: flex-start;
|
|
4183
|
+
align-items: flex-start;
|
|
4250
4184
|
}
|
|
4251
|
-
|
|
4252
|
-
|
|
4185
|
+
|
|
4186
|
+
&.reverse {
|
|
4187
|
+
flex-direction: row-reverse;
|
|
4188
|
+
|
|
4189
|
+
@include media('<desktop') {
|
|
4190
|
+
flex-direction: column-reverse;
|
|
4191
|
+
|
|
4192
|
+
> div {
|
|
4193
|
+
&:nth-child(1) {
|
|
4194
|
+
@include media('<desktop') {
|
|
4195
|
+
margin: 20px 0 0;
|
|
4196
|
+
}
|
|
4197
|
+
}
|
|
4198
|
+
}
|
|
4199
|
+
}
|
|
4253
4200
|
}
|
|
4254
4201
|
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4202
|
+
> div {
|
|
4203
|
+
width: 100%;
|
|
4204
|
+
padding-right: 30px;
|
|
4205
|
+
|
|
4206
|
+
@include media('<tablet') {
|
|
4207
|
+
padding-right: 20px;
|
|
4208
|
+
}
|
|
4209
|
+
|
|
4210
|
+
&:nth-child(1) {
|
|
4211
|
+
background-color: $wac-white;
|
|
4212
|
+
|
|
4213
|
+
@include media('<desktop') {
|
|
4214
|
+
margin: 0 0 20px;
|
|
4215
|
+
}
|
|
4216
|
+
|
|
4217
|
+
@include media('>=desktop') {
|
|
4218
|
+
width: 33%;
|
|
4219
|
+
min-width: 33%;
|
|
4220
|
+
}
|
|
4221
|
+
}
|
|
4222
|
+
|
|
4223
|
+
&:nth-child(2) {
|
|
4224
|
+
background: $wac-grey center center no-repeat;
|
|
4225
|
+
background-size: auto;
|
|
4226
|
+
|
|
4227
|
+
@include media('>=desktop') {
|
|
4228
|
+
width: 67%;
|
|
4229
|
+
min-width: 67%;
|
|
4230
|
+
padding: 80px 30px;
|
|
4231
|
+
}
|
|
4232
|
+
}
|
|
4261
4233
|
}
|
|
4262
4234
|
}
|
|
4263
4235
|
.wac-label {
|
|
@@ -4292,17 +4264,37 @@ h1.wac-h1 {
|
|
|
4292
4264
|
}
|
|
4293
4265
|
}
|
|
4294
4266
|
}
|
|
4295
|
-
|
|
4296
|
-
font-size: rem(
|
|
4297
|
-
line-height: rem(
|
|
4267
|
+
h1.wac-h1 {
|
|
4268
|
+
font-size: rem(30);
|
|
4269
|
+
line-height: rem(35);
|
|
4298
4270
|
font-weight: 500;
|
|
4299
4271
|
color: $wac-main-text;
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4272
|
+
@include media('<desktop') {
|
|
4273
|
+
font-size: rem(22);
|
|
4274
|
+
line-height: rem(30);
|
|
4275
|
+
}
|
|
4276
|
+
&.with-img {
|
|
4277
|
+
display: flex;
|
|
4278
|
+
align-items: center;
|
|
4279
|
+
}
|
|
4280
|
+
&.center {
|
|
4281
|
+
text-align: center;
|
|
4282
|
+
}
|
|
4283
|
+
|
|
4284
|
+
small {
|
|
4285
|
+
font-size: rem(18);
|
|
4286
|
+
display: inline-block;
|
|
4287
|
+
margin-left: rem(5);
|
|
4288
|
+
font-style: italic;
|
|
4289
|
+
font-weight: normal;
|
|
4290
|
+
}
|
|
4291
|
+
}
|
|
4292
|
+
.wac-mosaic {
|
|
4293
|
+
height: 450px;
|
|
4294
|
+
position: relative;
|
|
4295
|
+
&__loader {
|
|
4296
|
+
min-height: 450px;
|
|
4297
|
+
width: 100%;
|
|
4306
4298
|
display: flex;
|
|
4307
4299
|
justify-content: center;
|
|
4308
4300
|
align-items: center;
|
|
@@ -4357,86 +4349,138 @@ h2.wac-h2 {
|
|
|
4357
4349
|
}
|
|
4358
4350
|
}
|
|
4359
4351
|
}
|
|
4360
|
-
|
|
4361
|
-
font-size: rem(
|
|
4362
|
-
line-height: rem(
|
|
4352
|
+
h2.wac-h2 {
|
|
4353
|
+
font-size: rem(18);
|
|
4354
|
+
line-height: rem(21);
|
|
4363
4355
|
font-weight: 500;
|
|
4364
4356
|
color: $wac-main-text;
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
}
|
|
4368
|
-
}
|
|
4369
|
-
.wac-alert {
|
|
4357
|
+
}.wac-free {
|
|
4358
|
+
height: 100%;
|
|
4370
4359
|
width: 100%;
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
background-color:
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4360
|
+
width: 100vw;
|
|
4361
|
+
height: 100vh;
|
|
4362
|
+
position: fixed;
|
|
4363
|
+
top: 0;
|
|
4364
|
+
left: 0;
|
|
4365
|
+
z-index: 9999;
|
|
4366
|
+
|
|
4367
|
+
&__wrapper {
|
|
4368
|
+
background-color: white;
|
|
4369
|
+
border: 1px solid $wac-border-color;
|
|
4370
|
+
border-radius: 3px;
|
|
4371
|
+
margin: auto;
|
|
4372
|
+
box-shadow: 0px 10px 40px $wac-free-popin-boxshadow;
|
|
4373
|
+
position: absolute;
|
|
4374
|
+
left: 50%;
|
|
4375
|
+
top: 50%;
|
|
4376
|
+
transform: translate(-50%, -50%);
|
|
4377
|
+
padding: 50px;
|
|
4378
|
+
z-index: 3;
|
|
4379
|
+
max-height: 90vh;
|
|
4380
|
+
display: flex;
|
|
4381
|
+
flex-wrap: nowrap;
|
|
4382
|
+
flex-direction: column;
|
|
4383
|
+
justify-content: center;
|
|
4384
|
+
align-items: center;
|
|
4385
|
+
width: 100%;
|
|
4386
|
+
max-width: 575px;
|
|
4387
|
+
overflow: hidden;
|
|
4388
|
+
|
|
4389
|
+
&__content {
|
|
4390
|
+
position: relative;
|
|
4391
|
+
overflow: hidden;
|
|
4392
|
+
display: flex;
|
|
4393
|
+
|
|
4385
4394
|
}
|
|
4386
|
-
|
|
4387
|
-
|
|
4395
|
+
|
|
4396
|
+
div:not([class]) {
|
|
4397
|
+
width: 100%;
|
|
4398
|
+
margin: 0 0 20px;
|
|
4388
4399
|
}
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4400
|
+
|
|
4401
|
+
> * {
|
|
4402
|
+
width: 100%;
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
&__button-close {
|
|
4406
|
+
position: absolute;
|
|
4407
|
+
top: 10px;
|
|
4408
|
+
right: 10px;
|
|
4409
|
+
width: 30px;
|
|
4410
|
+
height: 30px;
|
|
4411
|
+
border-radius: 50%;
|
|
4412
|
+
display: flex;
|
|
4413
|
+
justify-content: center;
|
|
4414
|
+
align-items: center;
|
|
4415
|
+
background-color: $wac-popin-btn-close;
|
|
4416
|
+
transition: .3s ease;
|
|
4417
|
+
i {
|
|
4418
|
+
color: $wac-second-color;
|
|
4419
|
+
font-size: 14px;
|
|
4420
|
+
font-weight: 400;
|
|
4421
|
+
}
|
|
4422
|
+
&:hover, &:focus {
|
|
4423
|
+
background-color: $wac-main-text;
|
|
4424
|
+
i {
|
|
4425
|
+
color: $wac-white;
|
|
4426
|
+
}
|
|
4396
4427
|
}
|
|
4397
4428
|
}
|
|
4398
|
-
|
|
4399
|
-
|
|
4429
|
+
|
|
4430
|
+
img {
|
|
4431
|
+
display: block;
|
|
4432
|
+
max-width: 200px;
|
|
4433
|
+
margin: 0 auto rem(20);
|
|
4400
4434
|
}
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
|
|
4435
|
+
|
|
4436
|
+
h2 {
|
|
4437
|
+
font-size: rem(20);
|
|
4438
|
+
line-height: rem(25);
|
|
4439
|
+
margin: 0 0 rem(20);
|
|
4440
|
+
font-weight: 500;
|
|
4441
|
+
width: 100%;
|
|
4442
|
+
text-align: center;
|
|
4443
|
+
}
|
|
4444
|
+
|
|
4404
4445
|
p {
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4446
|
+
font-size: rem(14);
|
|
4447
|
+
line-height: rem(25);
|
|
4448
|
+
color: $wac-second-color;
|
|
4449
|
+
width: 100%;
|
|
4450
|
+
text-align: center;
|
|
4451
|
+
padding: 0;
|
|
4452
|
+
margin: 0;
|
|
4409
4453
|
}
|
|
4410
|
-
|
|
4411
|
-
|
|
4454
|
+
|
|
4455
|
+
&__buttons {
|
|
4456
|
+
width: 100%;
|
|
4457
|
+
display: flex;
|
|
4458
|
+
flex-direction: column;
|
|
4459
|
+
align-items: center;
|
|
4460
|
+
margin: 30px 0 0;
|
|
4461
|
+
&__button {
|
|
4462
|
+
margin: 10px;
|
|
4463
|
+
width: auto;
|
|
4464
|
+
}
|
|
4412
4465
|
}
|
|
4413
4466
|
}
|
|
4414
|
-
|
|
4467
|
+
&__background {
|
|
4468
|
+
z-index: 1;
|
|
4469
|
+
position: absolute;
|
|
4470
|
+
top: 0;
|
|
4471
|
+
left: 0;
|
|
4415
4472
|
width: 100%;
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
margin: 0;
|
|
4419
|
-
padding: 0;
|
|
4420
|
-
color: $wac-p-alert-color-default;
|
|
4421
|
-
> * {
|
|
4422
|
-
color: $wac-p-alert-color-default;
|
|
4423
|
-
}
|
|
4424
|
-
}
|
|
4425
|
-
i {
|
|
4426
|
-
width: auto;
|
|
4427
|
-
margin: 0 10px 0 0;
|
|
4428
|
-
color: inherit;
|
|
4429
|
-
font-size: rem(14);
|
|
4430
|
-
line-height: rem(25);
|
|
4473
|
+
height: 100%;
|
|
4474
|
+
background-color: transparentize($wac-main-text, .5);
|
|
4431
4475
|
}
|
|
4476
|
+
}
|
|
4432
4477
|
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
}
|
|
4478
|
+
.wac-free .ps-content > * {
|
|
4479
|
+
padding-right: 15px;
|
|
4436
4480
|
}
|
|
4437
|
-
|
|
4438
|
-
font-size: rem(
|
|
4439
|
-
line-height: rem(
|
|
4481
|
+
h3.wac-h3 {
|
|
4482
|
+
font-size: rem(16);
|
|
4483
|
+
line-height: rem(19);
|
|
4440
4484
|
font-weight: 500;
|
|
4441
4485
|
color: $wac-main-text;
|
|
4442
4486
|
&.grey {
|
|
@@ -5629,6 +5673,15 @@ h4.wac-h4 {
|
|
|
5629
5673
|
}
|
|
5630
5674
|
}
|
|
5631
5675
|
}
|
|
5676
|
+
h4.wac-h4 {
|
|
5677
|
+
font-size: rem(14);
|
|
5678
|
+
line-height: rem(16);
|
|
5679
|
+
font-weight: 500;
|
|
5680
|
+
color: $wac-main-text;
|
|
5681
|
+
&.grey {
|
|
5682
|
+
color: $wac-second-color;
|
|
5683
|
+
}
|
|
5684
|
+
}
|
|
5632
5685
|
.wac-edit-in-place.nwb-wrapper {
|
|
5633
5686
|
display: inline-block;
|
|
5634
5687
|
position: relative;
|
|
@@ -5798,31 +5851,109 @@ h4.wac-h4 {
|
|
|
5798
5851
|
z-index: 2;
|
|
5799
5852
|
}
|
|
5800
5853
|
}
|
|
5854
|
+
.wac-loader {
|
|
5855
|
+
&.is-small {
|
|
5856
|
+
position: absolute;
|
|
5857
|
+
right: 0;
|
|
5858
|
+
left: 0;
|
|
5859
|
+
top: -70px;
|
|
5860
|
+
transform: scale(0.6);
|
|
5861
|
+
}
|
|
5862
|
+
margin-bottom: rem(80);
|
|
5801
5863
|
|
|
5864
|
+
@keyframes rotate {
|
|
5865
|
+
0% {
|
|
5866
|
+
transform: rotate(0deg);
|
|
5867
|
+
}
|
|
5868
|
+
50% {
|
|
5869
|
+
transform: rotate(180deg);
|
|
5870
|
+
}
|
|
5871
|
+
100% {
|
|
5872
|
+
transform: rotate(360deg);
|
|
5873
|
+
}
|
|
5874
|
+
}
|
|
5802
5875
|
|
|
5803
|
-
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
height: 40px;
|
|
5808
|
-
border: 1px solid $wac-border-form;
|
|
5809
|
-
margin: 0;
|
|
5810
|
-
border-radius: 3px;
|
|
5811
|
-
z-index: 2;
|
|
5812
|
-
background-color: $wac-white;
|
|
5813
|
-
max-width: 100%;
|
|
5814
|
-
&:hover,
|
|
5815
|
-
&:focus {
|
|
5816
|
-
z-index: 4;
|
|
5876
|
+
@keyframes rotate2 {
|
|
5877
|
+
0% {
|
|
5878
|
+
transform: rotate(0deg);
|
|
5879
|
+
border-top-color: $wac-color-loader;
|
|
5817
5880
|
}
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
5821
|
-
line-height: rem(16);
|
|
5822
|
-
margin: 0 0 rem(12);
|
|
5823
|
-
font-weight: 500;
|
|
5881
|
+
50% {
|
|
5882
|
+
transform: rotate(180deg);
|
|
5883
|
+
border-top-color: $wac-color-loader2;
|
|
5824
5884
|
}
|
|
5825
|
-
|
|
5885
|
+
100% {
|
|
5886
|
+
transform: rotate(360deg);
|
|
5887
|
+
border-top-color: $wac-color-loader;
|
|
5888
|
+
}
|
|
5889
|
+
}
|
|
5890
|
+
|
|
5891
|
+
@mixin loaderDivMixin {
|
|
5892
|
+
border-radius: 50%;
|
|
5893
|
+
padding: rem(8);
|
|
5894
|
+
border: rem(2) solid transparent;
|
|
5895
|
+
animation: rotate linear 3.5s infinite;
|
|
5896
|
+
}
|
|
5897
|
+
|
|
5898
|
+
.loader {
|
|
5899
|
+
position: relative;
|
|
5900
|
+
margin: rem(75) auto;
|
|
5901
|
+
width: rem(150);
|
|
5902
|
+
height: rem(150);
|
|
5903
|
+
display: block;
|
|
5904
|
+
overflow: hidden;
|
|
5905
|
+
div {
|
|
5906
|
+
height: 100%;
|
|
5907
|
+
}
|
|
5908
|
+
}
|
|
5909
|
+
|
|
5910
|
+
/* loader 1 */
|
|
5911
|
+
.loader1,
|
|
5912
|
+
.loader1 div {
|
|
5913
|
+
@include loaderDivMixin;
|
|
5914
|
+
border-top-color: $wac-color-loader;
|
|
5915
|
+
border-bottom-color: $wac-color-loader2;
|
|
5916
|
+
}
|
|
5917
|
+
|
|
5918
|
+
div:hover {
|
|
5919
|
+
animation-play-state: paused;
|
|
5920
|
+
}
|
|
5921
|
+
|
|
5922
|
+
.loader,
|
|
5923
|
+
.loader * {
|
|
5924
|
+
will-change: transform;
|
|
5925
|
+
}
|
|
5926
|
+
|
|
5927
|
+
p {
|
|
5928
|
+
margin-top: -50px;
|
|
5929
|
+
font-weight: 500;
|
|
5930
|
+
}
|
|
5931
|
+
}
|
|
5932
|
+
|
|
5933
|
+
|
|
5934
|
+
.wac {
|
|
5935
|
+
&-select {
|
|
5936
|
+
width: 100%;
|
|
5937
|
+
position: relative;
|
|
5938
|
+
height: 40px;
|
|
5939
|
+
border: 1px solid $wac-border-form;
|
|
5940
|
+
margin: 0;
|
|
5941
|
+
border-radius: 3px;
|
|
5942
|
+
z-index: 2;
|
|
5943
|
+
background-color: $wac-white;
|
|
5944
|
+
max-width: 100%;
|
|
5945
|
+
&:hover,
|
|
5946
|
+
&:focus {
|
|
5947
|
+
z-index: 4;
|
|
5948
|
+
}
|
|
5949
|
+
&__label {
|
|
5950
|
+
padding: 0;
|
|
5951
|
+
font-size: rem(14);
|
|
5952
|
+
line-height: rem(16);
|
|
5953
|
+
margin: 0 0 rem(12);
|
|
5954
|
+
font-weight: 500;
|
|
5955
|
+
}
|
|
5956
|
+
&__current {
|
|
5826
5957
|
display: flex;
|
|
5827
5958
|
width: 100%;
|
|
5828
5959
|
height: 38px;
|
|
@@ -6760,116 +6891,6 @@ div.wac-field-input-search {
|
|
|
6760
6891
|
}
|
|
6761
6892
|
}
|
|
6762
6893
|
}
|
|
6763
|
-
.wac-image {
|
|
6764
|
-
width: 60px;
|
|
6765
|
-
height: 60px;
|
|
6766
|
-
|
|
6767
|
-
&__wrapper {
|
|
6768
|
-
@include flexbox();
|
|
6769
|
-
@include justify-content(center);
|
|
6770
|
-
@include align-items(center);
|
|
6771
|
-
width: 100%;
|
|
6772
|
-
height: 100%;
|
|
6773
|
-
border-radius: 3px;
|
|
6774
|
-
border: 1px solid $wac-border-light;
|
|
6775
|
-
background-position: center;
|
|
6776
|
-
background-size: contain;
|
|
6777
|
-
background-repeat: no-repeat;
|
|
6778
|
-
|
|
6779
|
-
&.empty {
|
|
6780
|
-
background-color: $wac-gray-background;
|
|
6781
|
-
}
|
|
6782
|
-
|
|
6783
|
-
i {
|
|
6784
|
-
color: $wac-border-form;
|
|
6785
|
-
font-size: 25px;
|
|
6786
|
-
line-height: 23px;
|
|
6787
|
-
}
|
|
6788
|
-
}
|
|
6789
|
-
}
|
|
6790
|
-
.wac-confirm-delete {
|
|
6791
|
-
position: absolute;
|
|
6792
|
-
right: 0;
|
|
6793
|
-
top: 0;
|
|
6794
|
-
height: 100%;
|
|
6795
|
-
z-index: 999;
|
|
6796
|
-
width: auto;
|
|
6797
|
-
display: flex;
|
|
6798
|
-
flex-wrap: nowrap;
|
|
6799
|
-
align-items: stretch;
|
|
6800
|
-
background-color: $wac-white;
|
|
6801
|
-
opacity: 0;
|
|
6802
|
-
visibility: hidden;
|
|
6803
|
-
transform: translateX(100%);
|
|
6804
|
-
transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
|
|
6805
|
-
&.is-open {
|
|
6806
|
-
opacity: 1;
|
|
6807
|
-
visibility: visible;
|
|
6808
|
-
transform: translateX(0);
|
|
6809
|
-
transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
|
|
6810
|
-
}
|
|
6811
|
-
> div {
|
|
6812
|
-
width: auto;
|
|
6813
|
-
display: flex;
|
|
6814
|
-
align-items: center;
|
|
6815
|
-
margin: 0!important;
|
|
6816
|
-
&:first-child {
|
|
6817
|
-
position: relative;
|
|
6818
|
-
margin: 0 20px 0 0;
|
|
6819
|
-
padding: 0 0 0 30px;
|
|
6820
|
-
&:before {
|
|
6821
|
-
content: '';
|
|
6822
|
-
display: block;
|
|
6823
|
-
position: absolute;
|
|
6824
|
-
top: 0;
|
|
6825
|
-
left: 10px;
|
|
6826
|
-
width: 1px;
|
|
6827
|
-
height: 100%;
|
|
6828
|
-
background-color: $wac-border-form;
|
|
6829
|
-
}
|
|
6830
|
-
span {
|
|
6831
|
-
font-size: rem(16);
|
|
6832
|
-
line-height: 1.4;
|
|
6833
|
-
color: $wac-second-color;
|
|
6834
|
-
}
|
|
6835
|
-
}
|
|
6836
|
-
&:last-child {
|
|
6837
|
-
> div {
|
|
6838
|
-
width: auto;
|
|
6839
|
-
&:first-child {
|
|
6840
|
-
margin: 0 10px 0 0;
|
|
6841
|
-
}
|
|
6842
|
-
}
|
|
6843
|
-
}
|
|
6844
|
-
}
|
|
6845
|
-
}
|
|
6846
|
-
.wac-back {
|
|
6847
|
-
width: 40px;
|
|
6848
|
-
height: 40px;
|
|
6849
|
-
|
|
6850
|
-
&__wrapper {
|
|
6851
|
-
@include flexbox();
|
|
6852
|
-
@include justify-content(center);
|
|
6853
|
-
@include align-items(center);
|
|
6854
|
-
width: 100%;
|
|
6855
|
-
height: 100%;
|
|
6856
|
-
border-radius: 3px;
|
|
6857
|
-
border: 1px solid $wac-border-light;
|
|
6858
|
-
background-color: transparent;
|
|
6859
|
-
transition: border-color 0.3s ease-in-out;
|
|
6860
|
-
|
|
6861
|
-
i {
|
|
6862
|
-
color: $wac-second-color;
|
|
6863
|
-
font-size: 11px;
|
|
6864
|
-
line-height: 14px;
|
|
6865
|
-
}
|
|
6866
|
-
|
|
6867
|
-
&:hover {
|
|
6868
|
-
border-color: $wac-back-border-hover;
|
|
6869
|
-
transition: border-color 0.3s ease-in-out;
|
|
6870
|
-
}
|
|
6871
|
-
}
|
|
6872
|
-
}
|
|
6873
6894
|
.wac-multiple-search-plus {
|
|
6874
6895
|
|
|
6875
6896
|
&__wrapper {
|
|
@@ -7184,81 +7205,142 @@ div.wac-field-input-search {
|
|
|
7184
7205
|
border-radius: 3px;
|
|
7185
7206
|
}
|
|
7186
7207
|
}
|
|
7187
|
-
.wac-
|
|
7188
|
-
|
|
7189
|
-
|
|
7190
|
-
|
|
7191
|
-
left: 0;
|
|
7192
|
-
top: -70px;
|
|
7193
|
-
transform: scale(0.6);
|
|
7194
|
-
}
|
|
7195
|
-
margin-bottom: rem(80);
|
|
7208
|
+
.wac-info {
|
|
7209
|
+
display: inline-block;
|
|
7210
|
+
width: 40px;
|
|
7211
|
+
height: 40px;
|
|
7196
7212
|
|
|
7197
|
-
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
|
|
7202
|
-
|
|
7203
|
-
|
|
7204
|
-
100% {
|
|
7205
|
-
transform: rotate(360deg);
|
|
7206
|
-
}
|
|
7207
|
-
}
|
|
7213
|
+
&__wrapper {
|
|
7214
|
+
@include flexbox();
|
|
7215
|
+
@include justify-content(center);
|
|
7216
|
+
@include align-items(center);
|
|
7217
|
+
width: 100%;
|
|
7218
|
+
height: 100%;
|
|
7219
|
+
position: relative;
|
|
7208
7220
|
|
|
7209
|
-
|
|
7210
|
-
|
|
7211
|
-
|
|
7212
|
-
|
|
7213
|
-
|
|
7214
|
-
50% {
|
|
7215
|
-
transform: rotate(180deg);
|
|
7216
|
-
border-top-color: $wac-color-loader2;
|
|
7221
|
+
i {
|
|
7222
|
+
font-size: 14px;
|
|
7223
|
+
line-height: 25px;
|
|
7224
|
+
color: $wac-second-color;
|
|
7225
|
+
transition: color 0.3s ease-in-out;
|
|
7217
7226
|
}
|
|
7218
|
-
|
|
7219
|
-
|
|
7220
|
-
|
|
7227
|
+
|
|
7228
|
+
&__sublevel {
|
|
7229
|
+
position: absolute;
|
|
7230
|
+
width: 350px;
|
|
7231
|
+
top: 13px;
|
|
7232
|
+
left: 100%;
|
|
7233
|
+
z-index: -1;
|
|
7234
|
+
opacity: 0;
|
|
7235
|
+
background-color: $wac-white;
|
|
7236
|
+
border-radius: rem(3);
|
|
7237
|
+
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
7238
|
+
visibility: hidden;
|
|
7239
|
+
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
7240
|
+
|
|
7241
|
+
&__container {
|
|
7242
|
+
padding: 15px 20px;
|
|
7243
|
+
font-size: rem(14);
|
|
7244
|
+
line-height: rem(25);
|
|
7245
|
+
color: $wac-second-color;
|
|
7246
|
+
}
|
|
7221
7247
|
}
|
|
7222
|
-
}
|
|
7223
7248
|
|
|
7224
|
-
|
|
7225
|
-
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7229
|
-
}
|
|
7249
|
+
&:hover {
|
|
7250
|
+
i {
|
|
7251
|
+
color: $wac-input-active-color;
|
|
7252
|
+
transition: color 0.3s ease-in-out;
|
|
7253
|
+
}
|
|
7230
7254
|
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
|
|
7234
|
-
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
overflow: hidden;
|
|
7238
|
-
div {
|
|
7239
|
-
height: 100%;
|
|
7255
|
+
.wac-info__wrapper__sublevel {
|
|
7256
|
+
visibility: visible;
|
|
7257
|
+
opacity: 1;
|
|
7258
|
+
z-index: 2;
|
|
7259
|
+
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
7260
|
+
}
|
|
7240
7261
|
}
|
|
7241
7262
|
}
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
|
|
7245
|
-
|
|
7246
|
-
|
|
7247
|
-
|
|
7248
|
-
|
|
7263
|
+
}
|
|
7264
|
+
.wac-confirm-delete {
|
|
7265
|
+
position: absolute;
|
|
7266
|
+
right: 0;
|
|
7267
|
+
top: 0;
|
|
7268
|
+
height: 100%;
|
|
7269
|
+
z-index: 999;
|
|
7270
|
+
width: auto;
|
|
7271
|
+
display: flex;
|
|
7272
|
+
flex-wrap: nowrap;
|
|
7273
|
+
align-items: stretch;
|
|
7274
|
+
background-color: $wac-white;
|
|
7275
|
+
opacity: 0;
|
|
7276
|
+
visibility: hidden;
|
|
7277
|
+
transform: translateX(100%);
|
|
7278
|
+
transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
|
|
7279
|
+
&.is-open {
|
|
7280
|
+
opacity: 1;
|
|
7281
|
+
visibility: visible;
|
|
7282
|
+
transform: translateX(0);
|
|
7283
|
+
transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
|
|
7249
7284
|
}
|
|
7250
|
-
|
|
7251
|
-
|
|
7252
|
-
|
|
7285
|
+
> div {
|
|
7286
|
+
width: auto;
|
|
7287
|
+
display: flex;
|
|
7288
|
+
align-items: center;
|
|
7289
|
+
margin: 0!important;
|
|
7290
|
+
&:first-child {
|
|
7291
|
+
position: relative;
|
|
7292
|
+
margin: 0 20px 0 0;
|
|
7293
|
+
padding: 0 0 0 30px;
|
|
7294
|
+
&:before {
|
|
7295
|
+
content: '';
|
|
7296
|
+
display: block;
|
|
7297
|
+
position: absolute;
|
|
7298
|
+
top: 0;
|
|
7299
|
+
left: 10px;
|
|
7300
|
+
width: 1px;
|
|
7301
|
+
height: 100%;
|
|
7302
|
+
background-color: $wac-border-form;
|
|
7303
|
+
}
|
|
7304
|
+
span {
|
|
7305
|
+
font-size: rem(16);
|
|
7306
|
+
line-height: 1.4;
|
|
7307
|
+
color: $wac-second-color;
|
|
7308
|
+
}
|
|
7309
|
+
}
|
|
7310
|
+
&:last-child {
|
|
7311
|
+
> div {
|
|
7312
|
+
width: auto;
|
|
7313
|
+
&:first-child {
|
|
7314
|
+
margin: 0 10px 0 0;
|
|
7315
|
+
}
|
|
7316
|
+
}
|
|
7317
|
+
}
|
|
7253
7318
|
}
|
|
7319
|
+
}
|
|
7320
|
+
.wac-back {
|
|
7321
|
+
width: 40px;
|
|
7322
|
+
height: 40px;
|
|
7254
7323
|
|
|
7255
|
-
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
|
|
7324
|
+
&__wrapper {
|
|
7325
|
+
@include flexbox();
|
|
7326
|
+
@include justify-content(center);
|
|
7327
|
+
@include align-items(center);
|
|
7328
|
+
width: 100%;
|
|
7329
|
+
height: 100%;
|
|
7330
|
+
border-radius: 3px;
|
|
7331
|
+
border: 1px solid $wac-border-light;
|
|
7332
|
+
background-color: transparent;
|
|
7333
|
+
transition: border-color 0.3s ease-in-out;
|
|
7259
7334
|
|
|
7260
|
-
|
|
7261
|
-
|
|
7262
|
-
|
|
7335
|
+
i {
|
|
7336
|
+
color: $wac-second-color;
|
|
7337
|
+
font-size: 11px;
|
|
7338
|
+
line-height: 14px;
|
|
7339
|
+
}
|
|
7340
|
+
|
|
7341
|
+
&:hover {
|
|
7342
|
+
border-color: $wac-back-border-hover;
|
|
7343
|
+
transition: border-color 0.3s ease-in-out;
|
|
7344
|
+
}
|
|
7263
7345
|
}
|
|
7264
7346
|
}
|