@wizishop/angular-components 0.0.237 → 0.0.239
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 +514 -294
- package/bundles/wizishop-angular-components.umd.js +3 -1
- 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 +4 -2
- package/fesm2015/wizishop-angular-components.js +3 -1
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/button/button.component.d.ts +1 -0
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.239.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.237.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -7,7 +7,7 @@ $wac-table-background-color: #fafafa!default;
|
|
|
7
7
|
$wac-bleu-color: #52aecd!default;
|
|
8
8
|
$wac-red-color: #ff1800!default;
|
|
9
9
|
$wac-border-color: #cfd4e4!default;
|
|
10
|
-
$wac-border-form: #
|
|
10
|
+
$wac-border-form: #DEE2ED!default;
|
|
11
11
|
$wac-border-light: #cfd4e4!default;
|
|
12
12
|
$wac-color-loader2: #a2c739!default;
|
|
13
13
|
$wac-color-loader: #4baed0!default;
|
|
@@ -534,97 +534,241 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
534
534
|
}
|
|
535
535
|
}
|
|
536
536
|
}
|
|
537
|
-
.
|
|
537
|
+
.wac-search {
|
|
538
538
|
width: 100%;
|
|
539
|
+
min-height: 50px;
|
|
540
|
+
border-radius: 3px;
|
|
541
|
+
background-color: $wac-white;
|
|
542
|
+
position: relative;
|
|
543
|
+
z-index: 2;
|
|
544
|
+
border: 1px solid $wac-border-light;
|
|
545
|
+
transition: 0.3s ease;
|
|
546
|
+
&.open {
|
|
547
|
+
border-color: $wac-wizishop-blue;
|
|
548
|
+
}
|
|
539
549
|
&__wrapper {
|
|
550
|
+
position: relative;
|
|
540
551
|
display: flex;
|
|
541
|
-
|
|
542
|
-
align-items:
|
|
543
|
-
|
|
544
|
-
|
|
552
|
+
justify-content: space-between;
|
|
553
|
+
align-items: stretch;
|
|
554
|
+
align-content: stretch;
|
|
555
|
+
flex-wrap: nowrap;
|
|
556
|
+
width: 100%;
|
|
557
|
+
min-height: 50px;
|
|
558
|
+
@include media('<tablet') {
|
|
559
|
+
padding: 0 12px;
|
|
560
|
+
}
|
|
561
|
+
input {
|
|
562
|
+
background: transparent;
|
|
563
|
+
border: none;
|
|
564
|
+
color: $wac-main-text;
|
|
565
|
+
font-size: rem(14);
|
|
566
|
+
height: 50px;
|
|
567
|
+
line-height: 50px;
|
|
568
|
+
padding: 0 20px 0 48px;
|
|
569
|
+
font-weight: 400;
|
|
545
570
|
width: 100%;
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
justify-content: space-between;
|
|
549
|
-
padding: 10px 20px;
|
|
550
|
-
background-color: $wac-gray-background;
|
|
551
|
-
margin: 0 0 10px;
|
|
552
|
-
> p {
|
|
553
|
-
display: flex;
|
|
554
|
-
align-items: center;
|
|
555
|
-
white-space: nowrap;
|
|
556
|
-
font-size: rem(16);
|
|
557
|
-
line-height: rem(19);
|
|
558
|
-
font-weight: 500;
|
|
571
|
+
@include media('<tablet') {
|
|
572
|
+
padding: 0 0 0 10px;
|
|
559
573
|
}
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
@include media('>=1024px') {
|
|
568
|
-
display: none;
|
|
569
|
-
}
|
|
574
|
+
&::-webkit-input-placeholder {
|
|
575
|
+
/* Chrome/Opera/Safari */
|
|
576
|
+
color: $wac-multiple-search-input-color;
|
|
577
|
+
opacity: 1;
|
|
578
|
+
font-weight: 400;
|
|
579
|
+
@include media('<tablet') {
|
|
580
|
+
font-size: rem(11);
|
|
570
581
|
}
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
582
|
+
}
|
|
583
|
+
&::-moz-placeholder {
|
|
584
|
+
/* Firefox 19+ */
|
|
585
|
+
color: $wac-multiple-search-input-color;
|
|
586
|
+
opacity: 1;
|
|
587
|
+
font-weight: 400;
|
|
588
|
+
@include media('<tablet') {
|
|
589
|
+
font-size: rem(11);
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
&:-ms-input-placeholder {
|
|
593
|
+
/* IE 10+ */
|
|
594
|
+
color: $wac-multiple-search-input-color;
|
|
595
|
+
opacity: 1;
|
|
596
|
+
font-weight: 400;
|
|
597
|
+
@include media('<tablet') {
|
|
598
|
+
font-size: rem(11);
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
&:-moz-placeholder {
|
|
602
|
+
/* Firefox 18- */
|
|
603
|
+
color: $wac-multiple-search-input-color;
|
|
604
|
+
opacity: 1;
|
|
605
|
+
font-weight: 400;
|
|
606
|
+
@include media('<tablet') {
|
|
607
|
+
font-size: rem(11);
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
&:focus {
|
|
611
|
+
& + button i {
|
|
612
|
+
color: $wac-main-text;
|
|
613
|
+
}
|
|
614
|
+
&::-webkit-input-placeholder {
|
|
615
|
+
/* Chrome/Opera/Safari */
|
|
616
|
+
color: $wac-white;
|
|
617
|
+
opacity: 1;
|
|
618
|
+
}
|
|
619
|
+
&::-moz-placeholder {
|
|
620
|
+
/* Firefox 19+ */
|
|
621
|
+
color: $wac-white;
|
|
622
|
+
opacity: 1;
|
|
623
|
+
}
|
|
624
|
+
&:-ms-input-placeholder {
|
|
625
|
+
/* IE 10+ */
|
|
626
|
+
color: $wac-white;
|
|
627
|
+
opacity: 1;
|
|
628
|
+
}
|
|
629
|
+
&:-moz-placeholder {
|
|
630
|
+
/* Firefox 18- */
|
|
631
|
+
color: $wac-white;
|
|
632
|
+
opacity: 1;
|
|
576
633
|
}
|
|
577
|
-
|
|
578
634
|
}
|
|
579
|
-
|
|
580
635
|
}
|
|
581
|
-
|
|
636
|
+
button {
|
|
637
|
+
display: flex;
|
|
638
|
+
align-items: center;
|
|
639
|
+
align-content: center;
|
|
640
|
+
justify-content: center;
|
|
641
|
+
width: 18px;
|
|
642
|
+
height: 18px;
|
|
643
|
+
border-radius: 3px;
|
|
644
|
+
position: absolute;
|
|
645
|
+
left: 20px;
|
|
646
|
+
top: 50%;
|
|
647
|
+
transform: translateY(-50%);
|
|
648
|
+
border: none;
|
|
649
|
+
cursor: pointer;
|
|
650
|
+
background-color: $wac-white;
|
|
651
|
+
i {
|
|
652
|
+
font-size: rem(18);
|
|
653
|
+
color: $wac-color-icon-search-multiple-search;
|
|
654
|
+
transition: 0.3s ease;
|
|
655
|
+
}
|
|
656
|
+
&:hover {
|
|
657
|
+
i {
|
|
658
|
+
color: $wac-wizishop-blue !important;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
&__absolute {
|
|
664
|
+
position: absolute;
|
|
665
|
+
top: 100%;
|
|
666
|
+
margin-top: rem(14);
|
|
667
|
+
left: -1px;
|
|
668
|
+
width: auto;
|
|
669
|
+
min-width: calc(100% - 38px);
|
|
670
|
+
max-width: calc(100% + 2px);
|
|
671
|
+
border: 1px solid $wac-border-light;
|
|
672
|
+
border-radius: 3px;
|
|
673
|
+
display: flex;
|
|
674
|
+
flex-direction: column;
|
|
675
|
+
justify-content: flex-start;
|
|
676
|
+
align-items: flex-start;
|
|
677
|
+
background-color: $wac-white;
|
|
678
|
+
max-height: 260px;
|
|
679
|
+
height: auto;
|
|
680
|
+
visibility: visible;
|
|
681
|
+
opacity: 1;
|
|
682
|
+
box-shadow: 3px 3px 20px $wac-select-box-shadow;
|
|
683
|
+
padding: 10px;
|
|
684
|
+
&.hidden {
|
|
685
|
+
visibility: hidden;
|
|
686
|
+
opacity: 0;
|
|
687
|
+
& > * {
|
|
688
|
+
opacity: 0;
|
|
689
|
+
transition: 0s;
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
.ps {
|
|
693
|
+
max-height: 240px;
|
|
694
|
+
}
|
|
695
|
+
&.open,
|
|
696
|
+
&.open.hidden {
|
|
697
|
+
position: relative;
|
|
698
|
+
left: auto;
|
|
699
|
+
top: 0;
|
|
700
|
+
transform: translateX(-1px);
|
|
701
|
+
visibility: visible;
|
|
702
|
+
opacity: 1;
|
|
703
|
+
& > * {
|
|
704
|
+
opacity: 1;
|
|
705
|
+
transition: 0s;
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
&__item {
|
|
582
709
|
width: 100%;
|
|
710
|
+
font-size: rem(14);
|
|
711
|
+
line-height: rem(30);
|
|
712
|
+
cursor: pointer;
|
|
713
|
+
transition: 0.3s ease;
|
|
714
|
+
position: relative;
|
|
583
715
|
display: flex;
|
|
584
|
-
flex-wrap: wrap;
|
|
585
|
-
align-items: flex-start;
|
|
586
|
-
align-content: flex-start;
|
|
587
716
|
justify-content: flex-start;
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
color: $wac-second-color;
|
|
594
|
-
height: rem(40);
|
|
717
|
+
align-content: center;
|
|
718
|
+
align-items: center;
|
|
719
|
+
color: $wac-second-color;
|
|
720
|
+
> div {
|
|
721
|
+
width: 100%;
|
|
595
722
|
display: flex;
|
|
596
|
-
justify-content: center;
|
|
597
723
|
align-items: center;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
724
|
+
align-content: center;
|
|
725
|
+
}
|
|
726
|
+
.icon {
|
|
727
|
+
width: 24px;
|
|
728
|
+
margin: 0 10px 0 0;
|
|
729
|
+
height: auto;
|
|
730
|
+
max-height: 24px;
|
|
731
|
+
}
|
|
732
|
+
&:not(:last-child) {
|
|
733
|
+
margin: 0 0 rem(10);
|
|
734
|
+
}
|
|
735
|
+
&:empty {
|
|
736
|
+
display: none;
|
|
737
|
+
}
|
|
738
|
+
&:first-child {
|
|
739
|
+
border-width: 1px 0 1px;
|
|
740
|
+
}
|
|
741
|
+
&:hover,
|
|
742
|
+
&:focus {
|
|
743
|
+
background-color: $wac-gray-background;
|
|
744
|
+
color: $wac-main-text;
|
|
745
|
+
}
|
|
746
|
+
> div {
|
|
747
|
+
padding: 0 10px;
|
|
748
|
+
&.selected {
|
|
749
|
+
background-color: $wac-gray-background;
|
|
615
750
|
color: $wac-main-text;
|
|
616
|
-
> i {
|
|
617
|
-
max-width: unset;
|
|
618
|
-
margin: 0 0 0 10px;
|
|
619
|
-
}
|
|
620
|
-
}
|
|
621
|
-
&:first-child {
|
|
622
|
-
margin-left: 18px;
|
|
623
751
|
}
|
|
624
752
|
}
|
|
625
753
|
}
|
|
754
|
+
&__empty {
|
|
755
|
+
display: flex;
|
|
756
|
+
width: 100%;
|
|
757
|
+
justify-content: center;
|
|
758
|
+
align-items: center;
|
|
759
|
+
padding: 10px;
|
|
760
|
+
span {
|
|
761
|
+
font-size: rem(16);
|
|
762
|
+
font-weight: 400;
|
|
763
|
+
text-align: center;
|
|
764
|
+
color: $wac-second-color;
|
|
765
|
+
display: inline-block;
|
|
766
|
+
line-height: rem(25);
|
|
767
|
+
}
|
|
768
|
+
}
|
|
626
769
|
}
|
|
627
|
-
}
|
|
770
|
+
}
|
|
771
|
+
.wac-alert-popup {
|
|
628
772
|
.alert {
|
|
629
773
|
z-index: 999999;
|
|
630
774
|
position: fixed;
|
|
@@ -846,241 +990,97 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
846
990
|
}
|
|
847
991
|
|
|
848
992
|
}
|
|
849
|
-
.
|
|
993
|
+
.selected-list {
|
|
850
994
|
width: 100%;
|
|
851
|
-
min-height: 50px;
|
|
852
|
-
border-radius: 3px;
|
|
853
|
-
background-color: $wac-white;
|
|
854
|
-
position: relative;
|
|
855
|
-
z-index: 2;
|
|
856
|
-
border: 1px solid $wac-border-light;
|
|
857
|
-
transition: 0.3s ease;
|
|
858
|
-
&.open {
|
|
859
|
-
border-color: $wac-wizishop-blue;
|
|
860
|
-
}
|
|
861
995
|
&__wrapper {
|
|
862
|
-
position: relative;
|
|
863
|
-
display: flex;
|
|
864
|
-
justify-content: space-between;
|
|
865
|
-
align-items: stretch;
|
|
866
|
-
align-content: stretch;
|
|
867
|
-
flex-wrap: nowrap;
|
|
868
|
-
width: 100%;
|
|
869
|
-
min-height: 50px;
|
|
870
|
-
@include media('<tablet') {
|
|
871
|
-
padding: 0 12px;
|
|
872
|
-
}
|
|
873
|
-
input {
|
|
874
|
-
background: transparent;
|
|
875
|
-
border: none;
|
|
876
|
-
color: $wac-main-text;
|
|
877
|
-
font-size: rem(14);
|
|
878
|
-
height: 50px;
|
|
879
|
-
line-height: 50px;
|
|
880
|
-
padding: 0 20px 0 48px;
|
|
881
|
-
font-weight: 400;
|
|
882
|
-
width: 100%;
|
|
883
|
-
@include media('<tablet') {
|
|
884
|
-
padding: 0 0 0 10px;
|
|
885
|
-
}
|
|
886
|
-
&::-webkit-input-placeholder {
|
|
887
|
-
/* Chrome/Opera/Safari */
|
|
888
|
-
color: $wac-multiple-search-input-color;
|
|
889
|
-
opacity: 1;
|
|
890
|
-
font-weight: 400;
|
|
891
|
-
@include media('<tablet') {
|
|
892
|
-
font-size: rem(11);
|
|
893
|
-
}
|
|
894
|
-
}
|
|
895
|
-
&::-moz-placeholder {
|
|
896
|
-
/* Firefox 19+ */
|
|
897
|
-
color: $wac-multiple-search-input-color;
|
|
898
|
-
opacity: 1;
|
|
899
|
-
font-weight: 400;
|
|
900
|
-
@include media('<tablet') {
|
|
901
|
-
font-size: rem(11);
|
|
902
|
-
}
|
|
903
|
-
}
|
|
904
|
-
&:-ms-input-placeholder {
|
|
905
|
-
/* IE 10+ */
|
|
906
|
-
color: $wac-multiple-search-input-color;
|
|
907
|
-
opacity: 1;
|
|
908
|
-
font-weight: 400;
|
|
909
|
-
@include media('<tablet') {
|
|
910
|
-
font-size: rem(11);
|
|
911
|
-
}
|
|
912
|
-
}
|
|
913
|
-
&:-moz-placeholder {
|
|
914
|
-
/* Firefox 18- */
|
|
915
|
-
color: $wac-multiple-search-input-color;
|
|
916
|
-
opacity: 1;
|
|
917
|
-
font-weight: 400;
|
|
918
|
-
@include media('<tablet') {
|
|
919
|
-
font-size: rem(11);
|
|
920
|
-
}
|
|
921
|
-
}
|
|
922
|
-
&:focus {
|
|
923
|
-
& + button i {
|
|
924
|
-
color: $wac-main-text;
|
|
925
|
-
}
|
|
926
|
-
&::-webkit-input-placeholder {
|
|
927
|
-
/* Chrome/Opera/Safari */
|
|
928
|
-
color: $wac-white;
|
|
929
|
-
opacity: 1;
|
|
930
|
-
}
|
|
931
|
-
&::-moz-placeholder {
|
|
932
|
-
/* Firefox 19+ */
|
|
933
|
-
color: $wac-white;
|
|
934
|
-
opacity: 1;
|
|
935
|
-
}
|
|
936
|
-
&:-ms-input-placeholder {
|
|
937
|
-
/* IE 10+ */
|
|
938
|
-
color: $wac-white;
|
|
939
|
-
opacity: 1;
|
|
940
|
-
}
|
|
941
|
-
&:-moz-placeholder {
|
|
942
|
-
/* Firefox 18- */
|
|
943
|
-
color: $wac-white;
|
|
944
|
-
opacity: 1;
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
}
|
|
948
|
-
button {
|
|
949
|
-
display: flex;
|
|
950
|
-
align-items: center;
|
|
951
|
-
align-content: center;
|
|
952
|
-
justify-content: center;
|
|
953
|
-
width: 18px;
|
|
954
|
-
height: 18px;
|
|
955
|
-
border-radius: 3px;
|
|
956
|
-
position: absolute;
|
|
957
|
-
left: 20px;
|
|
958
|
-
top: 50%;
|
|
959
|
-
transform: translateY(-50%);
|
|
960
|
-
border: none;
|
|
961
|
-
cursor: pointer;
|
|
962
|
-
background-color: $wac-white;
|
|
963
|
-
i {
|
|
964
|
-
font-size: rem(18);
|
|
965
|
-
color: $wac-color-icon-search-multiple-search;
|
|
966
|
-
transition: 0.3s ease;
|
|
967
|
-
}
|
|
968
|
-
&:hover {
|
|
969
|
-
i {
|
|
970
|
-
color: $wac-wizishop-blue !important;
|
|
971
|
-
}
|
|
972
|
-
}
|
|
973
|
-
}
|
|
974
|
-
}
|
|
975
|
-
&__absolute {
|
|
976
|
-
position: absolute;
|
|
977
|
-
top: 100%;
|
|
978
|
-
margin-top: rem(14);
|
|
979
|
-
left: -1px;
|
|
980
|
-
width: auto;
|
|
981
|
-
min-width: calc(100% - 38px);
|
|
982
|
-
max-width: calc(100% + 2px);
|
|
983
|
-
border: 1px solid $wac-border-light;
|
|
984
|
-
border-radius: 3px;
|
|
985
996
|
display: flex;
|
|
986
997
|
flex-direction: column;
|
|
987
|
-
justify-content: flex-start;
|
|
988
998
|
align-items: flex-start;
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
height: auto;
|
|
992
|
-
visibility: visible;
|
|
993
|
-
opacity: 1;
|
|
994
|
-
box-shadow: 3px 3px 20px $wac-select-box-shadow;
|
|
995
|
-
padding: 10px;
|
|
996
|
-
&.hidden {
|
|
997
|
-
visibility: hidden;
|
|
998
|
-
opacity: 0;
|
|
999
|
-
& > * {
|
|
1000
|
-
opacity: 0;
|
|
1001
|
-
transition: 0s;
|
|
1002
|
-
}
|
|
1003
|
-
}
|
|
1004
|
-
.ps {
|
|
1005
|
-
max-height: 240px;
|
|
1006
|
-
}
|
|
1007
|
-
&.open,
|
|
1008
|
-
&.open.hidden {
|
|
1009
|
-
position: relative;
|
|
1010
|
-
left: auto;
|
|
1011
|
-
top: 0;
|
|
1012
|
-
transform: translateX(-1px);
|
|
1013
|
-
visibility: visible;
|
|
1014
|
-
opacity: 1;
|
|
1015
|
-
& > * {
|
|
1016
|
-
opacity: 1;
|
|
1017
|
-
transition: 0s;
|
|
1018
|
-
}
|
|
1019
|
-
}
|
|
1020
|
-
&__item {
|
|
999
|
+
justify-content: flex-start;
|
|
1000
|
+
&__head {
|
|
1021
1001
|
width: 100%;
|
|
1022
|
-
|
|
1023
|
-
line-height: rem(30);
|
|
1024
|
-
cursor: pointer;
|
|
1025
|
-
transition: 0.3s ease;
|
|
1026
|
-
position: relative;
|
|
1002
|
+
min-height: rem(60);
|
|
1027
1003
|
display: flex;
|
|
1028
|
-
justify-content:
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
>
|
|
1033
|
-
width: 100%;
|
|
1004
|
+
justify-content: space-between;
|
|
1005
|
+
padding: 10px 20px;
|
|
1006
|
+
background-color: $wac-gray-background;
|
|
1007
|
+
margin: 0 0 10px;
|
|
1008
|
+
> p {
|
|
1034
1009
|
display: flex;
|
|
1035
1010
|
align-items: center;
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
margin: 0 10px 0 0;
|
|
1041
|
-
height: auto;
|
|
1042
|
-
max-height: 24px;
|
|
1043
|
-
}
|
|
1044
|
-
&:not(:last-child) {
|
|
1045
|
-
margin: 0 0 rem(10);
|
|
1046
|
-
}
|
|
1047
|
-
&:empty {
|
|
1048
|
-
display: none;
|
|
1049
|
-
}
|
|
1050
|
-
&:first-child {
|
|
1051
|
-
border-width: 1px 0 1px;
|
|
1052
|
-
}
|
|
1053
|
-
&:hover,
|
|
1054
|
-
&:focus {
|
|
1055
|
-
background-color: $wac-gray-background;
|
|
1056
|
-
color: $wac-main-text;
|
|
1011
|
+
white-space: nowrap;
|
|
1012
|
+
font-size: rem(16);
|
|
1013
|
+
line-height: rem(19);
|
|
1014
|
+
font-weight: 500;
|
|
1057
1015
|
}
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1016
|
+
|
|
1017
|
+
&__button {
|
|
1018
|
+
height: rem(40);
|
|
1019
|
+
width: fit-content;
|
|
1020
|
+
margin-left: auto;
|
|
1021
|
+
|
|
1022
|
+
&__mobile {
|
|
1023
|
+
@include media('>=1024px') {
|
|
1024
|
+
display: none;
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
&__notMobile {
|
|
1029
|
+
@include media('<1024px') {
|
|
1030
|
+
display: none;
|
|
1031
|
+
}
|
|
1063
1032
|
}
|
|
1033
|
+
|
|
1064
1034
|
}
|
|
1035
|
+
|
|
1065
1036
|
}
|
|
1066
|
-
&
|
|
1067
|
-
display: flex;
|
|
1037
|
+
&__content {
|
|
1068
1038
|
width: 100%;
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1039
|
+
display: flex;
|
|
1040
|
+
flex-wrap: wrap;
|
|
1041
|
+
align-items: flex-start;
|
|
1042
|
+
align-content: flex-start;
|
|
1043
|
+
justify-content: flex-start;
|
|
1044
|
+
&__item {
|
|
1045
|
+
white-space: nowrap;
|
|
1046
|
+
margin: 0 10px 10px 0;
|
|
1047
|
+
border: 1px solid $wac-border-form;
|
|
1048
|
+
border-radius: 2px;
|
|
1076
1049
|
color: $wac-second-color;
|
|
1077
|
-
|
|
1078
|
-
|
|
1050
|
+
height: rem(40);
|
|
1051
|
+
display: flex;
|
|
1052
|
+
justify-content: center;
|
|
1053
|
+
align-items: center;
|
|
1054
|
+
padding: 0 20px;
|
|
1055
|
+
transition: .3s ease;
|
|
1056
|
+
font-size: rem(16);
|
|
1057
|
+
line-height: rem(19);
|
|
1058
|
+
font-weight: 500;
|
|
1059
|
+
cursor: pointer;
|
|
1060
|
+
&:hover, &:focus {
|
|
1061
|
+
border: 1px solid $wac-main-text;
|
|
1062
|
+
}
|
|
1063
|
+
> i {
|
|
1064
|
+
color: $wac-green-color;
|
|
1065
|
+
max-width: 0;
|
|
1066
|
+
display: block;
|
|
1067
|
+
transition: .3s ease;
|
|
1068
|
+
overflow: hidden;
|
|
1069
|
+
}
|
|
1070
|
+
&.active {
|
|
1071
|
+
color: $wac-main-text;
|
|
1072
|
+
> i {
|
|
1073
|
+
max-width: unset;
|
|
1074
|
+
margin: 0 0 0 10px;
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
&:first-child {
|
|
1078
|
+
margin-left: 18px;
|
|
1079
|
+
}
|
|
1079
1080
|
}
|
|
1080
1081
|
}
|
|
1081
1082
|
}
|
|
1082
|
-
}
|
|
1083
|
-
.wac-block {
|
|
1083
|
+
}.wac-block {
|
|
1084
1084
|
background-color: $white;
|
|
1085
1085
|
@include padding(rem(30));
|
|
1086
1086
|
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
@@ -4215,6 +4215,11 @@ span.wac-tooltip {
|
|
|
4215
4215
|
color: $wac-white;
|
|
4216
4216
|
}
|
|
4217
4217
|
}
|
|
4218
|
+
|
|
4219
|
+
.wac-button__tooltips {
|
|
4220
|
+
background-color: $wac-wizishop-blue-button!important;
|
|
4221
|
+
color: $white!important;
|
|
4222
|
+
}
|
|
4218
4223
|
}
|
|
4219
4224
|
|
|
4220
4225
|
&.animationText {
|
|
@@ -4417,6 +4422,59 @@ span.wac-tooltip {
|
|
|
4417
4422
|
background-color: $wac-main-text;
|
|
4418
4423
|
}
|
|
4419
4424
|
|
|
4425
|
+
.wac-button__tooltips {
|
|
4426
|
+
background-color: $wac-main-text-lighten!important;
|
|
4427
|
+
color: $wac-white!important;
|
|
4428
|
+
|
|
4429
|
+
&.right {
|
|
4430
|
+
&:before {
|
|
4431
|
+
border-color: transparent $wac-main-text-lighten transparent transparent;
|
|
4432
|
+
}
|
|
4433
|
+
}
|
|
4434
|
+
|
|
4435
|
+
&.left {
|
|
4436
|
+
&:before {
|
|
4437
|
+
border-color: transparent transparent transparent $wac-main-text-lighten;
|
|
4438
|
+
}
|
|
4439
|
+
}
|
|
4440
|
+
|
|
4441
|
+
&.top-center {
|
|
4442
|
+
&:before {
|
|
4443
|
+
border-color: $wac-main-text-lighten transparent transparent transparent;
|
|
4444
|
+
}
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
&.top-right {
|
|
4448
|
+
&:before {
|
|
4449
|
+
border-color: $wac-main-text-lighten transparent transparent transparent;
|
|
4450
|
+
}
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4453
|
+
&.top-left {
|
|
4454
|
+
&:before {
|
|
4455
|
+
border-color: $wac-main-text-lighten transparent transparent transparent;
|
|
4456
|
+
}
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
&.bottom-center {
|
|
4460
|
+
&:before {
|
|
4461
|
+
border-color: transparent transparent $wac-main-text-lighten transparent;
|
|
4462
|
+
}
|
|
4463
|
+
}
|
|
4464
|
+
|
|
4465
|
+
&.bottom-right {
|
|
4466
|
+
&:before {
|
|
4467
|
+
border-color: transparent transparent $wac-main-text-lighten transparent;
|
|
4468
|
+
}
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4471
|
+
&.bottom-left {
|
|
4472
|
+
&:before {
|
|
4473
|
+
border-color: transparent transparent $wac-main-text-lighten transparent;
|
|
4474
|
+
}
|
|
4475
|
+
}
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4420
4478
|
&:hover,
|
|
4421
4479
|
&.hover {
|
|
4422
4480
|
background-color: $wac-main-text-lighten;
|
|
@@ -4700,6 +4758,59 @@ span.wac-tooltip {
|
|
|
4700
4758
|
background-color: $wac-background-color-darken;
|
|
4701
4759
|
}
|
|
4702
4760
|
|
|
4761
|
+
.wac-button__tooltips {
|
|
4762
|
+
background-color: $wac-background-color-darken!important;
|
|
4763
|
+
color: $wac-main-text!important;
|
|
4764
|
+
|
|
4765
|
+
&.right {
|
|
4766
|
+
&:before {
|
|
4767
|
+
border-color: transparent $wac-background-color-darken transparent transparent;
|
|
4768
|
+
}
|
|
4769
|
+
}
|
|
4770
|
+
|
|
4771
|
+
&.left {
|
|
4772
|
+
&:before {
|
|
4773
|
+
border-color: transparent transparent transparent $wac-background-color-darken;
|
|
4774
|
+
}
|
|
4775
|
+
}
|
|
4776
|
+
|
|
4777
|
+
&.top-center {
|
|
4778
|
+
&:before {
|
|
4779
|
+
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
4780
|
+
}
|
|
4781
|
+
}
|
|
4782
|
+
|
|
4783
|
+
&.top-right {
|
|
4784
|
+
&:before {
|
|
4785
|
+
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
4786
|
+
}
|
|
4787
|
+
}
|
|
4788
|
+
|
|
4789
|
+
&.top-left {
|
|
4790
|
+
&:before {
|
|
4791
|
+
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
4792
|
+
}
|
|
4793
|
+
}
|
|
4794
|
+
|
|
4795
|
+
&.bottom-center {
|
|
4796
|
+
&:before {
|
|
4797
|
+
border-color: transparent transparent $wac-background-color-darken transparent;
|
|
4798
|
+
}
|
|
4799
|
+
}
|
|
4800
|
+
|
|
4801
|
+
&.bottom-right {
|
|
4802
|
+
&:before {
|
|
4803
|
+
border-color: transparent transparent $wac-background-color-darken transparent;
|
|
4804
|
+
}
|
|
4805
|
+
}
|
|
4806
|
+
|
|
4807
|
+
&.bottom-left {
|
|
4808
|
+
&:before {
|
|
4809
|
+
border-color: transparent transparent $wac-background-color-darken transparent;
|
|
4810
|
+
}
|
|
4811
|
+
}
|
|
4812
|
+
}
|
|
4813
|
+
|
|
4703
4814
|
.wac-button__wrapper, .wac-button__animation {
|
|
4704
4815
|
color: $wac-second-color;
|
|
4705
4816
|
transition: color 0.3s ease-in-out;
|
|
@@ -4764,6 +4875,58 @@ span.wac-tooltip {
|
|
|
4764
4875
|
background-color: $wac-primary-button-darken;
|
|
4765
4876
|
}
|
|
4766
4877
|
|
|
4878
|
+
.wac-button__tooltips {
|
|
4879
|
+
background-color: $wac-primary-button-darken!important;
|
|
4880
|
+
color: $wac-white!important;
|
|
4881
|
+
&.right {
|
|
4882
|
+
&:before {
|
|
4883
|
+
border-color: transparent $wac-primary-button-darken transparent transparent;
|
|
4884
|
+
}
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4887
|
+
&.left {
|
|
4888
|
+
&:before {
|
|
4889
|
+
border-color: transparent transparent transparent $wac-primary-button-darken;
|
|
4890
|
+
}
|
|
4891
|
+
}
|
|
4892
|
+
|
|
4893
|
+
&.top-center {
|
|
4894
|
+
&:before {
|
|
4895
|
+
border-color: $wac-primary-button-darken transparent transparent transparent;
|
|
4896
|
+
}
|
|
4897
|
+
}
|
|
4898
|
+
|
|
4899
|
+
&.top-right {
|
|
4900
|
+
&:before {
|
|
4901
|
+
border-color: $wac-primary-button-darken transparent transparent transparent;
|
|
4902
|
+
}
|
|
4903
|
+
}
|
|
4904
|
+
|
|
4905
|
+
&.top-left {
|
|
4906
|
+
&:before {
|
|
4907
|
+
border-color: $wac-primary-button-darken transparent transparent transparent;
|
|
4908
|
+
}
|
|
4909
|
+
}
|
|
4910
|
+
|
|
4911
|
+
&.bottom-center {
|
|
4912
|
+
&:before {
|
|
4913
|
+
border-color: transparent transparent $wac-primary-button-darken transparent;
|
|
4914
|
+
}
|
|
4915
|
+
}
|
|
4916
|
+
|
|
4917
|
+
&.bottom-right {
|
|
4918
|
+
&:before {
|
|
4919
|
+
border-color: transparent transparent $wac-primary-button-darken transparent;
|
|
4920
|
+
}
|
|
4921
|
+
}
|
|
4922
|
+
|
|
4923
|
+
&.bottom-left {
|
|
4924
|
+
&:before {
|
|
4925
|
+
border-color: transparent transparent $wac-primary-button-darken transparent;
|
|
4926
|
+
}
|
|
4927
|
+
}
|
|
4928
|
+
}
|
|
4929
|
+
|
|
4767
4930
|
&:hover,
|
|
4768
4931
|
&.hover {
|
|
4769
4932
|
background-color: $wac-primary-button-darken;
|
|
@@ -4828,6 +4991,58 @@ span.wac-tooltip {
|
|
|
4828
4991
|
background-color: $wac-green-color-darken;
|
|
4829
4992
|
}
|
|
4830
4993
|
|
|
4994
|
+
.wac-button__tooltips {
|
|
4995
|
+
background-color: $wac-green-color-darken!important;
|
|
4996
|
+
color: $wac-white!important;
|
|
4997
|
+
&.right {
|
|
4998
|
+
&:before {
|
|
4999
|
+
border-color: transparent $wac-green-color-darken transparent transparent;
|
|
5000
|
+
}
|
|
5001
|
+
}
|
|
5002
|
+
|
|
5003
|
+
&.left {
|
|
5004
|
+
&:before {
|
|
5005
|
+
border-color: transparent transparent transparent $wac-green-color-darken;
|
|
5006
|
+
}
|
|
5007
|
+
}
|
|
5008
|
+
|
|
5009
|
+
&.top-center {
|
|
5010
|
+
&:before {
|
|
5011
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
5012
|
+
}
|
|
5013
|
+
}
|
|
5014
|
+
|
|
5015
|
+
&.top-right {
|
|
5016
|
+
&:before {
|
|
5017
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
5018
|
+
}
|
|
5019
|
+
}
|
|
5020
|
+
|
|
5021
|
+
&.top-left {
|
|
5022
|
+
&:before {
|
|
5023
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
5024
|
+
}
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
&.bottom-center {
|
|
5028
|
+
&:before {
|
|
5029
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
5030
|
+
}
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5033
|
+
&.bottom-right {
|
|
5034
|
+
&:before {
|
|
5035
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
5036
|
+
}
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
&.bottom-left {
|
|
5040
|
+
&:before {
|
|
5041
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
5042
|
+
}
|
|
5043
|
+
}
|
|
5044
|
+
}
|
|
5045
|
+
|
|
4831
5046
|
&:hover,
|
|
4832
5047
|
&.hover {
|
|
4833
5048
|
background-color: $wac-green-color-darken;
|
|
@@ -4999,16 +5214,21 @@ span.wac-tooltip {
|
|
|
4999
5214
|
&__tooltips {
|
|
5000
5215
|
position: absolute;
|
|
5001
5216
|
width: auto;
|
|
5002
|
-
padding:
|
|
5217
|
+
padding: 4px;
|
|
5003
5218
|
border-radius: 3px;
|
|
5004
|
-
background: $
|
|
5219
|
+
background: $wizishop-blue;
|
|
5005
5220
|
color: $wac-white;
|
|
5006
5221
|
min-width: 100%;
|
|
5007
5222
|
visibility: hidden;
|
|
5008
|
-
font-size:
|
|
5223
|
+
font-size: 12px;
|
|
5009
5224
|
opacity: 0;
|
|
5010
5225
|
transition: opacity .3s ease 0s, visibility 0s linear .35s;
|
|
5011
5226
|
|
|
5227
|
+
&.oneline {
|
|
5228
|
+
width: auto!important;
|
|
5229
|
+
white-space: nowrap;
|
|
5230
|
+
}
|
|
5231
|
+
|
|
5012
5232
|
@include media('>=tablet') {
|
|
5013
5233
|
min-width: 600px;
|
|
5014
5234
|
}
|
|
@@ -5026,7 +5246,7 @@ span.wac-tooltip {
|
|
|
5026
5246
|
height: 0;
|
|
5027
5247
|
border-style: solid;
|
|
5028
5248
|
border-width: 10px 10px 0 10px;
|
|
5029
|
-
border-color:
|
|
5249
|
+
border-color: $wizishop-blue transparent transparent transparent;
|
|
5030
5250
|
}
|
|
5031
5251
|
|
|
5032
5252
|
&.right {
|