@wizishop/angular-components 15.1.150 → 15.1.151
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
|
@@ -489,6 +489,33 @@ $wac-tab-colunm-blue: #3ba6ec!default;.zindexToggle {
|
|
|
489
489
|
font-size: rem(20);
|
|
490
490
|
}
|
|
491
491
|
}
|
|
492
|
+
.wac-back {
|
|
493
|
+
width: 40px;
|
|
494
|
+
height: 40px;
|
|
495
|
+
|
|
496
|
+
&__wrapper {
|
|
497
|
+
@include flexbox();
|
|
498
|
+
@include justify-content(center);
|
|
499
|
+
@include align-items(center);
|
|
500
|
+
width: 100%;
|
|
501
|
+
height: 100%;
|
|
502
|
+
border-radius: 3px;
|
|
503
|
+
border: 1px solid $wac-border-light;
|
|
504
|
+
background-color: transparent;
|
|
505
|
+
transition: border-color 0.3s ease-in-out;
|
|
506
|
+
|
|
507
|
+
i {
|
|
508
|
+
color: $wac-second-color;
|
|
509
|
+
font-size: 11px;
|
|
510
|
+
line-height: 14px;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
&:hover {
|
|
514
|
+
border-color: $wac-back-border-hover;
|
|
515
|
+
transition: border-color 0.3s ease-in-out;
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
}
|
|
492
519
|
.wac-alert-popup {
|
|
493
520
|
.alert {
|
|
494
521
|
z-index: 999999;
|
|
@@ -772,52 +799,6 @@ $wac-tab-colunm-blue: #3ba6ec!default;.zindexToggle {
|
|
|
772
799
|
}
|
|
773
800
|
|
|
774
801
|
}
|
|
775
|
-
.wac-back {
|
|
776
|
-
width: 40px;
|
|
777
|
-
height: 40px;
|
|
778
|
-
|
|
779
|
-
&__wrapper {
|
|
780
|
-
@include flexbox();
|
|
781
|
-
@include justify-content(center);
|
|
782
|
-
@include align-items(center);
|
|
783
|
-
width: 100%;
|
|
784
|
-
height: 100%;
|
|
785
|
-
border-radius: 3px;
|
|
786
|
-
border: 1px solid $wac-border-light;
|
|
787
|
-
background-color: transparent;
|
|
788
|
-
transition: border-color 0.3s ease-in-out;
|
|
789
|
-
|
|
790
|
-
i {
|
|
791
|
-
color: $wac-second-color;
|
|
792
|
-
font-size: 11px;
|
|
793
|
-
line-height: 14px;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
&:hover {
|
|
797
|
-
border-color: $wac-back-border-hover;
|
|
798
|
-
transition: border-color 0.3s ease-in-out;
|
|
799
|
-
}
|
|
800
|
-
}
|
|
801
|
-
}
|
|
802
|
-
wac-block {
|
|
803
|
-
.wac-block {
|
|
804
|
-
background-color: $white;
|
|
805
|
-
@include padding(rem(30));
|
|
806
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
807
|
-
@include simple_transition();
|
|
808
|
-
height: 100%;
|
|
809
|
-
border-radius: var(--wac-block-border-radius);
|
|
810
|
-
|
|
811
|
-
@include media('<tablet') {
|
|
812
|
-
@include padding(rem(20));
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
&:hover {
|
|
816
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
817
|
-
}
|
|
818
|
-
}
|
|
819
|
-
}
|
|
820
|
-
|
|
821
802
|
.block-with-checkbox {
|
|
822
803
|
width: 100%;
|
|
823
804
|
display: flex;
|
|
@@ -958,6 +939,25 @@ wac-block {
|
|
|
958
939
|
margin-right: 0;
|
|
959
940
|
}
|
|
960
941
|
}
|
|
942
|
+
wac-block {
|
|
943
|
+
.wac-block {
|
|
944
|
+
background-color: $white;
|
|
945
|
+
@include padding(rem(30));
|
|
946
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
947
|
+
@include simple_transition();
|
|
948
|
+
height: 100%;
|
|
949
|
+
border-radius: var(--wac-block-border-radius);
|
|
950
|
+
|
|
951
|
+
@include media('<tablet') {
|
|
952
|
+
@include padding(rem(20));
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
&:hover {
|
|
956
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
|
|
961
961
|
.w-border-picker {
|
|
962
962
|
display: flex;
|
|
963
963
|
flex-direction: column;
|
|
@@ -9339,8 +9339,6 @@ span.wac-tooltip {
|
|
|
9339
9339
|
|
|
9340
9340
|
button {
|
|
9341
9341
|
&.block {
|
|
9342
|
-
width: 100%;
|
|
9343
|
-
height: 100%;
|
|
9344
9342
|
display: flex;
|
|
9345
9343
|
align-items: center;
|
|
9346
9344
|
padding: rem(11) rem(15);
|
package/package.json
CHANGED
package/{wizishop-angular-components-15.1.150.tgz → wizishop-angular-components-15.1.151.tgz}
RENAMED
|
index c13ab4f..a5ca3c7 100644
|
|
|
Binary file
|