@wizishop/angular-components 0.0.50 → 0.0.54
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 +485 -421
- package/bundles/wizishop-angular-components.umd.js +27 -4
- 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/button/button.component.js +26 -4
- package/esm2015/lib/components/filters/filters.component.js +3 -3
- package/fesm2015/wizishop-angular-components.js +26 -4
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/button/button.component.d.ts +11 -2
- package/lib/components/filters/filters.component.d.ts +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.54.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.50.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -118,6 +118,80 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
118
118
|
width: rem(36);
|
|
119
119
|
height: rem(36);
|
|
120
120
|
}
|
|
121
|
+
.wac-progressBarContent {
|
|
122
|
+
position: relative;
|
|
123
|
+
width: 100%;
|
|
124
|
+
display: block;
|
|
125
|
+
.progressBar {
|
|
126
|
+
position: relative;
|
|
127
|
+
width: 88%;
|
|
128
|
+
margin-bottom: 1rem;
|
|
129
|
+
progress {
|
|
130
|
+
&.progress {
|
|
131
|
+
margin-bottom: 0;
|
|
132
|
+
height: rem(2);
|
|
133
|
+
&::-webkit-progress-value {
|
|
134
|
+
transition: width 0.5s ease;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
span {
|
|
139
|
+
position: absolute;
|
|
140
|
+
top: -4px;
|
|
141
|
+
height: 11px;
|
|
142
|
+
width: 11px;
|
|
143
|
+
background-color: $wac-border-color;
|
|
144
|
+
border-radius: 50%;
|
|
145
|
+
}
|
|
146
|
+
.is-danger {
|
|
147
|
+
background-color: $wac-primary-button;
|
|
148
|
+
&::-webkit-progress-value {
|
|
149
|
+
background-color: $wac-primary-button;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
.is-warning {
|
|
153
|
+
background-color: $wac-orange-color;
|
|
154
|
+
&::-webkit-progress-value {
|
|
155
|
+
background-color: $wac-orange-color;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
.is-success {
|
|
159
|
+
background-color: $wac-green-color;
|
|
160
|
+
&::-webkit-progress-value {
|
|
161
|
+
background-color: $wac-green-color;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
.size {
|
|
166
|
+
display: inline;
|
|
167
|
+
color: $wac-color-text-grey;
|
|
168
|
+
position: absolute;
|
|
169
|
+
right: 0;
|
|
170
|
+
top: -9px;
|
|
171
|
+
background: $wac-white;
|
|
172
|
+
padding-left: 0.875rem;
|
|
173
|
+
.is-success {
|
|
174
|
+
color: $wac-green-color;
|
|
175
|
+
}
|
|
176
|
+
.is-warning {
|
|
177
|
+
color: $wac-orange-color;
|
|
178
|
+
}
|
|
179
|
+
.is-danger {
|
|
180
|
+
color: $wac-primary-button;
|
|
181
|
+
}
|
|
182
|
+
> span {
|
|
183
|
+
font-size: rem(14) !important;
|
|
184
|
+
line-height: 1;
|
|
185
|
+
transform: translateY(-3px);
|
|
186
|
+
display: inline-block;
|
|
187
|
+
letter-spacing: 0;
|
|
188
|
+
strong {
|
|
189
|
+
letter-spacing: 0;
|
|
190
|
+
font-weight: 600;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
121
195
|
.wac-radio {
|
|
122
196
|
.is-checkradio[type='radio'] {
|
|
123
197
|
outline: 0 !important;
|
|
@@ -246,80 +320,6 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
246
320
|
}
|
|
247
321
|
}
|
|
248
322
|
}
|
|
249
|
-
.wac-progressBarContent {
|
|
250
|
-
position: relative;
|
|
251
|
-
width: 100%;
|
|
252
|
-
display: block;
|
|
253
|
-
.progressBar {
|
|
254
|
-
position: relative;
|
|
255
|
-
width: 88%;
|
|
256
|
-
margin-bottom: 1rem;
|
|
257
|
-
progress {
|
|
258
|
-
&.progress {
|
|
259
|
-
margin-bottom: 0;
|
|
260
|
-
height: rem(2);
|
|
261
|
-
&::-webkit-progress-value {
|
|
262
|
-
transition: width 0.5s ease;
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
span {
|
|
267
|
-
position: absolute;
|
|
268
|
-
top: -4px;
|
|
269
|
-
height: 11px;
|
|
270
|
-
width: 11px;
|
|
271
|
-
background-color: $wac-border-color;
|
|
272
|
-
border-radius: 50%;
|
|
273
|
-
}
|
|
274
|
-
.is-danger {
|
|
275
|
-
background-color: $wac-primary-button;
|
|
276
|
-
&::-webkit-progress-value {
|
|
277
|
-
background-color: $wac-primary-button;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
.is-warning {
|
|
281
|
-
background-color: $wac-orange-color;
|
|
282
|
-
&::-webkit-progress-value {
|
|
283
|
-
background-color: $wac-orange-color;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
.is-success {
|
|
287
|
-
background-color: $wac-green-color;
|
|
288
|
-
&::-webkit-progress-value {
|
|
289
|
-
background-color: $wac-green-color;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
.size {
|
|
294
|
-
display: inline;
|
|
295
|
-
color: $wac-color-text-grey;
|
|
296
|
-
position: absolute;
|
|
297
|
-
right: 0;
|
|
298
|
-
top: -9px;
|
|
299
|
-
background: $wac-white;
|
|
300
|
-
padding-left: 0.875rem;
|
|
301
|
-
.is-success {
|
|
302
|
-
color: $wac-green-color;
|
|
303
|
-
}
|
|
304
|
-
.is-warning {
|
|
305
|
-
color: $wac-orange-color;
|
|
306
|
-
}
|
|
307
|
-
.is-danger {
|
|
308
|
-
color: $wac-primary-button;
|
|
309
|
-
}
|
|
310
|
-
> span {
|
|
311
|
-
font-size: rem(14) !important;
|
|
312
|
-
line-height: 1;
|
|
313
|
-
transform: translateY(-3px);
|
|
314
|
-
display: inline-block;
|
|
315
|
-
letter-spacing: 0;
|
|
316
|
-
strong {
|
|
317
|
-
letter-spacing: 0;
|
|
318
|
-
font-weight: 600;
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
323
|
.wac {
|
|
324
324
|
&-select-in-text {
|
|
325
325
|
width: auto;
|
|
@@ -725,6 +725,7 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
725
725
|
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
726
726
|
@include simple_transition();
|
|
727
727
|
height: 100%;
|
|
728
|
+
border-radius: 3px;
|
|
728
729
|
|
|
729
730
|
&.no-padding {
|
|
730
731
|
padding: 0;
|
|
@@ -1661,103 +1662,104 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
1661
1662
|
}
|
|
1662
1663
|
}
|
|
1663
1664
|
}
|
|
1664
|
-
.wac-
|
|
1665
|
-
|
|
1665
|
+
.wac-dropdown {
|
|
1666
|
+
display: inline-block;
|
|
1667
|
+
width: 40px;
|
|
1668
|
+
height: 40px;
|
|
1669
|
+
|
|
1666
1670
|
&__wrapper {
|
|
1671
|
+
@include flexbox();
|
|
1672
|
+
@include justify-content(center);
|
|
1673
|
+
@include align-items(center);
|
|
1667
1674
|
width: 100%;
|
|
1668
|
-
|
|
1669
|
-
flex-wrap: wrap;
|
|
1670
|
-
justify-content: flex-start;
|
|
1671
|
-
align-items: center;
|
|
1672
|
-
align-content: center;
|
|
1673
|
-
button {
|
|
1674
|
-
position: relative;
|
|
1675
|
-
width: auto;
|
|
1676
|
-
display: flex;
|
|
1677
|
-
align-items: center;
|
|
1678
|
-
font-size: rem(14);
|
|
1679
|
-
line-height: rem(16);
|
|
1680
|
-
font-weight: 500;
|
|
1681
|
-
color: $wac-second-color;
|
|
1682
|
-
border: 1px solid $wac-border-light;
|
|
1683
|
-
border-radius: 3px;
|
|
1684
|
-
background: transparent;
|
|
1685
|
-
box-shadow: none;
|
|
1686
|
-
transition: 0.3s ease;
|
|
1687
|
-
cursor: pointer;
|
|
1688
|
-
padding: 12px 20px;
|
|
1689
|
-
.event {
|
|
1690
|
-
position: absolute;
|
|
1691
|
-
top: 0;
|
|
1692
|
-
left: 0;
|
|
1693
|
-
width: 100%;
|
|
1694
|
-
height: 100%;
|
|
1695
|
-
z-index: 2;
|
|
1696
|
-
display: inline-block;
|
|
1697
|
-
}
|
|
1698
|
-
i {
|
|
1699
|
-
color: $wac-main-text;
|
|
1700
|
-
font-size: rem(14);
|
|
1701
|
-
margin: 0 rem(10) 0 0;
|
|
1702
|
-
}
|
|
1703
|
-
&:hover,
|
|
1704
|
-
&:focus,
|
|
1705
|
-
&.active {
|
|
1706
|
-
border-color: $wac-wizishop-blue;
|
|
1707
|
-
color: $wac-main-text;
|
|
1708
|
-
}
|
|
1709
|
-
&:not(:last-child) {
|
|
1710
|
-
margin: 0 rem(10) 0 0;
|
|
1711
|
-
}
|
|
1712
|
-
}
|
|
1713
|
-
> span {
|
|
1714
|
-
position: relative;
|
|
1715
|
-
color: $wac-link-color;
|
|
1716
|
-
display: inline-block;
|
|
1717
|
-
transition: 0.3s ease;
|
|
1718
|
-
font-size: rem(14);
|
|
1719
|
-
line-height: rem(16);
|
|
1720
|
-
margin: 0 0 0 rem(30);
|
|
1721
|
-
cursor: pointer;
|
|
1722
|
-
z-index: 1;
|
|
1723
|
-
&:before {
|
|
1724
|
-
content: '';
|
|
1725
|
-
display: block;
|
|
1726
|
-
position: absolute;
|
|
1727
|
-
width: 100%;
|
|
1728
|
-
max-width: 0;
|
|
1729
|
-
height: 1px;
|
|
1730
|
-
border-radius: 3px;
|
|
1731
|
-
background-color: darken($wac-link-color, 15%);
|
|
1732
|
-
left: 0;
|
|
1733
|
-
bottom: -2px;
|
|
1734
|
-
transition: 0.3s ease;
|
|
1735
|
-
}
|
|
1736
|
-
&:hover,
|
|
1737
|
-
&:focus {
|
|
1738
|
-
color: darken($wac-link-color, 15%);
|
|
1739
|
-
&:before {
|
|
1740
|
-
max-width: 100%;
|
|
1741
|
-
}
|
|
1742
|
-
}
|
|
1743
|
-
}
|
|
1744
|
-
}
|
|
1745
|
-
}
|
|
1746
|
-
.wac-tab {
|
|
1747
|
-
&__wrapper {
|
|
1675
|
+
height: 100%;
|
|
1748
1676
|
position: relative;
|
|
1749
|
-
@include flexbox();
|
|
1750
|
-
margin-bottom: 30px;
|
|
1751
1677
|
|
|
1752
|
-
&
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1678
|
+
&__icon {
|
|
1679
|
+
font-size: 30px;
|
|
1680
|
+
line-height: 18px;
|
|
1681
|
+
color: $wac-second-color;
|
|
1682
|
+
transition: color 0.3s ease, transform 0.3s ease;
|
|
1683
|
+
}
|
|
1757
1684
|
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1685
|
+
&__sublevel {
|
|
1686
|
+
position: absolute;
|
|
1687
|
+
width: 160px;
|
|
1688
|
+
top: 100%;
|
|
1689
|
+
right: 0;
|
|
1690
|
+
z-index: -1;
|
|
1691
|
+
opacity: 0;
|
|
1692
|
+
background-color: $wac-white;
|
|
1693
|
+
border-radius: rem(3);
|
|
1694
|
+
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
1695
|
+
visibility: hidden;
|
|
1696
|
+
transition: opacity 0.15s ease, z-index 0.15s ease, visibility 0s linear .16s;
|
|
1697
|
+
|
|
1698
|
+
&__container {
|
|
1699
|
+
padding: 10px 10px;
|
|
1700
|
+
border: 1px solid $wac-border-color;
|
|
1701
|
+
|
|
1702
|
+
&__item {
|
|
1703
|
+
padding: 5.7px 10px;
|
|
1704
|
+
font-size: 14px;
|
|
1705
|
+
line-height: 24px;
|
|
1706
|
+
color: $wac-second-color;
|
|
1707
|
+
cursor: pointer;
|
|
1708
|
+
transition: background-color 0.3s ease, color 0.3s ease;
|
|
1709
|
+
display: flex;
|
|
1710
|
+
justify-content: flex-start;
|
|
1711
|
+
align-items: center;
|
|
1712
|
+
align-content: center;
|
|
1713
|
+
|
|
1714
|
+
i {
|
|
1715
|
+
min-width: 15px;
|
|
1716
|
+
margin-right: 5px;
|
|
1717
|
+
text-align: center;
|
|
1718
|
+
}
|
|
1719
|
+
span {
|
|
1720
|
+
white-space: nowrap;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
&:hover {
|
|
1724
|
+
background-color: $wac-gray-background;
|
|
1725
|
+
transition: background-color 0.3s ease, color 0.3s ease;
|
|
1726
|
+
color: $wac-input-active-color;
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
&:hover {
|
|
1733
|
+
.wac-dropdown__wrapper__icon {
|
|
1734
|
+
color: $wac-wizishop-blue;
|
|
1735
|
+
transform: rotate(90deg);
|
|
1736
|
+
transition: color 0.3s ease, transform 0.3s ease;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.wac-dropdown__wrapper__sublevel {
|
|
1740
|
+
visibility: visible;
|
|
1741
|
+
opacity: 1;
|
|
1742
|
+
z-index: 2;
|
|
1743
|
+
transition: visibility 0s ease 0s, opacity 0.3s ease .1s;
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1748
|
+
.wac-tab {
|
|
1749
|
+
&__wrapper {
|
|
1750
|
+
position: relative;
|
|
1751
|
+
@include flexbox();
|
|
1752
|
+
margin-bottom: 30px;
|
|
1753
|
+
|
|
1754
|
+
&__tab {
|
|
1755
|
+
position: relative;
|
|
1756
|
+
font-size: 14px;
|
|
1757
|
+
line-height: 25px;
|
|
1758
|
+
color: $wac-secondary-color;
|
|
1759
|
+
|
|
1760
|
+
&:hover {
|
|
1761
|
+
color: $wac-main-text;
|
|
1762
|
+
transition: color 0.3s ease-in-out;
|
|
1761
1763
|
}
|
|
1762
1764
|
|
|
1763
1765
|
&:not(:last-child) {
|
|
@@ -3007,6 +3009,30 @@ span.wac-tooltip {
|
|
|
3007
3009
|
white-space: nowrap;
|
|
3008
3010
|
}
|
|
3009
3011
|
|
|
3012
|
+
&.animationText {
|
|
3013
|
+
width: rem(40);
|
|
3014
|
+
height: rem(40);
|
|
3015
|
+
padding: 0!important;
|
|
3016
|
+
border-radius: 3px;
|
|
3017
|
+
transition: 0s linear .3s!important;
|
|
3018
|
+
display: flex;
|
|
3019
|
+
justify-content: center;
|
|
3020
|
+
align-items: center;
|
|
3021
|
+
cursor: pointer;
|
|
3022
|
+
border: none;
|
|
3023
|
+
position: relative;
|
|
3024
|
+
&:hover, &:focus {
|
|
3025
|
+
transition: 0s!important;
|
|
3026
|
+
border-radius: 3px 0 0 3px;
|
|
3027
|
+
&.animation-right {
|
|
3028
|
+
border-radius: 0 3px 3px 0;
|
|
3029
|
+
}
|
|
3030
|
+
.wac-button__animation {
|
|
3031
|
+
transition: .3s ease!important;
|
|
3032
|
+
}
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3010
3036
|
&.small {
|
|
3011
3037
|
padding: rem(4) rem(15);
|
|
3012
3038
|
}
|
|
@@ -3024,6 +3050,44 @@ span.wac-tooltip {
|
|
|
3024
3050
|
}
|
|
3025
3051
|
}
|
|
3026
3052
|
|
|
3053
|
+
&__animation {
|
|
3054
|
+
overflow: hidden;
|
|
3055
|
+
max-width: 0;
|
|
3056
|
+
height: 40px;
|
|
3057
|
+
position: absolute;
|
|
3058
|
+
top: 0;
|
|
3059
|
+
left: 95%;
|
|
3060
|
+
z-index: 2;
|
|
3061
|
+
transition: .3s ease!important;
|
|
3062
|
+
.animation-right & {
|
|
3063
|
+
left: auto;
|
|
3064
|
+
right: 94%;
|
|
3065
|
+
> span {
|
|
3066
|
+
border-radius: 3px 0 0 3px;
|
|
3067
|
+
padding: 0 0 0 20px;
|
|
3068
|
+
}
|
|
3069
|
+
}
|
|
3070
|
+
&__text {
|
|
3071
|
+
position: absolute;
|
|
3072
|
+
top: 0;
|
|
3073
|
+
left: 0;
|
|
3074
|
+
width: auto;
|
|
3075
|
+
white-space: nowrap;
|
|
3076
|
+
height: rem(40);
|
|
3077
|
+
line-height: rem(40);
|
|
3078
|
+
color: $wac-white !important;
|
|
3079
|
+
border-radius: 0 3px 3px 0;
|
|
3080
|
+
padding: 0 20px 0 0;
|
|
3081
|
+
font-size: rem(14);
|
|
3082
|
+
.is-success & {
|
|
3083
|
+
background-color: $wac-green-color;
|
|
3084
|
+
}
|
|
3085
|
+
.is-danger & {
|
|
3086
|
+
background-color: $wac-primary-button;
|
|
3087
|
+
}
|
|
3088
|
+
}
|
|
3089
|
+
}
|
|
3090
|
+
|
|
3027
3091
|
&.alone {
|
|
3028
3092
|
padding: 7px 14.6px;
|
|
3029
3093
|
|
|
@@ -3035,7 +3099,7 @@ span.wac-tooltip {
|
|
|
3035
3099
|
&.is-outlined {
|
|
3036
3100
|
&:hover,
|
|
3037
3101
|
&.hover {
|
|
3038
|
-
.wac-button__wrapper {
|
|
3102
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3039
3103
|
color: $wac-white;
|
|
3040
3104
|
transition: color 0.3s ease-in-out;
|
|
3041
3105
|
}
|
|
@@ -3073,7 +3137,7 @@ span.wac-tooltip {
|
|
|
3073
3137
|
background-color: $wac-main-text;
|
|
3074
3138
|
}
|
|
3075
3139
|
|
|
3076
|
-
.wac-button__wrapper {
|
|
3140
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3077
3141
|
color: $wac-main-text;
|
|
3078
3142
|
transition: color 0.3s ease-in-out;
|
|
3079
3143
|
}
|
|
@@ -3082,7 +3146,7 @@ span.wac-tooltip {
|
|
|
3082
3146
|
&.hover {
|
|
3083
3147
|
background-color: $wac-main-text;
|
|
3084
3148
|
border-color: $wac-main-text;
|
|
3085
|
-
.wac-button__wrapper {
|
|
3149
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3086
3150
|
color: $wac-white;
|
|
3087
3151
|
transition: color 0.3s ease-in-out;
|
|
3088
3152
|
}
|
|
@@ -3093,7 +3157,7 @@ span.wac-tooltip {
|
|
|
3093
3157
|
background-color: $wac-main-text;
|
|
3094
3158
|
border-color: $wac-main-text;
|
|
3095
3159
|
transition: background-color 0.3s ease-in-out;
|
|
3096
|
-
.wac-button__wrapper {
|
|
3160
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3097
3161
|
color: $wac-white;
|
|
3098
3162
|
transition: color 0.3s ease-in-out;
|
|
3099
3163
|
}
|
|
@@ -3132,7 +3196,7 @@ span.wac-tooltip {
|
|
|
3132
3196
|
background-color: $wac-wizishop-blue-button-darken;
|
|
3133
3197
|
}
|
|
3134
3198
|
|
|
3135
|
-
.wac-button__wrapper {
|
|
3199
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3136
3200
|
color: $wac-wizishop-blue-button;
|
|
3137
3201
|
transition: color 0.3s ease-in-out;
|
|
3138
3202
|
}
|
|
@@ -3170,7 +3234,7 @@ span.wac-tooltip {
|
|
|
3170
3234
|
border-color: $wac-wizishop-blue-button-disabled;
|
|
3171
3235
|
transition: 0s;
|
|
3172
3236
|
cursor: default;
|
|
3173
|
-
.wac-button__wrapper {
|
|
3237
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3174
3238
|
color: $wac-white;
|
|
3175
3239
|
}
|
|
3176
3240
|
&:hover,
|
|
@@ -3192,7 +3256,7 @@ span.wac-tooltip {
|
|
|
3192
3256
|
background-color: $wac-background-color-darken;
|
|
3193
3257
|
}
|
|
3194
3258
|
|
|
3195
|
-
.wac-button__wrapper {
|
|
3259
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3196
3260
|
color: $wac-second-color;
|
|
3197
3261
|
transition: color 0.3s ease-in-out;
|
|
3198
3262
|
}
|
|
@@ -3219,7 +3283,7 @@ span.wac-tooltip {
|
|
|
3219
3283
|
background-color: $wac-background-color-darken;
|
|
3220
3284
|
}
|
|
3221
3285
|
|
|
3222
|
-
.wac-button__wrapper {
|
|
3286
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3223
3287
|
color: $wac-second-color !important;
|
|
3224
3288
|
transition: color 0.3s ease-in-out;
|
|
3225
3289
|
}
|
|
@@ -3289,7 +3353,7 @@ span.wac-tooltip {
|
|
|
3289
3353
|
background-color: transparent;
|
|
3290
3354
|
border-color: $wac-primary-button;
|
|
3291
3355
|
|
|
3292
|
-
.wac-button__wrapper {
|
|
3356
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3293
3357
|
color: $wac-primary-button;
|
|
3294
3358
|
transition: color 0.3s ease-in-out;
|
|
3295
3359
|
}
|
|
@@ -3331,7 +3395,7 @@ span.wac-tooltip {
|
|
|
3331
3395
|
transition: 0s;
|
|
3332
3396
|
cursor: default;
|
|
3333
3397
|
|
|
3334
|
-
.wac-button__wrapper {
|
|
3398
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3335
3399
|
color: $wac-white;
|
|
3336
3400
|
}
|
|
3337
3401
|
|
|
@@ -3372,7 +3436,7 @@ span.wac-tooltip {
|
|
|
3372
3436
|
background-color: transparent;
|
|
3373
3437
|
border-color: $wac-green-color;
|
|
3374
3438
|
|
|
3375
|
-
.wac-button__wrapper {
|
|
3439
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3376
3440
|
color: $wac-green-color;
|
|
3377
3441
|
transition: color 0.3s ease-in-out;
|
|
3378
3442
|
}
|
|
@@ -3412,7 +3476,7 @@ span.wac-tooltip {
|
|
|
3412
3476
|
transition: 0s;
|
|
3413
3477
|
cursor: default;
|
|
3414
3478
|
|
|
3415
|
-
.wac-button__wrapper {
|
|
3479
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3416
3480
|
color: $wac-white;
|
|
3417
3481
|
}
|
|
3418
3482
|
|
|
@@ -3434,7 +3498,7 @@ span.wac-tooltip {
|
|
|
3434
3498
|
background-color: $wac-hover-btn-grey;
|
|
3435
3499
|
}
|
|
3436
3500
|
|
|
3437
|
-
.wac-button__wrapper {
|
|
3501
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3438
3502
|
color: $wac-secondary-color;
|
|
3439
3503
|
}
|
|
3440
3504
|
|
|
@@ -3457,7 +3521,7 @@ span.wac-tooltip {
|
|
|
3457
3521
|
background-color: $wac-disabled-button-background;
|
|
3458
3522
|
border-color: $wac-border-form;
|
|
3459
3523
|
|
|
3460
|
-
.wac-button__wrapper {
|
|
3524
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3461
3525
|
color: $wac-disabled-button-text;
|
|
3462
3526
|
}
|
|
3463
3527
|
}
|
|
@@ -3465,7 +3529,7 @@ span.wac-tooltip {
|
|
|
3465
3529
|
&.is-outlined {
|
|
3466
3530
|
&:hover,
|
|
3467
3531
|
&.hover {
|
|
3468
|
-
.wac-button__wrapper {
|
|
3532
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3469
3533
|
color: $wac-white;
|
|
3470
3534
|
transition: color 0.3s ease-in-out;
|
|
3471
3535
|
}
|
|
@@ -3530,98 +3594,184 @@ span.wac-tooltip {
|
|
|
3530
3594
|
}
|
|
3531
3595
|
}
|
|
3532
3596
|
}
|
|
3533
|
-
.wac-
|
|
3597
|
+
.wac-edit-in-place.nwb-wrapper {
|
|
3534
3598
|
display: inline-block;
|
|
3535
|
-
|
|
3536
|
-
|
|
3599
|
+
position: relative;
|
|
3600
|
+
width: auto;
|
|
3601
|
+
min-width: 12px;
|
|
3602
|
+
min-height: 1.4em;
|
|
3537
3603
|
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3604
|
+
input {
|
|
3605
|
+
font-size: inherit;
|
|
3606
|
+
transition: width 50ms;
|
|
3607
|
+
position: absolute;
|
|
3608
|
+
top: 0;
|
|
3609
|
+
left: -5px;
|
|
3610
|
+
width: calc(100% + 16px) !important;
|
|
3611
|
+
height: calc(100% + 14px) !important;
|
|
3612
|
+
padding: 5px;
|
|
3613
|
+
z-index: 1;
|
|
3614
|
+
margin: 0;
|
|
3615
|
+
outline: none !important;
|
|
3616
|
+
border: 1px solid $wac-edit-in-place-border;
|
|
3617
|
+
background: inherit;
|
|
3618
|
+
transform: translateY(-17%);
|
|
3619
|
+
background-color: $wac-edit-in-place-background;
|
|
3545
3620
|
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3621
|
+
&.nwb-editable {
|
|
3622
|
+
text-decoration: none;
|
|
3623
|
+
color: inherit;
|
|
3624
|
+
border: none;
|
|
3625
|
+
cursor: pointer;
|
|
3626
|
+
height: 26px;
|
|
3551
3627
|
}
|
|
3552
3628
|
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
right: 0;
|
|
3558
|
-
z-index: -1;
|
|
3559
|
-
opacity: 0;
|
|
3560
|
-
background-color: $wac-white;
|
|
3561
|
-
border-radius: rem(3);
|
|
3562
|
-
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
3563
|
-
visibility: hidden;
|
|
3564
|
-
transition: opacity 0.15s ease, z-index 0.15s ease, visibility 0s linear .16s;
|
|
3565
|
-
|
|
3566
|
-
&__container {
|
|
3567
|
-
padding: 10px 10px;
|
|
3568
|
-
border: 1px solid $wac-border-color;
|
|
3569
|
-
|
|
3570
|
-
&__item {
|
|
3571
|
-
padding: 5.7px 10px;
|
|
3572
|
-
font-size: 14px;
|
|
3573
|
-
line-height: 24px;
|
|
3574
|
-
color: $wac-second-color;
|
|
3575
|
-
cursor: pointer;
|
|
3576
|
-
transition: background-color 0.3s ease, color 0.3s ease;
|
|
3577
|
-
display: flex;
|
|
3578
|
-
justify-content: flex-start;
|
|
3579
|
-
align-items: center;
|
|
3580
|
-
align-content: center;
|
|
3629
|
+
&.nwb-editing {
|
|
3630
|
+
color: $wac-edit-in-place-border;
|
|
3631
|
+
}
|
|
3632
|
+
}
|
|
3581
3633
|
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
text-align: center;
|
|
3586
|
-
}
|
|
3587
|
-
span {
|
|
3588
|
-
white-space: nowrap;
|
|
3589
|
-
}
|
|
3634
|
+
div.select {
|
|
3635
|
+
position: absolute;
|
|
3636
|
+
left: 0;
|
|
3590
3637
|
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
}
|
|
3638
|
+
&:before,
|
|
3639
|
+
&:after {
|
|
3640
|
+
display: block;
|
|
3641
|
+
position: absolute;
|
|
3642
|
+
height: 10px;
|
|
3643
|
+
width: 10px;
|
|
3598
3644
|
}
|
|
3645
|
+
}
|
|
3599
3646
|
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3647
|
+
span.nwb-loader {
|
|
3648
|
+
&.nwb-is-loading {
|
|
3649
|
+
z-index: 2;
|
|
3650
|
+
opacity: 1;
|
|
3651
|
+
position: absolute;
|
|
3652
|
+
top: -7px;
|
|
3653
|
+
left: -7px;
|
|
3654
|
+
width: calc(100% + 16px) !important;
|
|
3655
|
+
height: calc(100% + 14px) !important;
|
|
3656
|
+
min-width: 12px;
|
|
3657
|
+
min-height: 1em;
|
|
3658
|
+
margin: 0;
|
|
3659
|
+
background-size: auto 70%;
|
|
3660
|
+
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");
|
|
3661
|
+
background-repeat: no-repeat;
|
|
3662
|
+
background-position: center center;
|
|
3613
3663
|
}
|
|
3614
3664
|
}
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
}
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3665
|
+
span {
|
|
3666
|
+
color: inherit;
|
|
3667
|
+
font-weight: 500;
|
|
3668
|
+
&:not(.nwb-loader) {
|
|
3669
|
+
display: inline-block;
|
|
3670
|
+
min-width: 12px;
|
|
3671
|
+
}
|
|
3672
|
+
&.nwb-editing {
|
|
3673
|
+
visibility: hidden;
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
&.nwb-is-loading {
|
|
3677
|
+
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
3678
|
+
color: rgba(0, 0, 0, 0.4);
|
|
3679
|
+
opacity: 0.25;
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
&.nwbSelect {
|
|
3683
|
+
cursor: pointer;
|
|
3684
|
+
}
|
|
3685
|
+
}
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
3689
|
+
position: absolute;
|
|
3690
|
+
content: '';
|
|
3691
|
+
border-bottom: dashed 1px $wac-primary;
|
|
3692
|
+
width: 100%;
|
|
3693
|
+
bottom: 0;
|
|
3694
|
+
left: 0;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.wac-edit-in-place.nwbSelect {
|
|
3698
|
+
&__container {
|
|
3699
|
+
display: flex;
|
|
3700
|
+
flex-direction: column;
|
|
3701
|
+
position: absolute;
|
|
3702
|
+
white-space: nowrap;
|
|
3703
|
+
border: solid 1px rgba(0, 0, 0, 0.2);
|
|
3704
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
3705
|
+
border-radius: 3px;
|
|
3706
|
+
top: calc(100% + 7px);
|
|
3707
|
+
|
|
3708
|
+
&::before {
|
|
3709
|
+
position: absolute;
|
|
3710
|
+
top: -7px;
|
|
3711
|
+
left: 9px;
|
|
3712
|
+
content: '';
|
|
3713
|
+
border-left: 7px solid transparent;
|
|
3714
|
+
border-right: 7px solid transparent;
|
|
3715
|
+
border-bottom: 7px solid $wac-edit-in-place-before-border-bottom;
|
|
3716
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
3717
|
+
display: inline-block;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
&::after {
|
|
3721
|
+
position: absolute;
|
|
3722
|
+
top: -6px;
|
|
3723
|
+
left: 10px;
|
|
3724
|
+
content: '';
|
|
3725
|
+
border-left: 6px solid transparent;
|
|
3726
|
+
border-right: 6px solid transparent;
|
|
3727
|
+
border-bottom: 6px solid $wac-white;
|
|
3728
|
+
display: inline-block;
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
&__item {
|
|
3732
|
+
border: none;
|
|
3733
|
+
padding: 8px 10px;
|
|
3734
|
+
background-color: $wac-white;
|
|
3735
|
+
cursor: pointer;
|
|
3736
|
+
transition: all 0.3s ease-in-out;
|
|
3737
|
+
z-index: 3;
|
|
3738
|
+
font-size: rem(12);
|
|
3739
|
+
text-align: left;
|
|
3740
|
+
border-radius: 0;
|
|
3741
|
+
|
|
3742
|
+
&:hover {
|
|
3743
|
+
background-color: darken($wac-white, 10%);
|
|
3744
|
+
color: $wac-main-text;
|
|
3745
|
+
transition: all 0.3s ease-in-out;
|
|
3746
|
+
}
|
|
3747
|
+
|
|
3748
|
+
&--selected,
|
|
3749
|
+
&--selected:hover {
|
|
3750
|
+
background-color: $wac-wizishop-blue;
|
|
3751
|
+
color: $wac-white;
|
|
3752
|
+
transition: all 0.3s ease-in-out;
|
|
3753
|
+
}
|
|
3754
|
+
}
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
&__background {
|
|
3758
|
+
position: fixed;
|
|
3759
|
+
top: 0;
|
|
3760
|
+
left: 0;
|
|
3761
|
+
width: 100vw;
|
|
3762
|
+
height: 100vh;
|
|
3763
|
+
z-index: 2;
|
|
3764
|
+
}
|
|
3765
|
+
}
|
|
3766
|
+
h1.wac-h1 {
|
|
3767
|
+
font-size: rem(30);
|
|
3768
|
+
line-height: rem(35);
|
|
3769
|
+
font-weight: 600;
|
|
3770
|
+
color: $wac-main-text;
|
|
3771
|
+
}
|
|
3772
|
+
.wac-header-page {
|
|
3773
|
+
width: 100%;
|
|
3774
|
+
background-color: transparent;
|
|
3625
3775
|
position: relative;
|
|
3626
3776
|
z-index: 2;
|
|
3627
3777
|
&__maxWidth {
|
|
@@ -4090,174 +4240,88 @@ h4.wac-h4 {
|
|
|
4090
4240
|
}
|
|
4091
4241
|
}
|
|
4092
4242
|
}
|
|
4093
|
-
.wac-
|
|
4094
|
-
display: inline-block;
|
|
4095
|
-
position: relative;
|
|
4096
|
-
width: auto;
|
|
4097
|
-
min-width: 12px;
|
|
4098
|
-
min-height: 1.4em;
|
|
4099
|
-
|
|
4100
|
-
input {
|
|
4101
|
-
font-size: inherit;
|
|
4102
|
-
transition: width 50ms;
|
|
4103
|
-
position: absolute;
|
|
4104
|
-
top: 0;
|
|
4105
|
-
left: -5px;
|
|
4106
|
-
width: calc(100% + 16px) !important;
|
|
4107
|
-
height: calc(100% + 14px) !important;
|
|
4108
|
-
padding: 5px;
|
|
4109
|
-
z-index: 1;
|
|
4110
|
-
margin: 0;
|
|
4111
|
-
outline: none !important;
|
|
4112
|
-
border: 1px solid $wac-edit-in-place-border;
|
|
4113
|
-
background: inherit;
|
|
4114
|
-
transform: translateY(-17%);
|
|
4115
|
-
background-color: $wac-edit-in-place-background;
|
|
4116
|
-
|
|
4117
|
-
&.nwb-editable {
|
|
4118
|
-
text-decoration: none;
|
|
4119
|
-
color: inherit;
|
|
4120
|
-
border: none;
|
|
4121
|
-
cursor: pointer;
|
|
4122
|
-
height: 26px;
|
|
4123
|
-
}
|
|
4124
|
-
|
|
4125
|
-
&.nwb-editing {
|
|
4126
|
-
color: $wac-edit-in-place-border;
|
|
4127
|
-
}
|
|
4128
|
-
}
|
|
4129
|
-
|
|
4130
|
-
div.select {
|
|
4131
|
-
position: absolute;
|
|
4132
|
-
left: 0;
|
|
4133
|
-
|
|
4134
|
-
&:before,
|
|
4135
|
-
&:after {
|
|
4136
|
-
display: block;
|
|
4137
|
-
position: absolute;
|
|
4138
|
-
height: 10px;
|
|
4139
|
-
width: 10px;
|
|
4140
|
-
}
|
|
4141
|
-
}
|
|
4142
|
-
|
|
4143
|
-
span.nwb-loader {
|
|
4144
|
-
&.nwb-is-loading {
|
|
4145
|
-
z-index: 2;
|
|
4146
|
-
opacity: 1;
|
|
4147
|
-
position: absolute;
|
|
4148
|
-
top: -7px;
|
|
4149
|
-
left: -7px;
|
|
4150
|
-
width: calc(100% + 16px) !important;
|
|
4151
|
-
height: calc(100% + 14px) !important;
|
|
4152
|
-
min-width: 12px;
|
|
4153
|
-
min-height: 1em;
|
|
4154
|
-
margin: 0;
|
|
4155
|
-
background-size: auto 70%;
|
|
4156
|
-
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");
|
|
4157
|
-
background-repeat: no-repeat;
|
|
4158
|
-
background-position: center center;
|
|
4159
|
-
}
|
|
4160
|
-
}
|
|
4161
|
-
span {
|
|
4162
|
-
color: inherit;
|
|
4163
|
-
font-weight: 500;
|
|
4164
|
-
&:not(.nwb-loader) {
|
|
4165
|
-
display: inline-block;
|
|
4166
|
-
min-width: 12px;
|
|
4167
|
-
}
|
|
4168
|
-
&.nwb-editing {
|
|
4169
|
-
visibility: hidden;
|
|
4170
|
-
}
|
|
4171
|
-
|
|
4172
|
-
&.nwb-is-loading {
|
|
4173
|
-
text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.6);
|
|
4174
|
-
color: rgba(0, 0, 0, 0.4);
|
|
4175
|
-
opacity: 0.25;
|
|
4176
|
-
}
|
|
4177
|
-
|
|
4178
|
-
&.nwbSelect {
|
|
4179
|
-
cursor: pointer;
|
|
4180
|
-
}
|
|
4181
|
-
}
|
|
4182
|
-
}
|
|
4183
|
-
|
|
4184
|
-
.wac-edit-in-place.nwb-wrapper--editable::after {
|
|
4185
|
-
position: absolute;
|
|
4186
|
-
content: '';
|
|
4187
|
-
border-bottom: dashed 1px $wac-primary;
|
|
4243
|
+
.wac-filters {
|
|
4188
4244
|
width: 100%;
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
}
|
|
4192
|
-
|
|
4193
|
-
.wac-edit-in-place.nwbSelect {
|
|
4194
|
-
&__container {
|
|
4245
|
+
&__wrapper {
|
|
4246
|
+
width: 100%;
|
|
4195
4247
|
display: flex;
|
|
4196
|
-
flex-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
border
|
|
4210
|
-
border-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4248
|
+
flex-wrap: wrap;
|
|
4249
|
+
justify-content: flex-start;
|
|
4250
|
+
align-items: center;
|
|
4251
|
+
align-content: center;
|
|
4252
|
+
button {
|
|
4253
|
+
position: relative;
|
|
4254
|
+
width: auto;
|
|
4255
|
+
display: flex;
|
|
4256
|
+
align-items: center;
|
|
4257
|
+
font-size: rem(14);
|
|
4258
|
+
line-height: rem(16);
|
|
4259
|
+
font-weight: 400;
|
|
4260
|
+
color: $wac-second-color;
|
|
4261
|
+
border: 1px solid $wac-border-light;
|
|
4262
|
+
border-radius: 3px;
|
|
4263
|
+
background: transparent;
|
|
4264
|
+
box-shadow: none;
|
|
4265
|
+
margin-bottom: rem(10);
|
|
4266
|
+
transition: 0.3s ease;
|
|
4267
|
+
cursor: pointer;
|
|
4268
|
+
padding: 12px 20px;
|
|
4269
|
+
.event {
|
|
4270
|
+
position: absolute;
|
|
4271
|
+
top: 0;
|
|
4272
|
+
left: 0;
|
|
4273
|
+
width: 100%;
|
|
4274
|
+
height: 100%;
|
|
4275
|
+
z-index: 2;
|
|
4276
|
+
display: inline-block;
|
|
4277
|
+
}
|
|
4278
|
+
i {
|
|
4279
|
+
color: $wac-main-text;
|
|
4280
|
+
font-size: rem(14);
|
|
4281
|
+
margin: 0 rem(10) 0 0;
|
|
4282
|
+
}
|
|
4283
|
+
&:hover,
|
|
4284
|
+
&:focus,
|
|
4285
|
+
&.active {
|
|
4286
|
+
border-color: $wac-wizishop-blue;
|
|
4287
|
+
color: $wac-main-text;
|
|
4288
|
+
}
|
|
4289
|
+
&:not(:last-child) {
|
|
4290
|
+
margin: 0 rem(10) rem(10) 0;
|
|
4291
|
+
}
|
|
4214
4292
|
}
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
top: -6px;
|
|
4219
|
-
left: 10px;
|
|
4220
|
-
content: '';
|
|
4221
|
-
border-left: 6px solid transparent;
|
|
4222
|
-
border-right: 6px solid transparent;
|
|
4223
|
-
border-bottom: 6px solid $wac-white;
|
|
4293
|
+
> span {
|
|
4294
|
+
position: relative;
|
|
4295
|
+
color: $wac-link-color;
|
|
4224
4296
|
display: inline-block;
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
padding: 8px 10px;
|
|
4230
|
-
background-color: $wac-white;
|
|
4297
|
+
transition: 0.3s ease;
|
|
4298
|
+
font-size: rem(14);
|
|
4299
|
+
line-height: rem(16);
|
|
4300
|
+
margin: 0 0 0 rem(30);
|
|
4231
4301
|
cursor: pointer;
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4302
|
+
z-index: 1;
|
|
4303
|
+
&:before {
|
|
4304
|
+
content: '';
|
|
4305
|
+
display: block;
|
|
4306
|
+
position: absolute;
|
|
4307
|
+
width: 100%;
|
|
4308
|
+
max-width: 0;
|
|
4309
|
+
height: 1px;
|
|
4310
|
+
border-radius: 3px;
|
|
4311
|
+
background-color: darken($wac-link-color, 15%);
|
|
4312
|
+
left: 0;
|
|
4313
|
+
bottom: -2px;
|
|
4314
|
+
transition: 0.3s ease;
|
|
4242
4315
|
}
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4316
|
+
&:hover,
|
|
4317
|
+
&:focus {
|
|
4318
|
+
color: darken($wac-link-color, 15%);
|
|
4319
|
+
&:before {
|
|
4320
|
+
max-width: 100%;
|
|
4321
|
+
}
|
|
4249
4322
|
}
|
|
4250
4323
|
}
|
|
4251
4324
|
}
|
|
4252
|
-
|
|
4253
|
-
&__background {
|
|
4254
|
-
position: fixed;
|
|
4255
|
-
top: 0;
|
|
4256
|
-
left: 0;
|
|
4257
|
-
width: 100vw;
|
|
4258
|
-
height: 100vh;
|
|
4259
|
-
z-index: 2;
|
|
4260
|
-
}
|
|
4261
4325
|
}
|
|
4262
4326
|
|
|
4263
4327
|
|