@wizishop/angular-components 14.4.37 → 14.4.39
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 +197 -489
- package/esm2020/lib/components/checkbox/checkbox.component.mjs +3 -4
- package/esm2020/lib/components/inputs/input-with-select/input-with-select.component.mjs +3 -3
- package/esm2020/lib/components/selects/select/select.component.mjs +197 -0
- package/esm2020/lib/components/selects/select/select.directive.mjs +154 -0
- package/esm2020/lib/components/selects/select/value-change.service.mjs +144 -0
- package/esm2020/lib/components/shared-components.module.mjs +5 -9
- package/esm2020/lib/directives/shared-directives.module.mjs +2 -2
- package/esm2020/public-api.mjs +4 -5
- package/fesm2015/wizishop-angular-components.mjs +54 -180
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +54 -179
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/inputs/input-with-select/input-with-select.component.d.ts +1 -1
- package/lib/components/selects/{select-test → select}/select.component.d.ts +3 -3
- package/lib/components/selects/{select-test → select}/select.directive.d.ts +0 -0
- package/lib/components/selects/{select-test → select}/value-change.service.d.ts +0 -0
- package/lib/components/shared-components.module.d.ts +79 -80
- package/lib/directives/shared-directives.module.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -4
- package/wizishop-angular-components-14.4.39.tgz +0 -0
- package/esm2020/lib/components/selects/legacy-select/select.component.mjs +0 -133
- package/esm2020/lib/components/selects/select-test/select.component.mjs +0 -197
- package/esm2020/lib/components/selects/select-test/select.directive.mjs +0 -154
- package/esm2020/lib/components/selects/select-test/value-change.service.mjs +0 -144
- package/lib/components/selects/legacy-select/select.component.d.ts +0 -46
- package/wizishop-angular-components-14.4.37.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: #C9D2D9!default;
|
|
11
11
|
$wac-border-light: #cfd4e4!default;
|
|
12
12
|
$wac-color-loader2: #a2c739!default;
|
|
13
13
|
$wac-color-loader: #4baed0!default;
|
|
@@ -112,7 +112,7 @@ $wac-button-tab-background: #EAEDF5!default;
|
|
|
112
112
|
|
|
113
113
|
$wac-color-success-popup-alert: #6DCC95!default;
|
|
114
114
|
|
|
115
|
-
$wac-background-indication: #
|
|
115
|
+
$wac-background-indication: #DEE2ED!default;
|
|
116
116
|
|
|
117
117
|
$wac-grey: #F5F8FA!default;
|
|
118
118
|
$wac-round-breadcrumbs: #DEE2ED!default;
|
|
@@ -123,6 +123,7 @@ $wac-google-preview-url: #202124!default;
|
|
|
123
123
|
$wac-google-preview-title: #1A0DAB!default;
|
|
124
124
|
$wac-google-preview-description: #4D5156!default;
|
|
125
125
|
$wac-charging-bar-background: #E1E6EA!default;
|
|
126
|
+
$wac-link-active: #38A3F1!default;
|
|
126
127
|
.zindexToggle {
|
|
127
128
|
z-index: 9!important;
|
|
128
129
|
position: relative;
|
|
@@ -3902,7 +3903,7 @@ wac-calendar {
|
|
|
3902
3903
|
justify-content: center;
|
|
3903
3904
|
align-items: center;
|
|
3904
3905
|
i {
|
|
3905
|
-
font-size: rem(
|
|
3906
|
+
font-size: rem(14);
|
|
3906
3907
|
font-weight: 400;
|
|
3907
3908
|
color: $wac-second-color;
|
|
3908
3909
|
}
|
|
@@ -5823,9 +5824,13 @@ wac-optional-disable-container {
|
|
|
5823
5824
|
.wac-summary {
|
|
5824
5825
|
p {
|
|
5825
5826
|
font-size: rem(14);
|
|
5826
|
-
line-height: rem(23);
|
|
5827
5827
|
color: $wac-main-text;
|
|
5828
|
-
|
|
5828
|
+
display: flex;
|
|
5829
|
+
margin: 0;
|
|
5830
|
+
min-height: 40px;
|
|
5831
|
+
align-items: center;
|
|
5832
|
+
line-height: 1.4;
|
|
5833
|
+
padding: 5px 20px;
|
|
5829
5834
|
transition: color .3s ease-in-out;
|
|
5830
5835
|
|
|
5831
5836
|
&.item-link {
|
|
@@ -5833,7 +5838,8 @@ wac-optional-disable-container {
|
|
|
5833
5838
|
cursor: pointer;
|
|
5834
5839
|
|
|
5835
5840
|
&.active {
|
|
5836
|
-
color: $wac-
|
|
5841
|
+
color: $wac-link-active;
|
|
5842
|
+
background-color: transparentize($wac-link-active, .9);
|
|
5837
5843
|
transition: color .3s ease-in-out;
|
|
5838
5844
|
}
|
|
5839
5845
|
}
|
|
@@ -7026,7 +7032,7 @@ span.wac-tooltip {
|
|
|
7026
7032
|
h1.wac-h1 {
|
|
7027
7033
|
font-size: rem(30);
|
|
7028
7034
|
line-height: rem(35);
|
|
7029
|
-
font-weight:
|
|
7035
|
+
font-weight: 600;
|
|
7030
7036
|
color: $wac-main-text;
|
|
7031
7037
|
@include media('<desktop') {
|
|
7032
7038
|
font-size: rem(22);
|
|
@@ -7470,15 +7476,15 @@ h4.wac-h4 {
|
|
|
7470
7476
|
right: 0;
|
|
7471
7477
|
top: 0;
|
|
7472
7478
|
height: 40px;
|
|
7473
|
-
color: $wac-
|
|
7479
|
+
color: $wac-second-color;
|
|
7474
7480
|
font-size: rem(14);
|
|
7475
|
-
padding: 7.5px
|
|
7481
|
+
padding: 7.5px 20px;
|
|
7476
7482
|
background-color: $wac-background-indication;
|
|
7477
7483
|
border: none;
|
|
7478
7484
|
border-radius: 3px 3px 0 0;
|
|
7479
7485
|
white-space: nowrap;
|
|
7480
7486
|
transition: .3s ease;
|
|
7481
|
-
font-weight:
|
|
7487
|
+
font-weight: 400;
|
|
7482
7488
|
display: flex;
|
|
7483
7489
|
align-items: center;
|
|
7484
7490
|
z-index: 2;
|
|
@@ -7667,8 +7673,8 @@ div.wac-field-input-search {
|
|
|
7667
7673
|
}
|
|
7668
7674
|
}
|
|
7669
7675
|
|
|
7670
|
-
wac-select
|
|
7671
|
-
.wac-
|
|
7676
|
+
wac-select {
|
|
7677
|
+
.wac-select__header {
|
|
7672
7678
|
|
|
7673
7679
|
}
|
|
7674
7680
|
|
|
@@ -7686,7 +7692,7 @@ div.wac-field-input-search {
|
|
|
7686
7692
|
}
|
|
7687
7693
|
}
|
|
7688
7694
|
}
|
|
7689
|
-
.wac-select
|
|
7695
|
+
.wac-select {
|
|
7690
7696
|
border-width: 0;
|
|
7691
7697
|
background-color: transparent;
|
|
7692
7698
|
position: relative;
|
|
@@ -7701,7 +7707,7 @@ div.wac-field-input-search {
|
|
|
7701
7707
|
transform: translateY(-50%);
|
|
7702
7708
|
background-color: $input-border;
|
|
7703
7709
|
}
|
|
7704
|
-
.wac-
|
|
7710
|
+
.wac-select__header {
|
|
7705
7711
|
padding: 0 20px;
|
|
7706
7712
|
&:focus {
|
|
7707
7713
|
border: none;
|
|
@@ -7723,310 +7729,11 @@ div.wac-field-input-search {
|
|
|
7723
7729
|
}
|
|
7724
7730
|
}
|
|
7725
7731
|
}
|
|
7726
|
-
.wac-
|
|
7732
|
+
.wac-select__header__chevron {
|
|
7727
7733
|
display: none;
|
|
7728
7734
|
}
|
|
7729
7735
|
}
|
|
7730
7736
|
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
.wac {
|
|
7734
|
-
&-select {
|
|
7735
|
-
width: 100%;
|
|
7736
|
-
position: relative;
|
|
7737
|
-
height: 40px;
|
|
7738
|
-
border: 1px solid $wac-border-form;
|
|
7739
|
-
margin: 0;
|
|
7740
|
-
border-radius: 3px;
|
|
7741
|
-
z-index: 2;
|
|
7742
|
-
background-color: $wac-white;
|
|
7743
|
-
max-width: 100%;
|
|
7744
|
-
&:hover,
|
|
7745
|
-
&:focus {
|
|
7746
|
-
z-index: 4;
|
|
7747
|
-
}
|
|
7748
|
-
&__label {
|
|
7749
|
-
padding: 0;
|
|
7750
|
-
font-size: rem(14);
|
|
7751
|
-
line-height: rem(16);
|
|
7752
|
-
margin: 0 0 rem(12);
|
|
7753
|
-
font-weight: 500;
|
|
7754
|
-
}
|
|
7755
|
-
&__current {
|
|
7756
|
-
display: flex;
|
|
7757
|
-
width: 100%;
|
|
7758
|
-
height: 38px;
|
|
7759
|
-
justify-content: space-between;
|
|
7760
|
-
align-items: center;
|
|
7761
|
-
align-content: center;
|
|
7762
|
-
padding: 0 0 0 20px;
|
|
7763
|
-
color: $wac-color-text-grey;
|
|
7764
|
-
font-size: rem(14);
|
|
7765
|
-
line-height: rem(16);
|
|
7766
|
-
cursor: pointer;
|
|
7767
|
-
white-space: nowrap;
|
|
7768
|
-
text-overflow: ellipsis;
|
|
7769
|
-
max-width: 100%;
|
|
7770
|
-
overflow: hidden;
|
|
7771
|
-
&--withSearch {
|
|
7772
|
-
padding: 0;
|
|
7773
|
-
span {
|
|
7774
|
-
&:not(.icon):not(:last-child) {
|
|
7775
|
-
display: block;
|
|
7776
|
-
width: 100%;
|
|
7777
|
-
height: rem(38);
|
|
7778
|
-
line-height: rem(38);
|
|
7779
|
-
padding: 0 20px;
|
|
7780
|
-
}
|
|
7781
|
-
&.icon {
|
|
7782
|
-
& + span {
|
|
7783
|
-
padding: 0;
|
|
7784
|
-
}
|
|
7785
|
-
}
|
|
7786
|
-
&:last-child {
|
|
7787
|
-
margin: 0;
|
|
7788
|
-
}
|
|
7789
|
-
}
|
|
7790
|
-
&.open-search {
|
|
7791
|
-
span {
|
|
7792
|
-
&:not(.icon):not(:last-child) {
|
|
7793
|
-
display: none;
|
|
7794
|
-
}
|
|
7795
|
-
&.icon {
|
|
7796
|
-
display: none;
|
|
7797
|
-
}
|
|
7798
|
-
}
|
|
7799
|
-
}
|
|
7800
|
-
}
|
|
7801
|
-
span.icon {
|
|
7802
|
-
max-width: 24px;
|
|
7803
|
-
margin: 0 10px 0 0;
|
|
7804
|
-
i {
|
|
7805
|
-
font-size: rem(17);
|
|
7806
|
-
}
|
|
7807
|
-
img {
|
|
7808
|
-
display: block;
|
|
7809
|
-
max-width: rem(24);
|
|
7810
|
-
}
|
|
7811
|
-
&:empty {
|
|
7812
|
-
display: none;
|
|
7813
|
-
}
|
|
7814
|
-
}
|
|
7815
|
-
> span:not([class]):not(:last-child) {
|
|
7816
|
-
width: 100%;
|
|
7817
|
-
text-align: left;
|
|
7818
|
-
max-width: calc(100% - 58px);
|
|
7819
|
-
overflow: hidden;
|
|
7820
|
-
text-overflow: ellipsis;
|
|
7821
|
-
}
|
|
7822
|
-
span:last-child {
|
|
7823
|
-
width: 38px;
|
|
7824
|
-
min-width: 38px;
|
|
7825
|
-
height: 38px;
|
|
7826
|
-
margin: 0 0 0 20px;
|
|
7827
|
-
display: flex;
|
|
7828
|
-
justify-content: center;
|
|
7829
|
-
align-items: center;
|
|
7830
|
-
align-content: center;
|
|
7831
|
-
background-color: $wac-select-icon-background;
|
|
7832
|
-
border-radius: 0 3px 3px 0;
|
|
7833
|
-
z-index: 3;
|
|
7834
|
-
i {
|
|
7835
|
-
font-size: rem(12);
|
|
7836
|
-
color: $wac-second-color;
|
|
7837
|
-
}
|
|
7838
|
-
}
|
|
7839
|
-
&__search {
|
|
7840
|
-
position: relative;
|
|
7841
|
-
top: 0;
|
|
7842
|
-
left: 0;
|
|
7843
|
-
width: 100%;
|
|
7844
|
-
height: rem(38);
|
|
7845
|
-
display: flex;
|
|
7846
|
-
align-items: center;
|
|
7847
|
-
align-content: center;
|
|
7848
|
-
z-index: 2;
|
|
7849
|
-
padding: 0 0 0 rem(20);
|
|
7850
|
-
input {
|
|
7851
|
-
border: none;
|
|
7852
|
-
width: 100%;
|
|
7853
|
-
box-shadow: none;
|
|
7854
|
-
margin: 0 0 0 rem(10);
|
|
7855
|
-
padding: 0;
|
|
7856
|
-
height: rem(38);
|
|
7857
|
-
line-height: rem(38);
|
|
7858
|
-
&:focus {
|
|
7859
|
-
&::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
7860
|
-
opacity: 0;
|
|
7861
|
-
}
|
|
7862
|
-
&::-moz-placeholder { /* Firefox 19+ */
|
|
7863
|
-
opacity: 0;
|
|
7864
|
-
}
|
|
7865
|
-
&:-ms-input-placeholder { /* IE 10+ */
|
|
7866
|
-
opacity: 0;
|
|
7867
|
-
}
|
|
7868
|
-
&:-moz-placeholder { /* Firefox 18- */
|
|
7869
|
-
opacity: 0;
|
|
7870
|
-
}
|
|
7871
|
-
|
|
7872
|
-
}
|
|
7873
|
-
}
|
|
7874
|
-
}
|
|
7875
|
-
}
|
|
7876
|
-
.select-disabled {
|
|
7877
|
-
background-color: #f5f8fa;
|
|
7878
|
-
cursor: not-allowed;
|
|
7879
|
-
}
|
|
7880
|
-
&__content {
|
|
7881
|
-
position: absolute;
|
|
7882
|
-
top: 100%;
|
|
7883
|
-
margin-top: rem(14);
|
|
7884
|
-
left: -1px;
|
|
7885
|
-
width: auto;
|
|
7886
|
-
min-width: calc(100% - 38px);
|
|
7887
|
-
max-width: calc(100% + 2px);
|
|
7888
|
-
border: 1px solid $wac-border-light;
|
|
7889
|
-
border-radius: 3px;
|
|
7890
|
-
display: flex;
|
|
7891
|
-
flex-direction: column;
|
|
7892
|
-
justify-content: flex-start;
|
|
7893
|
-
align-items: flex-start;
|
|
7894
|
-
background-color: $wac-white;
|
|
7895
|
-
max-height: 260px;
|
|
7896
|
-
height: auto;
|
|
7897
|
-
visibility: visible;
|
|
7898
|
-
opacity: 1;
|
|
7899
|
-
box-shadow: 3px 3px 20px $wac-select-box-shadow;
|
|
7900
|
-
padding: 10px;
|
|
7901
|
-
.to-top & {
|
|
7902
|
-
top: auto;
|
|
7903
|
-
bottom: 100%;
|
|
7904
|
-
margin-top: 0;
|
|
7905
|
-
margin-bottom: rem(14);
|
|
7906
|
-
}
|
|
7907
|
-
&.hidden {
|
|
7908
|
-
visibility: hidden;
|
|
7909
|
-
opacity: 0;
|
|
7910
|
-
& > * {
|
|
7911
|
-
opacity: 0;
|
|
7912
|
-
transition: 0s;
|
|
7913
|
-
}
|
|
7914
|
-
}
|
|
7915
|
-
.ps {
|
|
7916
|
-
max-height: 240px;
|
|
7917
|
-
}
|
|
7918
|
-
&.open,
|
|
7919
|
-
&.open.hidden {
|
|
7920
|
-
position: relative;
|
|
7921
|
-
left: auto;
|
|
7922
|
-
top: 0;
|
|
7923
|
-
transform: translateX(-1px);
|
|
7924
|
-
visibility: visible;
|
|
7925
|
-
opacity: 1;
|
|
7926
|
-
& > * {
|
|
7927
|
-
opacity: 1;
|
|
7928
|
-
transition: 0s;
|
|
7929
|
-
}
|
|
7930
|
-
}
|
|
7931
|
-
&__cta {
|
|
7932
|
-
background-color: $wac-color-CTA-select;
|
|
7933
|
-
border: 1px solid $wac-border-CTA-select;
|
|
7934
|
-
color: $wac-main-text;
|
|
7935
|
-
font-size: rem(14);
|
|
7936
|
-
min-height: rem(40);
|
|
7937
|
-
display: flex;
|
|
7938
|
-
align-items: center;
|
|
7939
|
-
align-content: center;
|
|
7940
|
-
width: 100%;
|
|
7941
|
-
border-radius: 3px;
|
|
7942
|
-
cursor: pointer;
|
|
7943
|
-
transition: 0.3s ease;
|
|
7944
|
-
margin: 0 0 rem(10);
|
|
7945
|
-
padding: 0 20px;
|
|
7946
|
-
> div {
|
|
7947
|
-
display: flex;
|
|
7948
|
-
align-items: center;
|
|
7949
|
-
align-content: center;
|
|
7950
|
-
justify-content: flex-start;
|
|
7951
|
-
width: 100%;
|
|
7952
|
-
i {
|
|
7953
|
-
color: $wac-wizishop-blue;
|
|
7954
|
-
margin: 0 8px 0 0;
|
|
7955
|
-
}
|
|
7956
|
-
strong {
|
|
7957
|
-
display: inline-block;
|
|
7958
|
-
margin: 0 20px 0 0;
|
|
7959
|
-
}
|
|
7960
|
-
}
|
|
7961
|
-
&:hover,
|
|
7962
|
-
&:focus {
|
|
7963
|
-
background-color: darken($wac-color-CTA-select, 10%);
|
|
7964
|
-
}
|
|
7965
|
-
}
|
|
7966
|
-
&__item {
|
|
7967
|
-
width: 100%;
|
|
7968
|
-
font-size: rem(14);
|
|
7969
|
-
line-height: rem(30);
|
|
7970
|
-
cursor: pointer;
|
|
7971
|
-
transition: 0.3s ease;
|
|
7972
|
-
position: relative;
|
|
7973
|
-
display: flex;
|
|
7974
|
-
justify-content: flex-start;
|
|
7975
|
-
align-content: center;
|
|
7976
|
-
align-items: center;
|
|
7977
|
-
color: $wac-second-color;
|
|
7978
|
-
> div {
|
|
7979
|
-
width: 100%;
|
|
7980
|
-
display: flex;
|
|
7981
|
-
align-items: center;
|
|
7982
|
-
align-content: center;
|
|
7983
|
-
}
|
|
7984
|
-
.icon {
|
|
7985
|
-
width: 24px;
|
|
7986
|
-
margin: 0 10px 0 0;
|
|
7987
|
-
height: auto;
|
|
7988
|
-
max-height: 24px;
|
|
7989
|
-
}
|
|
7990
|
-
&:not(:last-child) {
|
|
7991
|
-
margin: 0 0 rem(10);
|
|
7992
|
-
}
|
|
7993
|
-
&:empty {
|
|
7994
|
-
display: none;
|
|
7995
|
-
}
|
|
7996
|
-
&:first-child {
|
|
7997
|
-
border-width: 1px 0 1px;
|
|
7998
|
-
}
|
|
7999
|
-
&:hover,
|
|
8000
|
-
&:focus {
|
|
8001
|
-
background-color: $wac-gray-background;
|
|
8002
|
-
color: $wac-main-text;
|
|
8003
|
-
}
|
|
8004
|
-
> div {
|
|
8005
|
-
padding: 0 10px;
|
|
8006
|
-
&.selected {
|
|
8007
|
-
background-color: $wac-gray-background;
|
|
8008
|
-
color: $wac-main-text;
|
|
8009
|
-
}
|
|
8010
|
-
}
|
|
8011
|
-
}
|
|
8012
|
-
&__empty {
|
|
8013
|
-
display: flex;
|
|
8014
|
-
width: 100%;
|
|
8015
|
-
justify-content: center;
|
|
8016
|
-
align-items: center;
|
|
8017
|
-
padding: 10px;
|
|
8018
|
-
span {
|
|
8019
|
-
font-size: rem(16);
|
|
8020
|
-
font-weight: 400;
|
|
8021
|
-
text-align: center;
|
|
8022
|
-
color: $wac-second-color;
|
|
8023
|
-
display: inline-block;
|
|
8024
|
-
line-height: rem(25);
|
|
8025
|
-
}
|
|
8026
|
-
}
|
|
8027
|
-
}
|
|
8028
|
-
}
|
|
8029
|
-
}
|
|
8030
7737
|
.wac-option {
|
|
8031
7738
|
width: 100%;
|
|
8032
7739
|
font-size: rem(14);
|
|
@@ -8127,182 +7834,8 @@ div.wac-field-input-search {
|
|
|
8127
7834
|
background-color: darken($wac-color-CTA-select, 10%);
|
|
8128
7835
|
}
|
|
8129
7836
|
}
|
|
8130
|
-
.wac {
|
|
8131
|
-
&-select-in-text {
|
|
8132
|
-
width: auto;
|
|
8133
|
-
position: relative;
|
|
8134
|
-
display: flex;
|
|
8135
|
-
align-items: center;
|
|
8136
|
-
padding: 20px 0;
|
|
8137
|
-
&:hover,
|
|
8138
|
-
&:focus {
|
|
8139
|
-
z-index: 4;
|
|
8140
|
-
}
|
|
8141
|
-
&__prepend,
|
|
8142
|
-
&__after {
|
|
8143
|
-
font-size: rem(14);
|
|
8144
|
-
line-height: rem(16);
|
|
8145
|
-
color: $wac-main-text;
|
|
8146
|
-
}
|
|
8147
|
-
&__prepend {
|
|
8148
|
-
margin: 0 rem(4) 0 0;
|
|
8149
|
-
}
|
|
8150
|
-
&__after {
|
|
8151
|
-
margin: 0 0 0 rem(4);
|
|
8152
|
-
}
|
|
8153
|
-
&__current {
|
|
8154
|
-
display: flex;
|
|
8155
|
-
width: auto;
|
|
8156
|
-
justify-content: space-between;
|
|
8157
|
-
align-items: center;
|
|
8158
|
-
align-content: center;
|
|
8159
|
-
font-size: rem(14);
|
|
8160
|
-
line-height: rem(16);
|
|
8161
|
-
color: $wac-main-text;
|
|
8162
|
-
cursor: pointer;
|
|
8163
|
-
white-space: nowrap;
|
|
8164
|
-
text-overflow: ellipsis;
|
|
8165
|
-
font-weight: 500;
|
|
8166
|
-
position: relative;
|
|
8167
|
-
span {
|
|
8168
|
-
position: relative;
|
|
8169
|
-
white-space: nowrap;
|
|
8170
|
-
&:before {
|
|
8171
|
-
content: '';
|
|
8172
|
-
display: block;
|
|
8173
|
-
position: absolute;
|
|
8174
|
-
bottom: -3px;
|
|
8175
|
-
left: 0;
|
|
8176
|
-
width: 100%;
|
|
8177
|
-
height: 0;
|
|
8178
|
-
border-bottom: 1px dashed $wac-primary-button;
|
|
8179
|
-
}
|
|
8180
|
-
&:after {
|
|
8181
|
-
content: '';
|
|
8182
|
-
display: block;
|
|
8183
|
-
position: absolute;
|
|
8184
|
-
top: 100%;
|
|
8185
|
-
left: 0;
|
|
8186
|
-
width: 100%;
|
|
8187
|
-
height: 14px;
|
|
8188
|
-
}
|
|
8189
|
-
}
|
|
8190
|
-
}
|
|
8191
|
-
&__content {
|
|
8192
|
-
position: absolute;
|
|
8193
|
-
top: 100%;
|
|
8194
|
-
margin-top: rem(14);
|
|
8195
|
-
left: 0;
|
|
8196
|
-
width: auto;
|
|
8197
|
-
border: 1px solid $wac-border-light;
|
|
8198
|
-
border-radius: 3px;
|
|
8199
|
-
display: flex;
|
|
8200
|
-
flex-direction: column;
|
|
8201
|
-
justify-content: flex-start;
|
|
8202
|
-
align-items: flex-start;
|
|
8203
|
-
background-color: $wac-white;
|
|
8204
|
-
max-height: 400px;
|
|
8205
|
-
height: auto;
|
|
8206
|
-
visibility: visible;
|
|
8207
|
-
opacity: 1;
|
|
8208
|
-
box-shadow: 3px 3px 20px $wac-select-box-shadow;
|
|
8209
|
-
&.hidden {
|
|
8210
|
-
visibility: hidden;
|
|
8211
|
-
opacity: 0;
|
|
8212
|
-
& > * {
|
|
8213
|
-
opacity: 0;
|
|
8214
|
-
transition: 0s;
|
|
8215
|
-
}
|
|
8216
|
-
}
|
|
8217
|
-
&.open,
|
|
8218
|
-
&.open.hidden {
|
|
8219
|
-
position: relative;
|
|
8220
|
-
left: auto;
|
|
8221
|
-
top: 0;
|
|
8222
|
-
transform: translateX(-1px);
|
|
8223
|
-
visibility: visible;
|
|
8224
|
-
opacity: 1;
|
|
8225
|
-
& > * {
|
|
8226
|
-
opacity: 1;
|
|
8227
|
-
transition: 0s;
|
|
8228
|
-
}
|
|
8229
|
-
}
|
|
8230
|
-
&__item {
|
|
8231
|
-
width: 100%;
|
|
8232
|
-
font-size: rem(14);
|
|
8233
|
-
line-height: rem(40);
|
|
8234
|
-
cursor: pointer;
|
|
8235
|
-
transition: 0.3s ease;
|
|
8236
|
-
position: relative;
|
|
8237
|
-
display: flex;
|
|
8238
|
-
justify-content: flex-start;
|
|
8239
|
-
align-content: center;
|
|
8240
|
-
align-items: center;
|
|
8241
|
-
font-weight: 400;
|
|
8242
|
-
> div {
|
|
8243
|
-
padding: 0 20px;
|
|
8244
|
-
min-width: 100%;
|
|
8245
|
-
&.selected {
|
|
8246
|
-
background-color: $wac-hover-multiple-search;
|
|
8247
|
-
color: $wac-main-text;
|
|
8248
|
-
}
|
|
8249
|
-
}
|
|
8250
|
-
.icon {
|
|
8251
|
-
width: 24px;
|
|
8252
|
-
margin: 0 10px 0 0;
|
|
8253
|
-
}
|
|
8254
|
-
&:empty {
|
|
8255
|
-
display: none;
|
|
8256
|
-
}
|
|
8257
|
-
&:first-child {
|
|
8258
|
-
border-width: 1px 0 1px;
|
|
8259
|
-
}
|
|
8260
|
-
&:hover,
|
|
8261
|
-
&:focus {
|
|
8262
|
-
background-color: $wac-gray-background;
|
|
8263
|
-
color: $wac-main-text;
|
|
8264
|
-
}
|
|
8265
|
-
}
|
|
8266
|
-
}
|
|
8267
|
-
}
|
|
8268
|
-
}
|
|
8269
|
-
.wac-select-seacrh-trigger {
|
|
8270
|
-
position: relative;
|
|
8271
|
-
top: 0;
|
|
8272
|
-
left: 0;
|
|
8273
|
-
width: 100%;
|
|
8274
|
-
height: rem(38);
|
|
8275
|
-
display: flex;
|
|
8276
|
-
align-items: center;
|
|
8277
|
-
align-content: center;
|
|
8278
|
-
z-index: 2;
|
|
8279
|
-
padding: 0;
|
|
8280
|
-
input {
|
|
8281
|
-
border: none;
|
|
8282
|
-
width: 100%;
|
|
8283
|
-
box-shadow: none;
|
|
8284
|
-
margin: 0 0 0 rem(10);
|
|
8285
|
-
padding: 0;
|
|
8286
|
-
height: rem(38);
|
|
8287
|
-
line-height: rem(38);
|
|
8288
|
-
&:focus {
|
|
8289
|
-
&::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
8290
|
-
opacity: 0;
|
|
8291
|
-
}
|
|
8292
|
-
&::-moz-placeholder { /* Firefox 19+ */
|
|
8293
|
-
opacity: 0;
|
|
8294
|
-
}
|
|
8295
|
-
&:-ms-input-placeholder { /* IE 10+ */
|
|
8296
|
-
opacity: 0;
|
|
8297
|
-
}
|
|
8298
|
-
&:-moz-placeholder { /* Firefox 18- */
|
|
8299
|
-
opacity: 0;
|
|
8300
|
-
}
|
|
8301
7837
|
|
|
8302
|
-
|
|
8303
|
-
}
|
|
8304
|
-
}
|
|
8305
|
-
.wac-select-test {
|
|
7838
|
+
.wac-select {
|
|
8306
7839
|
width: 100%;
|
|
8307
7840
|
position: relative;
|
|
8308
7841
|
height: 40px;
|
|
@@ -8471,3 +8004,178 @@ div.wac-field-input-search {
|
|
|
8471
8004
|
|
|
8472
8005
|
}
|
|
8473
8006
|
|
|
8007
|
+
.wac {
|
|
8008
|
+
&-select-in-text {
|
|
8009
|
+
width: auto;
|
|
8010
|
+
position: relative;
|
|
8011
|
+
display: flex;
|
|
8012
|
+
align-items: center;
|
|
8013
|
+
padding: 20px 0;
|
|
8014
|
+
&:hover,
|
|
8015
|
+
&:focus {
|
|
8016
|
+
z-index: 4;
|
|
8017
|
+
}
|
|
8018
|
+
&__prepend,
|
|
8019
|
+
&__after {
|
|
8020
|
+
font-size: rem(14);
|
|
8021
|
+
line-height: rem(16);
|
|
8022
|
+
color: $wac-main-text;
|
|
8023
|
+
}
|
|
8024
|
+
&__prepend {
|
|
8025
|
+
margin: 0 rem(4) 0 0;
|
|
8026
|
+
}
|
|
8027
|
+
&__after {
|
|
8028
|
+
margin: 0 0 0 rem(4);
|
|
8029
|
+
}
|
|
8030
|
+
&__current {
|
|
8031
|
+
display: flex;
|
|
8032
|
+
width: auto;
|
|
8033
|
+
justify-content: space-between;
|
|
8034
|
+
align-items: center;
|
|
8035
|
+
align-content: center;
|
|
8036
|
+
font-size: rem(14);
|
|
8037
|
+
line-height: rem(16);
|
|
8038
|
+
color: $wac-main-text;
|
|
8039
|
+
cursor: pointer;
|
|
8040
|
+
white-space: nowrap;
|
|
8041
|
+
text-overflow: ellipsis;
|
|
8042
|
+
font-weight: 500;
|
|
8043
|
+
position: relative;
|
|
8044
|
+
span {
|
|
8045
|
+
position: relative;
|
|
8046
|
+
white-space: nowrap;
|
|
8047
|
+
&:before {
|
|
8048
|
+
content: '';
|
|
8049
|
+
display: block;
|
|
8050
|
+
position: absolute;
|
|
8051
|
+
bottom: -3px;
|
|
8052
|
+
left: 0;
|
|
8053
|
+
width: 100%;
|
|
8054
|
+
height: 0;
|
|
8055
|
+
border-bottom: 1px dashed $wac-primary-button;
|
|
8056
|
+
}
|
|
8057
|
+
&:after {
|
|
8058
|
+
content: '';
|
|
8059
|
+
display: block;
|
|
8060
|
+
position: absolute;
|
|
8061
|
+
top: 100%;
|
|
8062
|
+
left: 0;
|
|
8063
|
+
width: 100%;
|
|
8064
|
+
height: 14px;
|
|
8065
|
+
}
|
|
8066
|
+
}
|
|
8067
|
+
}
|
|
8068
|
+
&__content {
|
|
8069
|
+
position: absolute;
|
|
8070
|
+
top: 100%;
|
|
8071
|
+
margin-top: rem(14);
|
|
8072
|
+
left: 0;
|
|
8073
|
+
width: auto;
|
|
8074
|
+
border: 1px solid $wac-border-light;
|
|
8075
|
+
border-radius: 3px;
|
|
8076
|
+
display: flex;
|
|
8077
|
+
flex-direction: column;
|
|
8078
|
+
justify-content: flex-start;
|
|
8079
|
+
align-items: flex-start;
|
|
8080
|
+
background-color: $wac-white;
|
|
8081
|
+
max-height: 400px;
|
|
8082
|
+
height: auto;
|
|
8083
|
+
visibility: visible;
|
|
8084
|
+
opacity: 1;
|
|
8085
|
+
box-shadow: 3px 3px 20px $wac-select-box-shadow;
|
|
8086
|
+
&.hidden {
|
|
8087
|
+
visibility: hidden;
|
|
8088
|
+
opacity: 0;
|
|
8089
|
+
& > * {
|
|
8090
|
+
opacity: 0;
|
|
8091
|
+
transition: 0s;
|
|
8092
|
+
}
|
|
8093
|
+
}
|
|
8094
|
+
&.open,
|
|
8095
|
+
&.open.hidden {
|
|
8096
|
+
position: relative;
|
|
8097
|
+
left: auto;
|
|
8098
|
+
top: 0;
|
|
8099
|
+
transform: translateX(-1px);
|
|
8100
|
+
visibility: visible;
|
|
8101
|
+
opacity: 1;
|
|
8102
|
+
& > * {
|
|
8103
|
+
opacity: 1;
|
|
8104
|
+
transition: 0s;
|
|
8105
|
+
}
|
|
8106
|
+
}
|
|
8107
|
+
&__item {
|
|
8108
|
+
width: 100%;
|
|
8109
|
+
font-size: rem(14);
|
|
8110
|
+
line-height: rem(40);
|
|
8111
|
+
cursor: pointer;
|
|
8112
|
+
transition: 0.3s ease;
|
|
8113
|
+
position: relative;
|
|
8114
|
+
display: flex;
|
|
8115
|
+
justify-content: flex-start;
|
|
8116
|
+
align-content: center;
|
|
8117
|
+
align-items: center;
|
|
8118
|
+
font-weight: 400;
|
|
8119
|
+
> div {
|
|
8120
|
+
padding: 0 20px;
|
|
8121
|
+
min-width: 100%;
|
|
8122
|
+
&.selected {
|
|
8123
|
+
background-color: $wac-hover-multiple-search;
|
|
8124
|
+
color: $wac-main-text;
|
|
8125
|
+
}
|
|
8126
|
+
}
|
|
8127
|
+
.icon {
|
|
8128
|
+
width: 24px;
|
|
8129
|
+
margin: 0 10px 0 0;
|
|
8130
|
+
}
|
|
8131
|
+
&:empty {
|
|
8132
|
+
display: none;
|
|
8133
|
+
}
|
|
8134
|
+
&:first-child {
|
|
8135
|
+
border-width: 1px 0 1px;
|
|
8136
|
+
}
|
|
8137
|
+
&:hover,
|
|
8138
|
+
&:focus {
|
|
8139
|
+
background-color: $wac-gray-background;
|
|
8140
|
+
color: $wac-main-text;
|
|
8141
|
+
}
|
|
8142
|
+
}
|
|
8143
|
+
}
|
|
8144
|
+
}
|
|
8145
|
+
}
|
|
8146
|
+
.wac-select-seacrh-trigger {
|
|
8147
|
+
position: relative;
|
|
8148
|
+
top: 0;
|
|
8149
|
+
left: 0;
|
|
8150
|
+
width: 100%;
|
|
8151
|
+
height: rem(38);
|
|
8152
|
+
display: flex;
|
|
8153
|
+
align-items: center;
|
|
8154
|
+
align-content: center;
|
|
8155
|
+
z-index: 2;
|
|
8156
|
+
padding: 0;
|
|
8157
|
+
input {
|
|
8158
|
+
border: none;
|
|
8159
|
+
width: 100%;
|
|
8160
|
+
box-shadow: none;
|
|
8161
|
+
margin: 0 0 0 rem(10);
|
|
8162
|
+
padding: 0;
|
|
8163
|
+
height: rem(38);
|
|
8164
|
+
line-height: rem(38);
|
|
8165
|
+
&:focus {
|
|
8166
|
+
&::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
8167
|
+
opacity: 0;
|
|
8168
|
+
}
|
|
8169
|
+
&::-moz-placeholder { /* Firefox 19+ */
|
|
8170
|
+
opacity: 0;
|
|
8171
|
+
}
|
|
8172
|
+
&:-ms-input-placeholder { /* IE 10+ */
|
|
8173
|
+
opacity: 0;
|
|
8174
|
+
}
|
|
8175
|
+
&:-moz-placeholder { /* Firefox 18- */
|
|
8176
|
+
opacity: 0;
|
|
8177
|
+
}
|
|
8178
|
+
|
|
8179
|
+
}
|
|
8180
|
+
}
|
|
8181
|
+
}
|