@wizishop/angular-components 0.0.69 → 0.0.72
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 +429 -419
- package/bundles/wizishop-angular-components.umd.js +11 -4
- 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/inputs/input/input.component.js +13 -6
- package/fesm2015/wizishop-angular-components.js +11 -4
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/lib/components/inputs/input/input.component.d.ts +4 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.72.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.69.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -717,222 +717,32 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
717
717
|
}
|
|
718
718
|
}
|
|
719
719
|
}
|
|
720
|
-
.wac-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
position: fixed;
|
|
724
|
-
color: $wac-white;
|
|
725
|
-
background-color: $wac-primary-button;
|
|
726
|
-
border: 1px solid transparent;
|
|
727
|
-
border-radius: 5px;
|
|
728
|
-
padding: 40px;
|
|
729
|
-
transition: all 200ms;
|
|
730
|
-
opacity: 0;
|
|
731
|
-
margin: 10px auto;
|
|
732
|
-
max-width: 550px;
|
|
733
|
-
width: auto;
|
|
734
|
-
box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
|
|
735
|
-
font-size: 14px;
|
|
736
|
-
|
|
737
|
-
&.with-icon {
|
|
738
|
-
.alert--message {
|
|
739
|
-
display: flex;
|
|
740
|
-
align-items: center;
|
|
741
|
-
justify-content: center;
|
|
742
|
-
width: 100%;
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
.icon + .wac-alert-popup__close + .wac-alert-popup__text {
|
|
747
|
-
width: auto;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
&.fullsize {
|
|
751
|
-
max-width: 100%;
|
|
752
|
-
width: 100%;
|
|
753
|
-
border-radius: 0;
|
|
754
|
-
margin: 0;
|
|
755
|
-
padding: 20px 40px 20px 20px;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
&.is-left {
|
|
759
|
-
left: -100px;
|
|
760
|
-
margin: 10px;
|
|
761
|
-
top: 100px;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
&.is-right {
|
|
765
|
-
right: -100px;
|
|
766
|
-
margin: 10px;
|
|
767
|
-
top: 100px;
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
&.is-top {
|
|
771
|
-
top: -100px;
|
|
772
|
-
left: 0;
|
|
773
|
-
right: 0;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
&.is-bottom {
|
|
777
|
-
bottom: -100px;
|
|
778
|
-
left: 0;
|
|
779
|
-
right: 0;
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
&.is-active {
|
|
783
|
-
opacity: 1;
|
|
784
|
-
&.opacity-active {
|
|
785
|
-
opacity: .85;
|
|
786
|
-
}
|
|
787
|
-
&.is-left {
|
|
788
|
-
left: 0;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
&.is-right {
|
|
792
|
-
right: 0;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
&.is-top {
|
|
796
|
-
top: 0;
|
|
797
|
-
&.small {
|
|
798
|
-
top: 30px;
|
|
799
|
-
}
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
&.is-bottom {
|
|
803
|
-
bottom: 0;
|
|
804
|
-
&.small {
|
|
805
|
-
bottom: -70px;
|
|
806
|
-
}
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
p {
|
|
811
|
-
display: inline-block;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
span {
|
|
815
|
-
vertical-align: middle;
|
|
816
|
-
margin: 0 10px 0 0;
|
|
817
|
-
}
|
|
818
|
-
&.is-primary {
|
|
819
|
-
background-color: $wac-primary-button;
|
|
820
|
-
|
|
821
|
-
&.is-inverted {
|
|
822
|
-
background-color: $wac-white;
|
|
823
|
-
border: 1px solid $wac-primary-button;
|
|
824
|
-
color: $wac-primary-button;
|
|
825
|
-
}
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
&.is-success {
|
|
829
|
-
background-color: $wac-color-success-popup-alert;
|
|
830
|
-
|
|
831
|
-
&.is-inverted {
|
|
832
|
-
background-color: $wac-white;
|
|
833
|
-
border: 1px solid $wac-color-success-popup-alert;
|
|
834
|
-
color: $wac-color-success-popup-alert;
|
|
835
|
-
}
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
&.is-danger {
|
|
839
|
-
background-color: $wac-primary-button;
|
|
840
|
-
|
|
841
|
-
&.is-inverted {
|
|
842
|
-
background-color: $wac-white;
|
|
843
|
-
border: 1px solid $wac-primary-button;
|
|
844
|
-
color: $wac-primary-button;
|
|
845
|
-
}
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
&.is-info {
|
|
849
|
-
background-color: $wac-white;
|
|
850
|
-
border: 1px solid $wac-main-text;
|
|
851
|
-
color: $wac-main-text;
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
&.small {
|
|
855
|
-
padding: 10px;
|
|
856
|
-
border-radius: 3px;
|
|
857
|
-
right: 30px;
|
|
858
|
-
top: auto;
|
|
859
|
-
left: auto;
|
|
860
|
-
width: auto;
|
|
861
|
-
min-width: unset;
|
|
862
|
-
margin: 0 0 100px;
|
|
863
|
-
background-color: $wac-tag-success;
|
|
864
|
-
.alert--message {
|
|
865
|
-
display: flex;
|
|
866
|
-
align-items: center;
|
|
867
|
-
justify-content: flex-start;
|
|
868
|
-
}
|
|
869
|
-
.wac-alert-popup {
|
|
870
|
-
&__text {
|
|
871
|
-
white-space: nowrap;
|
|
872
|
-
font-weight: 600;
|
|
873
|
-
}
|
|
874
|
-
&__close {
|
|
875
|
-
display: none;
|
|
876
|
-
}
|
|
877
|
-
}
|
|
878
|
-
}
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
&__title {
|
|
882
|
-
font-size: rem(24);
|
|
883
|
-
line-height: 1.4;
|
|
884
|
-
margin: 0;
|
|
885
|
-
font-weight: 700;
|
|
886
|
-
text-align: center;
|
|
887
|
-
width: 100%;
|
|
888
|
-
}
|
|
720
|
+
.wac-back {
|
|
721
|
+
width: 40px;
|
|
722
|
+
height: 40px;
|
|
889
723
|
|
|
890
|
-
&
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
724
|
+
&__wrapper {
|
|
725
|
+
@include flexbox();
|
|
726
|
+
@include justify-content(center);
|
|
727
|
+
@include align-items(center);
|
|
894
728
|
width: 100%;
|
|
895
|
-
|
|
896
|
-
|
|
729
|
+
height: 100%;
|
|
730
|
+
border-radius: 3px;
|
|
731
|
+
border: 1px solid $wac-border-light;
|
|
732
|
+
background-color: transparent;
|
|
733
|
+
transition: border-color 0.3s ease-in-out;
|
|
897
734
|
|
|
898
|
-
&__close {
|
|
899
|
-
cursor: pointer;
|
|
900
|
-
display: flex;
|
|
901
|
-
position: absolute;
|
|
902
|
-
top: 10px;
|
|
903
|
-
right: 10px;
|
|
904
|
-
width: rem(40);
|
|
905
|
-
height: rem(40);
|
|
906
|
-
border-radius: 50%;
|
|
907
|
-
justify-content: center;
|
|
908
|
-
align-items: center;
|
|
909
|
-
background-color: darken($wac-primary-button, 10%);
|
|
910
|
-
transition: .3s ease;
|
|
911
|
-
&:hover, &:focus {
|
|
912
|
-
background-color: darken($wac-primary-button, 15%);
|
|
913
|
-
}
|
|
914
735
|
i {
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
.is-success & {
|
|
919
|
-
background-color: darken($wac-color-success-popup-alert, 20%);
|
|
920
|
-
&:hover, &:focus {
|
|
921
|
-
background-color: darken($wac-color-success-popup-alert, 30%);
|
|
922
|
-
}
|
|
923
|
-
}
|
|
924
|
-
.is-danger & {
|
|
925
|
-
background-color: darken($wac-primary-button, 10%);
|
|
926
|
-
&:hover, &:focus {
|
|
927
|
-
background-color: darken($wac-primary-button, 15%);
|
|
928
|
-
}
|
|
736
|
+
color: $wac-second-color;
|
|
737
|
+
font-size: 11px;
|
|
738
|
+
line-height: 14px;
|
|
929
739
|
}
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
740
|
+
|
|
741
|
+
&:hover {
|
|
742
|
+
border-color: $wac-back-border-hover;
|
|
743
|
+
transition: border-color 0.3s ease-in-out;
|
|
933
744
|
}
|
|
934
745
|
}
|
|
935
|
-
|
|
936
746
|
}
|
|
937
747
|
.wac-separator {
|
|
938
748
|
display: block;
|
|
@@ -952,6 +762,10 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
952
762
|
height: 100%;
|
|
953
763
|
border-radius: 3px;
|
|
954
764
|
|
|
765
|
+
@include media('<tablet') {
|
|
766
|
+
@include padding(rem(20));
|
|
767
|
+
}
|
|
768
|
+
|
|
955
769
|
&.no-padding {
|
|
956
770
|
padding: 0;
|
|
957
771
|
}
|
|
@@ -2088,145 +1902,88 @@ $wac-color-success-popup-alert: #6DCC95!default;
|
|
|
2088
1902
|
}
|
|
2089
1903
|
}
|
|
2090
1904
|
}
|
|
2091
|
-
.wac-
|
|
2092
|
-
height: 100%;
|
|
1905
|
+
.wac-filters {
|
|
2093
1906
|
width: 100%;
|
|
2094
|
-
width: 100vw;
|
|
2095
|
-
height: 100vh;
|
|
2096
|
-
position: fixed;
|
|
2097
|
-
top: 0;
|
|
2098
|
-
left: 0;
|
|
2099
|
-
z-index: 9999;
|
|
2100
|
-
|
|
2101
1907
|
&__wrapper {
|
|
2102
|
-
|
|
2103
|
-
border: 1px solid $wac-border-color;
|
|
2104
|
-
border-radius: 3px;
|
|
2105
|
-
margin: auto;
|
|
2106
|
-
box-shadow: 0px 10px 40px $wac-free-popin-boxshadow;
|
|
2107
|
-
position: absolute;
|
|
2108
|
-
left: 50%;
|
|
2109
|
-
top: 50%;
|
|
2110
|
-
transform: translate(-50%, -50%);
|
|
2111
|
-
padding: 50px;
|
|
2112
|
-
z-index: 3;
|
|
2113
|
-
max-height: 90vh;
|
|
1908
|
+
width: 100%;
|
|
2114
1909
|
display: flex;
|
|
2115
|
-
flex-wrap:
|
|
2116
|
-
|
|
2117
|
-
justify-content: center;
|
|
1910
|
+
flex-wrap: wrap;
|
|
1911
|
+
justify-content: flex-start;
|
|
2118
1912
|
align-items: center;
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
overflow: hidden;
|
|
2122
|
-
|
|
2123
|
-
&__content {
|
|
1913
|
+
align-content: center;
|
|
1914
|
+
button {
|
|
2124
1915
|
position: relative;
|
|
2125
|
-
|
|
2126
|
-
display: flex;
|
|
2127
|
-
> * {
|
|
2128
|
-
height: auto;
|
|
2129
|
-
}
|
|
2130
|
-
}
|
|
2131
|
-
|
|
2132
|
-
div:not([class]) {
|
|
2133
|
-
width: 100%;
|
|
2134
|
-
margin: 0 0 17px;
|
|
2135
|
-
}
|
|
2136
|
-
|
|
2137
|
-
> * {
|
|
2138
|
-
width: 100%;
|
|
2139
|
-
}
|
|
2140
|
-
|
|
2141
|
-
&__button-close {
|
|
2142
|
-
position: absolute;
|
|
2143
|
-
top: 10px;
|
|
2144
|
-
right: 10px;
|
|
2145
|
-
width: 30px;
|
|
2146
|
-
height: 30px;
|
|
2147
|
-
border-radius: 50%;
|
|
1916
|
+
width: auto;
|
|
2148
1917
|
display: flex;
|
|
2149
|
-
justify-content: center;
|
|
2150
1918
|
align-items: center;
|
|
2151
|
-
|
|
2152
|
-
|
|
1919
|
+
font-size: rem(14);
|
|
1920
|
+
line-height: rem(16);
|
|
1921
|
+
font-weight: 400;
|
|
1922
|
+
color: $wac-second-color;
|
|
1923
|
+
border: 1px solid $wac-border-light;
|
|
1924
|
+
border-radius: 3px;
|
|
1925
|
+
background: transparent;
|
|
1926
|
+
box-shadow: none;
|
|
1927
|
+
margin-bottom: rem(10);
|
|
1928
|
+
transition: 0.3s ease;
|
|
1929
|
+
cursor: pointer;
|
|
1930
|
+
padding: 12px 20px;
|
|
1931
|
+
.event {
|
|
1932
|
+
position: absolute;
|
|
1933
|
+
top: 0;
|
|
1934
|
+
left: 0;
|
|
1935
|
+
width: 100%;
|
|
1936
|
+
height: 100%;
|
|
1937
|
+
z-index: 2;
|
|
1938
|
+
display: inline-block;
|
|
1939
|
+
}
|
|
2153
1940
|
i {
|
|
2154
|
-
color: $wac-
|
|
2155
|
-
font-size:
|
|
2156
|
-
|
|
1941
|
+
color: $wac-main-text;
|
|
1942
|
+
font-size: rem(14);
|
|
1943
|
+
margin: 0 rem(10) 0 0;
|
|
2157
1944
|
}
|
|
2158
|
-
&:hover,
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
1945
|
+
&:hover,
|
|
1946
|
+
&:focus,
|
|
1947
|
+
&.active {
|
|
1948
|
+
border-color: $wac-wizishop-blue;
|
|
1949
|
+
color: $wac-main-text;
|
|
1950
|
+
}
|
|
1951
|
+
&:not(:last-child) {
|
|
1952
|
+
margin: 0 rem(10) rem(10) 0;
|
|
2163
1953
|
}
|
|
2164
1954
|
}
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
color: $wac-main-text;
|
|
2171
|
-
}
|
|
2172
|
-
|
|
2173
|
-
h2 {
|
|
2174
|
-
font-size: rem(18);
|
|
2175
|
-
line-height: rem(21);
|
|
2176
|
-
font-weight: 500;
|
|
2177
|
-
color: $wac-main-text;
|
|
2178
|
-
}
|
|
2179
|
-
|
|
2180
|
-
h3 {
|
|
2181
|
-
font-size: rem(16);
|
|
2182
|
-
line-height: rem(19);
|
|
2183
|
-
font-weight: 500;
|
|
2184
|
-
color: $wac-main-text;
|
|
2185
|
-
}
|
|
2186
|
-
|
|
2187
|
-
h4 {
|
|
1955
|
+
> span {
|
|
1956
|
+
position: relative;
|
|
1957
|
+
color: $wac-link-color;
|
|
1958
|
+
display: inline-block;
|
|
1959
|
+
transition: 0.3s ease;
|
|
2188
1960
|
font-size: rem(14);
|
|
2189
1961
|
line-height: rem(16);
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
&__button {
|
|
2212
|
-
margin: 10px;
|
|
2213
|
-
width: auto;
|
|
1962
|
+
margin: 0 0 0 rem(30);
|
|
1963
|
+
cursor: pointer;
|
|
1964
|
+
z-index: 1;
|
|
1965
|
+
&:before {
|
|
1966
|
+
content: '';
|
|
1967
|
+
display: block;
|
|
1968
|
+
position: absolute;
|
|
1969
|
+
width: 100%;
|
|
1970
|
+
max-width: 0;
|
|
1971
|
+
height: 1px;
|
|
1972
|
+
border-radius: 3px;
|
|
1973
|
+
background-color: darken($wac-link-color, 15%);
|
|
1974
|
+
left: 0;
|
|
1975
|
+
bottom: -2px;
|
|
1976
|
+
transition: 0.3s ease;
|
|
1977
|
+
}
|
|
1978
|
+
&:hover,
|
|
1979
|
+
&:focus {
|
|
1980
|
+
color: darken($wac-link-color, 15%);
|
|
1981
|
+
&:before {
|
|
1982
|
+
max-width: 100%;
|
|
2214
1983
|
}
|
|
1984
|
+
}
|
|
2215
1985
|
}
|
|
2216
1986
|
}
|
|
2217
|
-
&__background {
|
|
2218
|
-
z-index: 1;
|
|
2219
|
-
position: absolute;
|
|
2220
|
-
top: 0;
|
|
2221
|
-
left: 0;
|
|
2222
|
-
width: 100%;
|
|
2223
|
-
height: 100%;
|
|
2224
|
-
background-color: transparentize($wac-main-text, .5);
|
|
2225
|
-
}
|
|
2226
|
-
}
|
|
2227
|
-
|
|
2228
|
-
.wac-free-popin .ps-content > * {
|
|
2229
|
-
padding-right: 15px;
|
|
2230
1987
|
}
|
|
2231
1988
|
.wac-tab {
|
|
2232
1989
|
&__wrapper {
|
|
@@ -3345,33 +3102,223 @@ span.wac-tooltip {
|
|
|
3345
3102
|
}
|
|
3346
3103
|
}
|
|
3347
3104
|
}
|
|
3348
|
-
}
|
|
3349
|
-
.wac-
|
|
3350
|
-
|
|
3351
|
-
|
|
3105
|
+
}
|
|
3106
|
+
.wac-alert-popup {
|
|
3107
|
+
.alert {
|
|
3108
|
+
z-index: 999999;
|
|
3109
|
+
position: fixed;
|
|
3110
|
+
color: $wac-white;
|
|
3111
|
+
background-color: $wac-primary-button;
|
|
3112
|
+
border: 1px solid transparent;
|
|
3113
|
+
border-radius: 5px;
|
|
3114
|
+
padding: 40px;
|
|
3115
|
+
transition: all 200ms;
|
|
3116
|
+
opacity: 0;
|
|
3117
|
+
margin: 10px auto;
|
|
3118
|
+
max-width: 550px;
|
|
3119
|
+
width: auto;
|
|
3120
|
+
box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
|
|
3121
|
+
font-size: 14px;
|
|
3122
|
+
|
|
3123
|
+
&.with-icon {
|
|
3124
|
+
.alert--message {
|
|
3125
|
+
display: flex;
|
|
3126
|
+
align-items: center;
|
|
3127
|
+
justify-content: center;
|
|
3128
|
+
width: 100%;
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
.icon + .wac-alert-popup__close + .wac-alert-popup__text {
|
|
3133
|
+
width: auto;
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
&.fullsize {
|
|
3137
|
+
max-width: 100%;
|
|
3138
|
+
width: 100%;
|
|
3139
|
+
border-radius: 0;
|
|
3140
|
+
margin: 0;
|
|
3141
|
+
padding: 20px 40px 20px 20px;
|
|
3142
|
+
}
|
|
3143
|
+
|
|
3144
|
+
&.is-left {
|
|
3145
|
+
left: -100px;
|
|
3146
|
+
margin: 10px;
|
|
3147
|
+
top: 100px;
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
&.is-right {
|
|
3151
|
+
right: -100px;
|
|
3152
|
+
margin: 10px;
|
|
3153
|
+
top: 100px;
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
&.is-top {
|
|
3157
|
+
top: -100px;
|
|
3158
|
+
left: 0;
|
|
3159
|
+
right: 0;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
&.is-bottom {
|
|
3163
|
+
bottom: -100px;
|
|
3164
|
+
left: 0;
|
|
3165
|
+
right: 0;
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3168
|
+
&.is-active {
|
|
3169
|
+
opacity: 1;
|
|
3170
|
+
&.opacity-active {
|
|
3171
|
+
opacity: .85;
|
|
3172
|
+
}
|
|
3173
|
+
&.is-left {
|
|
3174
|
+
left: 0;
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
&.is-right {
|
|
3178
|
+
right: 0;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
&.is-top {
|
|
3182
|
+
top: 0;
|
|
3183
|
+
&.small {
|
|
3184
|
+
top: 30px;
|
|
3185
|
+
}
|
|
3186
|
+
}
|
|
3187
|
+
|
|
3188
|
+
&.is-bottom {
|
|
3189
|
+
bottom: 0;
|
|
3190
|
+
&.small {
|
|
3191
|
+
bottom: -70px;
|
|
3192
|
+
}
|
|
3193
|
+
}
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
p {
|
|
3197
|
+
display: inline-block;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
span {
|
|
3201
|
+
vertical-align: middle;
|
|
3202
|
+
margin: 0 10px 0 0;
|
|
3203
|
+
}
|
|
3204
|
+
&.is-primary {
|
|
3205
|
+
background-color: $wac-primary-button;
|
|
3206
|
+
|
|
3207
|
+
&.is-inverted {
|
|
3208
|
+
background-color: $wac-white;
|
|
3209
|
+
border: 1px solid $wac-primary-button;
|
|
3210
|
+
color: $wac-primary-button;
|
|
3211
|
+
}
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
&.is-success {
|
|
3215
|
+
background-color: $wac-color-success-popup-alert;
|
|
3216
|
+
|
|
3217
|
+
&.is-inverted {
|
|
3218
|
+
background-color: $wac-white;
|
|
3219
|
+
border: 1px solid $wac-color-success-popup-alert;
|
|
3220
|
+
color: $wac-color-success-popup-alert;
|
|
3221
|
+
}
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
&.is-danger {
|
|
3225
|
+
background-color: $wac-primary-button;
|
|
3226
|
+
|
|
3227
|
+
&.is-inverted {
|
|
3228
|
+
background-color: $wac-white;
|
|
3229
|
+
border: 1px solid $wac-primary-button;
|
|
3230
|
+
color: $wac-primary-button;
|
|
3231
|
+
}
|
|
3232
|
+
}
|
|
3233
|
+
|
|
3234
|
+
&.is-info {
|
|
3235
|
+
background-color: $wac-white;
|
|
3236
|
+
border: 1px solid $wac-main-text;
|
|
3237
|
+
color: $wac-main-text;
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3240
|
+
&.small {
|
|
3241
|
+
padding: 10px;
|
|
3242
|
+
border-radius: 3px;
|
|
3243
|
+
right: 30px;
|
|
3244
|
+
top: auto;
|
|
3245
|
+
left: auto;
|
|
3246
|
+
width: auto;
|
|
3247
|
+
min-width: unset;
|
|
3248
|
+
margin: 0 0 100px;
|
|
3249
|
+
background-color: $wac-tag-success;
|
|
3250
|
+
.alert--message {
|
|
3251
|
+
display: flex;
|
|
3252
|
+
align-items: center;
|
|
3253
|
+
justify-content: flex-start;
|
|
3254
|
+
}
|
|
3255
|
+
.wac-alert-popup {
|
|
3256
|
+
&__text {
|
|
3257
|
+
white-space: nowrap;
|
|
3258
|
+
font-weight: 600;
|
|
3259
|
+
}
|
|
3260
|
+
&__close {
|
|
3261
|
+
display: none;
|
|
3262
|
+
}
|
|
3263
|
+
}
|
|
3264
|
+
}
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
&__title {
|
|
3268
|
+
font-size: rem(24);
|
|
3269
|
+
line-height: 1.4;
|
|
3270
|
+
margin: 0;
|
|
3271
|
+
font-weight: 700;
|
|
3272
|
+
text-align: center;
|
|
3273
|
+
width: 100%;
|
|
3274
|
+
}
|
|
3352
3275
|
|
|
3353
|
-
&
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3276
|
+
&__text {
|
|
3277
|
+
font-size: rem(16);
|
|
3278
|
+
font-weight: 500;
|
|
3279
|
+
text-align: center;
|
|
3357
3280
|
width: 100%;
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
border: 1px solid $wac-border-light;
|
|
3361
|
-
background-color: transparent;
|
|
3362
|
-
transition: border-color 0.3s ease-in-out;
|
|
3281
|
+
margin: 0;
|
|
3282
|
+
}
|
|
3363
3283
|
|
|
3284
|
+
&__close {
|
|
3285
|
+
cursor: pointer;
|
|
3286
|
+
display: flex;
|
|
3287
|
+
position: absolute;
|
|
3288
|
+
top: 10px;
|
|
3289
|
+
right: 10px;
|
|
3290
|
+
width: rem(40);
|
|
3291
|
+
height: rem(40);
|
|
3292
|
+
border-radius: 50%;
|
|
3293
|
+
justify-content: center;
|
|
3294
|
+
align-items: center;
|
|
3295
|
+
background-color: darken($wac-primary-button, 10%);
|
|
3296
|
+
transition: .3s ease;
|
|
3297
|
+
&:hover, &:focus {
|
|
3298
|
+
background-color: darken($wac-primary-button, 15%);
|
|
3299
|
+
}
|
|
3364
3300
|
i {
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
line-height: 14px;
|
|
3301
|
+
font-size: rem(20);
|
|
3302
|
+
color: $white;
|
|
3368
3303
|
}
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3304
|
+
.is-success & {
|
|
3305
|
+
background-color: darken($wac-color-success-popup-alert, 20%);
|
|
3306
|
+
&:hover, &:focus {
|
|
3307
|
+
background-color: darken($wac-color-success-popup-alert, 30%);
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3310
|
+
.is-danger & {
|
|
3311
|
+
background-color: darken($wac-primary-button, 10%);
|
|
3312
|
+
&:hover, &:focus {
|
|
3313
|
+
background-color: darken($wac-primary-button, 15%);
|
|
3314
|
+
}
|
|
3315
|
+
}
|
|
3316
|
+
.fullsize & {
|
|
3317
|
+
top: 50%;
|
|
3318
|
+
transform: translateY(-50%);
|
|
3373
3319
|
}
|
|
3374
3320
|
}
|
|
3321
|
+
|
|
3375
3322
|
}
|
|
3376
3323
|
.wac-wrapper {
|
|
3377
3324
|
width: 100%;
|
|
@@ -3551,94 +3498,155 @@ span.wac-tooltip {
|
|
|
3551
3498
|
}
|
|
3552
3499
|
}
|
|
3553
3500
|
}
|
|
3554
|
-
.wac-
|
|
3501
|
+
.wac-free-popin {
|
|
3502
|
+
height: 100%;
|
|
3555
3503
|
width: 100%;
|
|
3504
|
+
width: 100vw;
|
|
3505
|
+
height: 100vh;
|
|
3506
|
+
position: fixed;
|
|
3507
|
+
top: 0;
|
|
3508
|
+
left: 0;
|
|
3509
|
+
z-index: 9999;
|
|
3510
|
+
|
|
3556
3511
|
&__wrapper {
|
|
3557
|
-
|
|
3512
|
+
background-color: white;
|
|
3513
|
+
border: 1px solid $wac-border-color;
|
|
3514
|
+
border-radius: 3px;
|
|
3515
|
+
margin: auto;
|
|
3516
|
+
box-shadow: 0px 10px 40px $wac-free-popin-boxshadow;
|
|
3517
|
+
position: absolute;
|
|
3518
|
+
left: 50%;
|
|
3519
|
+
top: 50%;
|
|
3520
|
+
transform: translate(-50%, -50%);
|
|
3521
|
+
padding: 50px;
|
|
3522
|
+
z-index: 3;
|
|
3523
|
+
max-height: 90vh;
|
|
3558
3524
|
display: flex;
|
|
3559
|
-
flex-wrap:
|
|
3560
|
-
|
|
3525
|
+
flex-wrap: nowrap;
|
|
3526
|
+
flex-direction: column;
|
|
3527
|
+
justify-content: center;
|
|
3561
3528
|
align-items: center;
|
|
3562
|
-
|
|
3563
|
-
|
|
3529
|
+
width: 100%;
|
|
3530
|
+
max-width: 575px;
|
|
3531
|
+
overflow: hidden;
|
|
3532
|
+
|
|
3533
|
+
&__content {
|
|
3564
3534
|
position: relative;
|
|
3565
|
-
|
|
3535
|
+
overflow: hidden;
|
|
3566
3536
|
display: flex;
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
line-height: rem(16);
|
|
3570
|
-
font-weight: 400;
|
|
3571
|
-
color: $wac-second-color;
|
|
3572
|
-
border: 1px solid $wac-border-light;
|
|
3573
|
-
border-radius: 3px;
|
|
3574
|
-
background: transparent;
|
|
3575
|
-
box-shadow: none;
|
|
3576
|
-
margin-bottom: rem(10);
|
|
3577
|
-
transition: 0.3s ease;
|
|
3578
|
-
cursor: pointer;
|
|
3579
|
-
padding: 12px 20px;
|
|
3580
|
-
.event {
|
|
3581
|
-
position: absolute;
|
|
3582
|
-
top: 0;
|
|
3583
|
-
left: 0;
|
|
3584
|
-
width: 100%;
|
|
3585
|
-
height: 100%;
|
|
3586
|
-
z-index: 2;
|
|
3587
|
-
display: inline-block;
|
|
3537
|
+
> * {
|
|
3538
|
+
height: auto;
|
|
3588
3539
|
}
|
|
3540
|
+
}
|
|
3541
|
+
|
|
3542
|
+
div:not([class]) {
|
|
3543
|
+
width: 100%;
|
|
3544
|
+
margin: 0 0 17px;
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
> * {
|
|
3548
|
+
width: 100%;
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
&__button-close {
|
|
3552
|
+
position: absolute;
|
|
3553
|
+
top: 10px;
|
|
3554
|
+
right: 10px;
|
|
3555
|
+
width: 30px;
|
|
3556
|
+
height: 30px;
|
|
3557
|
+
border-radius: 50%;
|
|
3558
|
+
display: flex;
|
|
3559
|
+
justify-content: center;
|
|
3560
|
+
align-items: center;
|
|
3561
|
+
background-color: $wac-popin-btn-close;
|
|
3562
|
+
transition: .3s ease;
|
|
3589
3563
|
i {
|
|
3590
|
-
color: $wac-
|
|
3591
|
-
font-size:
|
|
3592
|
-
|
|
3593
|
-
}
|
|
3594
|
-
&:hover,
|
|
3595
|
-
&:focus,
|
|
3596
|
-
&.active {
|
|
3597
|
-
border-color: $wac-wizishop-blue;
|
|
3598
|
-
color: $wac-main-text;
|
|
3564
|
+
color: $wac-second-color;
|
|
3565
|
+
font-size: 14px;
|
|
3566
|
+
font-weight: 400;
|
|
3599
3567
|
}
|
|
3600
|
-
&:
|
|
3601
|
-
|
|
3568
|
+
&:hover, &:focus {
|
|
3569
|
+
background-color: $wac-main-text;
|
|
3570
|
+
i {
|
|
3571
|
+
color: $wac-white;
|
|
3572
|
+
}
|
|
3602
3573
|
}
|
|
3603
3574
|
}
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3575
|
+
|
|
3576
|
+
h1 {
|
|
3577
|
+
font-size: rem(30);
|
|
3578
|
+
line-height: rem(35);
|
|
3579
|
+
font-weight: 600;
|
|
3580
|
+
color: $wac-main-text;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
h2 {
|
|
3584
|
+
font-size: rem(18);
|
|
3585
|
+
line-height: rem(21);
|
|
3586
|
+
font-weight: 500;
|
|
3587
|
+
color: $wac-main-text;
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
h3 {
|
|
3591
|
+
font-size: rem(16);
|
|
3592
|
+
line-height: rem(19);
|
|
3593
|
+
font-weight: 500;
|
|
3594
|
+
color: $wac-main-text;
|
|
3595
|
+
}
|
|
3596
|
+
|
|
3597
|
+
h4 {
|
|
3609
3598
|
font-size: rem(14);
|
|
3610
3599
|
line-height: rem(16);
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3600
|
+
font-weight: 500;
|
|
3601
|
+
color: $wac-main-text;
|
|
3602
|
+
}
|
|
3603
|
+
|
|
3604
|
+
img {
|
|
3605
|
+
width: auto;
|
|
3606
|
+
height: auto;
|
|
3607
|
+
margin: 0 auto;
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
&__title {
|
|
3611
|
+
font: normal normal bold 20px/25px sans-serif;
|
|
3612
|
+
color: $wac-main-text;
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3615
|
+
&__buttons {
|
|
3616
|
+
width: 100%;
|
|
3617
|
+
display: flex;
|
|
3618
|
+
flex-direction: column;
|
|
3619
|
+
align-items: center;
|
|
3620
|
+
margin: 30px 0 0;
|
|
3621
|
+
&__button {
|
|
3622
|
+
margin: 10px;
|
|
3623
|
+
width: auto;
|
|
3632
3624
|
}
|
|
3633
|
-
}
|
|
3634
3625
|
}
|
|
3635
3626
|
}
|
|
3627
|
+
&__background {
|
|
3628
|
+
z-index: 1;
|
|
3629
|
+
position: absolute;
|
|
3630
|
+
top: 0;
|
|
3631
|
+
left: 0;
|
|
3632
|
+
width: 100%;
|
|
3633
|
+
height: 100%;
|
|
3634
|
+
background-color: transparentize($wac-main-text, .5);
|
|
3635
|
+
}
|
|
3636
|
+
}
|
|
3637
|
+
|
|
3638
|
+
.wac-free-popin .ps-content > * {
|
|
3639
|
+
padding-right: 15px;
|
|
3636
3640
|
}
|
|
3637
3641
|
h1.wac-h1 {
|
|
3638
3642
|
font-size: rem(30);
|
|
3639
3643
|
line-height: rem(35);
|
|
3640
3644
|
font-weight: 600;
|
|
3641
3645
|
color: $wac-main-text;
|
|
3646
|
+
@include media('<desktop') {
|
|
3647
|
+
font-size: rem(22);
|
|
3648
|
+
line-height: rem(30);
|
|
3649
|
+
}
|
|
3642
3650
|
}
|
|
3643
3651
|
.wac-info {
|
|
3644
3652
|
display: inline-block;
|
|
@@ -4604,7 +4612,9 @@ h4.wac-h4 {
|
|
|
4604
4612
|
}
|
|
4605
4613
|
}
|
|
4606
4614
|
& + * {
|
|
4607
|
-
|
|
4615
|
+
@include media('>=tablet') {
|
|
4616
|
+
white-space: nowrap;
|
|
4617
|
+
}
|
|
4608
4618
|
}
|
|
4609
4619
|
}
|
|
4610
4620
|
}
|