@wizishop/angular-components 0.0.131 → 0.0.132
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
CHANGED
|
@@ -108,6 +108,8 @@ $wac-button-tab-background: #EAEDF5!default;
|
|
|
108
108
|
|
|
109
109
|
$wac-color-success-popup-alert: #6DCC95!default;
|
|
110
110
|
|
|
111
|
+
$wac-background-indication: #EDEFF2!default;
|
|
112
|
+
|
|
111
113
|
.zindexToggle {
|
|
112
114
|
z-index: 9!important;
|
|
113
115
|
position: relative;
|
|
@@ -2257,6 +2259,68 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2257
2259
|
}
|
|
2258
2260
|
}
|
|
2259
2261
|
}
|
|
2262
|
+
.wac-text {
|
|
2263
|
+
font-size: rem(14);
|
|
2264
|
+
line-height: rem(25);
|
|
2265
|
+
color: $wac-main-text;
|
|
2266
|
+
margin: 0 0 rem(30);
|
|
2267
|
+
&.grey {
|
|
2268
|
+
color: $wac-second-color;
|
|
2269
|
+
}
|
|
2270
|
+
&.yellow {
|
|
2271
|
+
color: $wac-warning-color;
|
|
2272
|
+
}
|
|
2273
|
+
&.red {
|
|
2274
|
+
color: $wac-primary;
|
|
2275
|
+
}
|
|
2276
|
+
&.label {
|
|
2277
|
+
color: $placeholder-color;
|
|
2278
|
+
}
|
|
2279
|
+
&.optional {
|
|
2280
|
+
font-size: rem(12);
|
|
2281
|
+
line-height: rem(23);
|
|
2282
|
+
color: $color-text-grey;
|
|
2283
|
+
font-style: italic;
|
|
2284
|
+
}
|
|
2285
|
+
p {
|
|
2286
|
+
font: inherit;
|
|
2287
|
+
line-height: inherit;
|
|
2288
|
+
color: inherit;
|
|
2289
|
+
margin: inherit;
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2292
|
+
.wac-label {
|
|
2293
|
+
@include flexbox();
|
|
2294
|
+
background-color: $wac-gray-background;
|
|
2295
|
+
border-radius: 3px;
|
|
2296
|
+
border: 1px solid $wac-gray-background;
|
|
2297
|
+
transition: border-color 0.3s ease-in-out;
|
|
2298
|
+
|
|
2299
|
+
&__wrapper {
|
|
2300
|
+
padding: 7.5px 13px;
|
|
2301
|
+
font-size: 14px;
|
|
2302
|
+
line-height: 16px;
|
|
2303
|
+
color: $wac-second-color;
|
|
2304
|
+
|
|
2305
|
+
i {
|
|
2306
|
+
margin-left: 10px;
|
|
2307
|
+
font-size: 12px;
|
|
2308
|
+
line-height: 23px;
|
|
2309
|
+
color: $wac-border-form;
|
|
2310
|
+
transition: color 0.3s ease-in-out;
|
|
2311
|
+
}
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
&:hover {
|
|
2315
|
+
border-color: $wac-input-border;
|
|
2316
|
+
transition: border-color 0.3s ease-in-out;
|
|
2317
|
+
|
|
2318
|
+
.wac-label__wrapper i {
|
|
2319
|
+
color: $wac-second-color;
|
|
2320
|
+
transition: color 0.3s ease-in-out;
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
}
|
|
2260
2324
|
.wac-tag {
|
|
2261
2325
|
display: flex;
|
|
2262
2326
|
align-items: center;
|
|
@@ -2366,68 +2430,6 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2366
2430
|
}
|
|
2367
2431
|
}
|
|
2368
2432
|
}
|
|
2369
|
-
.wac-label {
|
|
2370
|
-
@include flexbox();
|
|
2371
|
-
background-color: $wac-gray-background;
|
|
2372
|
-
border-radius: 3px;
|
|
2373
|
-
border: 1px solid $wac-gray-background;
|
|
2374
|
-
transition: border-color 0.3s ease-in-out;
|
|
2375
|
-
|
|
2376
|
-
&__wrapper {
|
|
2377
|
-
padding: 7.5px 13px;
|
|
2378
|
-
font-size: 14px;
|
|
2379
|
-
line-height: 16px;
|
|
2380
|
-
color: $wac-second-color;
|
|
2381
|
-
|
|
2382
|
-
i {
|
|
2383
|
-
margin-left: 10px;
|
|
2384
|
-
font-size: 12px;
|
|
2385
|
-
line-height: 23px;
|
|
2386
|
-
color: $wac-border-form;
|
|
2387
|
-
transition: color 0.3s ease-in-out;
|
|
2388
|
-
}
|
|
2389
|
-
}
|
|
2390
|
-
|
|
2391
|
-
&:hover {
|
|
2392
|
-
border-color: $wac-input-border;
|
|
2393
|
-
transition: border-color 0.3s ease-in-out;
|
|
2394
|
-
|
|
2395
|
-
.wac-label__wrapper i {
|
|
2396
|
-
color: $wac-second-color;
|
|
2397
|
-
transition: color 0.3s ease-in-out;
|
|
2398
|
-
}
|
|
2399
|
-
}
|
|
2400
|
-
}
|
|
2401
|
-
.wac-text {
|
|
2402
|
-
font-size: rem(14);
|
|
2403
|
-
line-height: rem(25);
|
|
2404
|
-
color: $wac-main-text;
|
|
2405
|
-
margin: 0 0 rem(30);
|
|
2406
|
-
&.grey {
|
|
2407
|
-
color: $wac-second-color;
|
|
2408
|
-
}
|
|
2409
|
-
&.yellow {
|
|
2410
|
-
color: $wac-warning-color;
|
|
2411
|
-
}
|
|
2412
|
-
&.red {
|
|
2413
|
-
color: $wac-primary;
|
|
2414
|
-
}
|
|
2415
|
-
&.label {
|
|
2416
|
-
color: $placeholder-color;
|
|
2417
|
-
}
|
|
2418
|
-
&.optional {
|
|
2419
|
-
font-size: rem(12);
|
|
2420
|
-
line-height: rem(23);
|
|
2421
|
-
color: $color-text-grey;
|
|
2422
|
-
font-style: italic;
|
|
2423
|
-
}
|
|
2424
|
-
p {
|
|
2425
|
-
font: inherit;
|
|
2426
|
-
line-height: inherit;
|
|
2427
|
-
color: inherit;
|
|
2428
|
-
margin: inherit;
|
|
2429
|
-
}
|
|
2430
|
-
}
|
|
2431
2433
|
.wac-loader {
|
|
2432
2434
|
&.is-small {
|
|
2433
2435
|
position: absolute;
|
|
@@ -5909,17 +5911,21 @@ div.wac-field-input-search {
|
|
|
5909
5911
|
.wac-input {
|
|
5910
5912
|
.indication {
|
|
5911
5913
|
position: absolute;
|
|
5912
|
-
right:
|
|
5913
|
-
top:
|
|
5914
|
-
height:
|
|
5915
|
-
color: $wac-
|
|
5914
|
+
right: 0;
|
|
5915
|
+
top: 0;
|
|
5916
|
+
height: 40px;
|
|
5917
|
+
color: $wac-main-text;
|
|
5916
5918
|
font-size: rem(14);
|
|
5917
|
-
padding: 7.5px
|
|
5918
|
-
background-color: $
|
|
5919
|
-
border
|
|
5919
|
+
padding: 7.5px 15px;
|
|
5920
|
+
background-color: $wac-background-indication;
|
|
5921
|
+
border: none;
|
|
5920
5922
|
border-radius: 3px 3px 0 0;
|
|
5921
5923
|
white-space: nowrap;
|
|
5922
5924
|
transition: .3s ease;
|
|
5925
|
+
font-weight: 500;
|
|
5926
|
+
display: flex;
|
|
5927
|
+
align-items: center;
|
|
5928
|
+
z-index: 2;
|
|
5923
5929
|
&.reverse {
|
|
5924
5930
|
right: auto;
|
|
5925
5931
|
left: 1px;
|
package/package.json
CHANGED
|
index aae0fde..53e560b 100644
|
|
|
Binary file
|