@wizishop/angular-components 0.0.66 → 0.0.67
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
|
@@ -118,6 +118,14 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
118
118
|
width: rem(36);
|
|
119
119
|
height: rem(36);
|
|
120
120
|
}
|
|
121
|
+
|
|
122
|
+
.wac-table__head__cell--checkbox .wac-field-checkbox.alone .is-checkradio[type=checkbox]:not(:checked) + label:before {
|
|
123
|
+
background-color: $wac-white;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.wac-table__head__cell--checkbox .wac-field-checkbox__row {
|
|
127
|
+
transform: translateX(5px);
|
|
128
|
+
}
|
|
121
129
|
.wac-radio {
|
|
122
130
|
.is-checkradio[type='radio'] {
|
|
123
131
|
outline: 0 !important;
|
|
@@ -2296,9 +2304,10 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2296
2304
|
}
|
|
2297
2305
|
}
|
|
2298
2306
|
}
|
|
2299
|
-
.wac-
|
|
2300
|
-
|
|
2301
|
-
|
|
2307
|
+
.wac-info {
|
|
2308
|
+
display: inline-block;
|
|
2309
|
+
width: 40px;
|
|
2310
|
+
height: 40px;
|
|
2302
2311
|
|
|
2303
2312
|
&__wrapper {
|
|
2304
2313
|
@include flexbox();
|
|
@@ -2306,20 +2315,48 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2306
2315
|
@include align-items(center);
|
|
2307
2316
|
width: 100%;
|
|
2308
2317
|
height: 100%;
|
|
2309
|
-
|
|
2310
|
-
border: 1px solid $wac-border-light;
|
|
2311
|
-
background-position: center;
|
|
2312
|
-
background-size: contain;
|
|
2313
|
-
background-repeat: no-repeat;
|
|
2318
|
+
position: relative;
|
|
2314
2319
|
|
|
2315
|
-
|
|
2316
|
-
|
|
2320
|
+
i {
|
|
2321
|
+
font-size: 14px;
|
|
2322
|
+
line-height: 25px;
|
|
2323
|
+
color: $wac-second-color;
|
|
2324
|
+
transition: color 0.3s ease-in-out;
|
|
2317
2325
|
}
|
|
2318
2326
|
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2327
|
+
&__sublevel {
|
|
2328
|
+
position: absolute;
|
|
2329
|
+
width: 350px;
|
|
2330
|
+
top: 13px;
|
|
2331
|
+
left: 100%;
|
|
2332
|
+
z-index: -1;
|
|
2333
|
+
opacity: 0;
|
|
2334
|
+
background-color: $wac-white;
|
|
2335
|
+
border-radius: rem(3);
|
|
2336
|
+
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
2337
|
+
visibility: hidden;
|
|
2338
|
+
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
2339
|
+
|
|
2340
|
+
&__container {
|
|
2341
|
+
padding: 15px 20px;
|
|
2342
|
+
font-size: rem(14);
|
|
2343
|
+
line-height: rem(25);
|
|
2344
|
+
color: $wac-second-color;
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
&:hover {
|
|
2349
|
+
i {
|
|
2350
|
+
color: $wac-input-active-color;
|
|
2351
|
+
transition: color 0.3s ease-in-out;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.wac-info__wrapper__sublevel {
|
|
2355
|
+
visibility: visible;
|
|
2356
|
+
opacity: 1;
|
|
2357
|
+
z-index: 2;
|
|
2358
|
+
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
2359
|
+
}
|
|
2323
2360
|
}
|
|
2324
2361
|
}
|
|
2325
2362
|
}
|
|
@@ -3632,10 +3669,9 @@ h1.wac-h1 {
|
|
|
3632
3669
|
font-weight: 600;
|
|
3633
3670
|
color: $wac-main-text;
|
|
3634
3671
|
}
|
|
3635
|
-
.wac-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
height: 40px;
|
|
3672
|
+
.wac-image {
|
|
3673
|
+
width: 60px;
|
|
3674
|
+
height: 60px;
|
|
3639
3675
|
|
|
3640
3676
|
&__wrapper {
|
|
3641
3677
|
@include flexbox();
|
|
@@ -3643,48 +3679,20 @@ h1.wac-h1 {
|
|
|
3643
3679
|
@include align-items(center);
|
|
3644
3680
|
width: 100%;
|
|
3645
3681
|
height: 100%;
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
color: $wac-second-color;
|
|
3652
|
-
transition: color 0.3s ease-in-out;
|
|
3653
|
-
}
|
|
3654
|
-
|
|
3655
|
-
&__sublevel {
|
|
3656
|
-
position: absolute;
|
|
3657
|
-
width: 350px;
|
|
3658
|
-
top: 13px;
|
|
3659
|
-
left: 100%;
|
|
3660
|
-
z-index: -1;
|
|
3661
|
-
opacity: 0;
|
|
3662
|
-
background-color: $wac-white;
|
|
3663
|
-
border-radius: rem(3);
|
|
3664
|
-
box-shadow: 0px 2px 5px $wac-info-box-shadow;
|
|
3665
|
-
visibility: hidden;
|
|
3666
|
-
transition: opacity 0.15s ease-in-out, z-index 0.15s ease-in-out, visibility 0s linear 0.16s;
|
|
3682
|
+
border-radius: 3px;
|
|
3683
|
+
border: 1px solid $wac-border-light;
|
|
3684
|
+
background-position: center;
|
|
3685
|
+
background-size: contain;
|
|
3686
|
+
background-repeat: no-repeat;
|
|
3667
3687
|
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
font-size: rem(14);
|
|
3671
|
-
line-height: rem(25);
|
|
3672
|
-
color: $wac-second-color;
|
|
3673
|
-
}
|
|
3688
|
+
&.empty {
|
|
3689
|
+
background-color: $wac-gray-background;
|
|
3674
3690
|
}
|
|
3675
3691
|
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
}
|
|
3681
|
-
|
|
3682
|
-
.wac-info__wrapper__sublevel {
|
|
3683
|
-
visibility: visible;
|
|
3684
|
-
opacity: 1;
|
|
3685
|
-
z-index: 2;
|
|
3686
|
-
transition: visibility 0s ease 0s, opacity 0.3s ease-in-out .1s;
|
|
3687
|
-
}
|
|
3692
|
+
i {
|
|
3693
|
+
color: $wac-border-form;
|
|
3694
|
+
font-size: 25px;
|
|
3695
|
+
line-height: 23px;
|
|
3688
3696
|
}
|
|
3689
3697
|
}
|
|
3690
3698
|
}
|
package/package.json
CHANGED
|
index 55446bb..e0434b0 100644
|
|
|
Binary file
|