@wizishop/angular-components 0.0.229 → 0.0.233
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 +483 -474
- package/bundles/wizishop-angular-components.umd.js +4 -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/content-with-buttons/content-with-buttons.component.js +2 -2
- package/esm2015/lib/components/inputs/input/input.component.js +2 -2
- package/esm2015/lib/components/text-area/text-area.component.js +2 -2
- package/esm2015/lib/components/token-check/token-check.component.js +2 -2
- package/fesm2015/wizishop-angular-components.js +4 -4
- package/fesm2015/wizishop-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-0.0.233.tgz +0 -0
- package/wizishop-angular-components.metadata.json +1 -1
- package/wizishop-angular-components-0.0.229.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -768,73 +768,227 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
768
768
|
}
|
|
769
769
|
}
|
|
770
770
|
}
|
|
771
|
-
.wac-alert {
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
771
|
+
.wac-alert-popup {
|
|
772
|
+
.alert {
|
|
773
|
+
z-index: 999999;
|
|
774
|
+
position: fixed;
|
|
775
|
+
color: $wac-white;
|
|
776
|
+
background-color: $wac-primary-button;
|
|
777
|
+
border: 1px solid transparent;
|
|
778
|
+
border-radius: 5px;
|
|
779
|
+
padding: 40px;
|
|
780
|
+
transition: all 200ms;
|
|
781
|
+
opacity: 0;
|
|
782
|
+
margin: 10px auto;
|
|
783
|
+
max-width: 550px;
|
|
784
|
+
width: auto;
|
|
785
|
+
box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
|
|
786
|
+
font-size: 14px;
|
|
787
|
+
|
|
788
|
+
&.with-icon {
|
|
789
|
+
.alert--message {
|
|
790
|
+
display: flex;
|
|
791
|
+
align-items: center;
|
|
792
|
+
justify-content: center;
|
|
793
|
+
width: 100%;
|
|
786
794
|
}
|
|
787
795
|
}
|
|
788
|
-
|
|
789
|
-
|
|
796
|
+
|
|
797
|
+
.icon + .wac-alert-popup__close + .wac-alert-popup__text {
|
|
798
|
+
width: auto;
|
|
790
799
|
}
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
800
|
+
|
|
801
|
+
&.fullsize {
|
|
802
|
+
max-width: 100%;
|
|
803
|
+
width: 100%;
|
|
804
|
+
border-radius: 0;
|
|
805
|
+
margin: 0;
|
|
806
|
+
padding: 20px 40px 20px 20px;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
&.is-left {
|
|
810
|
+
left: -100px;
|
|
811
|
+
margin: 10px;
|
|
812
|
+
top: 100px;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
&.is-right {
|
|
816
|
+
right: -100px;
|
|
817
|
+
margin: 10px;
|
|
818
|
+
top: 100px;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
&.is-top {
|
|
822
|
+
top: -100px;
|
|
823
|
+
left: 0;
|
|
824
|
+
right: 0;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
&.is-bottom {
|
|
828
|
+
bottom: -100px;
|
|
829
|
+
left: 0;
|
|
830
|
+
right: 0;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
&.is-active {
|
|
834
|
+
opacity: 1;
|
|
835
|
+
&.opacity-active {
|
|
836
|
+
opacity: .85;
|
|
837
|
+
}
|
|
838
|
+
&.is-left {
|
|
839
|
+
left: 0;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
&.is-right {
|
|
843
|
+
right: 0;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
&.is-top {
|
|
847
|
+
top: 0;
|
|
848
|
+
&.small {
|
|
849
|
+
top: 30px;
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
&.is-bottom {
|
|
854
|
+
bottom: 0;
|
|
855
|
+
&.small {
|
|
856
|
+
bottom: -70px;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
|
|
794
861
|
p {
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
862
|
+
display: inline-block;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
span {
|
|
866
|
+
vertical-align: middle;
|
|
867
|
+
margin: 0 10px 0 0;
|
|
868
|
+
}
|
|
869
|
+
&.is-primary {
|
|
870
|
+
background-color: $wac-primary-button;
|
|
871
|
+
|
|
872
|
+
&.is-inverted {
|
|
873
|
+
background-color: $wac-white;
|
|
874
|
+
border: 1px solid $wac-primary-button;
|
|
875
|
+
color: $wac-primary-button;
|
|
798
876
|
}
|
|
799
877
|
}
|
|
800
|
-
|
|
801
|
-
|
|
878
|
+
|
|
879
|
+
&.is-success {
|
|
880
|
+
background-color: $wac-color-success-popup-alert;
|
|
881
|
+
|
|
882
|
+
&.is-inverted {
|
|
883
|
+
background-color: $wac-white;
|
|
884
|
+
border: 1px solid $wac-color-success-popup-alert;
|
|
885
|
+
color: $wac-color-success-popup-alert;
|
|
886
|
+
}
|
|
802
887
|
}
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
888
|
+
|
|
889
|
+
&.is-danger {
|
|
890
|
+
background-color: $wac-primary-button;
|
|
891
|
+
|
|
892
|
+
&.is-inverted {
|
|
893
|
+
background-color: $wac-white;
|
|
894
|
+
border: 1px solid $wac-primary-button;
|
|
895
|
+
color: $wac-primary-button;
|
|
810
896
|
}
|
|
811
897
|
}
|
|
812
|
-
|
|
813
|
-
|
|
898
|
+
|
|
899
|
+
&.is-info {
|
|
900
|
+
background-color: $wac-white;
|
|
901
|
+
border: 1px solid $wac-main-text;
|
|
902
|
+
color: $wac-main-text;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
&.small {
|
|
906
|
+
padding: 10px;
|
|
907
|
+
border-radius: 3px;
|
|
908
|
+
right: 30px;
|
|
909
|
+
top: auto;
|
|
910
|
+
left: auto;
|
|
911
|
+
width: auto;
|
|
912
|
+
min-width: unset;
|
|
913
|
+
margin: 0 0 100px;
|
|
914
|
+
background-color: $wac-tag-success;
|
|
915
|
+
font-size: rem(14);
|
|
916
|
+
&.is-danger {
|
|
917
|
+
background-color: $wac-primary-button;
|
|
918
|
+
}
|
|
919
|
+
.alert--message {
|
|
920
|
+
display: flex;
|
|
921
|
+
align-items: center;
|
|
922
|
+
justify-content: flex-start;
|
|
923
|
+
}
|
|
924
|
+
.wac-alert-popup {
|
|
925
|
+
&__text {
|
|
926
|
+
font-size: rem(14);
|
|
927
|
+
white-space: nowrap;
|
|
928
|
+
font-weight: 600;
|
|
929
|
+
}
|
|
930
|
+
&__close {
|
|
931
|
+
display: none;
|
|
932
|
+
}
|
|
933
|
+
}
|
|
814
934
|
}
|
|
815
935
|
}
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
font-size: rem(
|
|
819
|
-
line-height:
|
|
936
|
+
|
|
937
|
+
&__title {
|
|
938
|
+
font-size: rem(24);
|
|
939
|
+
line-height: 1.4;
|
|
820
940
|
margin: 0;
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
color: $wac-p-alert-color-default;
|
|
825
|
-
}
|
|
941
|
+
font-weight: 700;
|
|
942
|
+
text-align: center;
|
|
943
|
+
width: 100%;
|
|
826
944
|
}
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
945
|
+
|
|
946
|
+
&__text {
|
|
947
|
+
font-size: rem(16);
|
|
948
|
+
font-weight: 500;
|
|
949
|
+
text-align: center;
|
|
950
|
+
width: 100%;
|
|
951
|
+
margin: 0;
|
|
833
952
|
}
|
|
834
953
|
|
|
835
|
-
|
|
836
|
-
|
|
954
|
+
&__close {
|
|
955
|
+
cursor: pointer;
|
|
956
|
+
display: flex;
|
|
957
|
+
position: absolute;
|
|
958
|
+
top: 10px;
|
|
959
|
+
right: 10px;
|
|
960
|
+
width: rem(40);
|
|
961
|
+
height: rem(40);
|
|
962
|
+
border-radius: 50%;
|
|
963
|
+
justify-content: center;
|
|
964
|
+
align-items: center;
|
|
965
|
+
background-color: darken($wac-primary-button, 10%);
|
|
966
|
+
transition: .3s ease;
|
|
967
|
+
&:hover, &:focus {
|
|
968
|
+
background-color: darken($wac-primary-button, 15%);
|
|
969
|
+
}
|
|
970
|
+
i {
|
|
971
|
+
font-size: rem(20);
|
|
972
|
+
color: $white;
|
|
973
|
+
}
|
|
974
|
+
.is-success & {
|
|
975
|
+
background-color: darken($wac-color-success-popup-alert, 20%);
|
|
976
|
+
&:hover, &:focus {
|
|
977
|
+
background-color: darken($wac-color-success-popup-alert, 30%);
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
.is-danger & {
|
|
981
|
+
background-color: darken($wac-primary-button, 10%);
|
|
982
|
+
&:hover, &:focus {
|
|
983
|
+
background-color: darken($wac-primary-button, 15%);
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
.fullsize & {
|
|
987
|
+
top: 50%;
|
|
988
|
+
transform: translateY(-50%);
|
|
989
|
+
}
|
|
837
990
|
}
|
|
991
|
+
|
|
838
992
|
}
|
|
839
993
|
.selected-list {
|
|
840
994
|
width: 100%;
|
|
@@ -1050,140 +1204,134 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
1050
1204
|
border-bottom-style: dashed;
|
|
1051
1205
|
}
|
|
1052
1206
|
}
|
|
1053
|
-
.
|
|
1207
|
+
.wac-breadcrumbs {
|
|
1054
1208
|
width: 100%;
|
|
1055
1209
|
display: flex;
|
|
1056
1210
|
align-items: center;
|
|
1057
|
-
|
|
1058
|
-
|
|
1211
|
+
padding: 0;
|
|
1212
|
+
margin: 0 0 10px;
|
|
1059
1213
|
border-radius: 3px;
|
|
1060
|
-
|
|
1061
|
-
padding: 30px;
|
|
1062
|
-
border: 2px solid transparent;
|
|
1063
|
-
transition: .3s ease;
|
|
1064
|
-
opacity: .45;
|
|
1065
|
-
&.selected, &:not(.disabled):hover, &:not(.disabled):focus {
|
|
1066
|
-
border-color: $wac-input-active-color;
|
|
1067
|
-
opacity: 1!important;
|
|
1068
|
-
}
|
|
1069
|
-
&.firstWacRadioBLock:not(.disabled) {
|
|
1070
|
-
opacity: 1!important;
|
|
1071
|
-
}
|
|
1214
|
+
|
|
1072
1215
|
@include media('<tablet') {
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1216
|
+
&:not(.no-responsive) {
|
|
1217
|
+
max-width: 100%;
|
|
1218
|
+
overflow: hidden;
|
|
1219
|
+
.wac-breadcrumbs {
|
|
1220
|
+
&__wrapper {
|
|
1221
|
+
@include media('<tablet') {
|
|
1222
|
+
width: auto;
|
|
1223
|
+
overflow-x: scroll;
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1226
|
+
&__item {
|
|
1227
|
+
@include media('<tablet') {
|
|
1228
|
+
width: auto;
|
|
1229
|
+
min-width: unset;
|
|
1230
|
+
max-width: unset;
|
|
1231
|
+
.name {
|
|
1232
|
+
white-space: nowrap;
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1077
1238
|
}
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1239
|
+
|
|
1240
|
+
&__wrapper {
|
|
1241
|
+
width: 100%;
|
|
1081
1242
|
display: flex;
|
|
1082
1243
|
align-items: center;
|
|
1083
|
-
cursor: pointer;
|
|
1084
|
-
@include media('<tablet') {
|
|
1085
|
-
margin: 0 0 20px;
|
|
1086
|
-
}
|
|
1087
1244
|
}
|
|
1088
|
-
|
|
1245
|
+
|
|
1246
|
+
&__item {
|
|
1089
1247
|
width: 100%;
|
|
1248
|
+
max-width: 50%;
|
|
1249
|
+
display: flex;
|
|
1250
|
+
align-items: center;
|
|
1251
|
+
justify-content: center;
|
|
1252
|
+
position: relative;
|
|
1253
|
+
padding: 10px;
|
|
1090
1254
|
cursor: pointer;
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1255
|
+
&:before {
|
|
1256
|
+
content: '';
|
|
1257
|
+
display: block;
|
|
1258
|
+
position: absolute;
|
|
1259
|
+
bottom: -5px;
|
|
1260
|
+
left: 50%;
|
|
1261
|
+
transform: translateX(-50%);
|
|
1262
|
+
width: calc(100% - 5px);
|
|
1263
|
+
height: 3px;
|
|
1264
|
+
background-color: $wac-round-breadcrumbs;
|
|
1265
|
+
}
|
|
1266
|
+
&.current, &.valid {
|
|
1094
1267
|
&:before {
|
|
1095
|
-
|
|
1268
|
+
background-color: $wac-wizishop-blue;
|
|
1269
|
+
}
|
|
1270
|
+
&:hover, &:focus {
|
|
1271
|
+
.round {
|
|
1272
|
+
background-color: $wac-wizishop-blue;
|
|
1273
|
+
border-color: $wac-wizishop-blue;
|
|
1274
|
+
> span, > i {
|
|
1275
|
+
color: $wac-white;
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
.name {
|
|
1279
|
+
color: $wac-wizishop-blue;
|
|
1280
|
+
}
|
|
1096
1281
|
}
|
|
1097
1282
|
}
|
|
1098
|
-
}
|
|
1099
|
-
}
|
|
1100
1283
|
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
height: 22px;
|
|
1104
|
-
input {
|
|
1105
|
-
outline: 0 !important;
|
|
1106
|
-
display: none;
|
|
1107
|
-
& + label {
|
|
1108
|
-
margin: 0 30px 0 0;
|
|
1109
|
-
position: relative;
|
|
1110
|
-
cursor: pointer;
|
|
1111
|
-
display: block;
|
|
1112
|
-
width: 22px;
|
|
1113
|
-
height: 22px;
|
|
1114
|
-
padding: 0!important;
|
|
1284
|
+
|
|
1285
|
+
&.current {
|
|
1115
1286
|
&:before {
|
|
1116
|
-
|
|
1117
|
-
display: block;
|
|
1118
|
-
position: absolute;
|
|
1119
|
-
width: 22px;
|
|
1120
|
-
height: 22px;
|
|
1121
|
-
border: 1px solid $wac-border-form;
|
|
1122
|
-
border-radius: 23px;
|
|
1123
|
-
top: 0;
|
|
1124
|
-
left: 0;
|
|
1125
|
-
}
|
|
1126
|
-
&:after {
|
|
1127
|
-
content: "";
|
|
1128
|
-
display: block;
|
|
1129
|
-
position: absolute;
|
|
1130
|
-
width: 16px;
|
|
1131
|
-
height: 16px;
|
|
1132
|
-
border-radius: 23px;
|
|
1133
|
-
background: $wac-input-active-color;
|
|
1134
|
-
top: 50%;
|
|
1135
|
-
left: 50%;
|
|
1136
|
-
transform: translate(-50%, -50%);
|
|
1137
|
-
opacity: 0;
|
|
1138
|
-
}
|
|
1139
|
-
&:before,
|
|
1140
|
-
&:after {
|
|
1141
|
-
outline: 0 !important;
|
|
1142
|
-
}
|
|
1143
|
-
&:hover,
|
|
1144
|
-
&:focus {
|
|
1145
|
-
&:before {
|
|
1146
|
-
border-color: $wac-input-active-color !important;
|
|
1147
|
-
}
|
|
1287
|
+
height: 5px;
|
|
1148
1288
|
}
|
|
1149
1289
|
}
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1290
|
+
.round {
|
|
1291
|
+
min-width: 30px;
|
|
1292
|
+
height: 30px;
|
|
1293
|
+
border-radius: 30px;
|
|
1294
|
+
display: flex;
|
|
1295
|
+
justify-content: center;
|
|
1296
|
+
align-items: center;
|
|
1297
|
+
border: 2px solid $wac-round-breadcrumbs;
|
|
1298
|
+
background-color: $wac-round-breadcrumbs;
|
|
1299
|
+
transition: .3s ease;
|
|
1300
|
+
margin: 0 15px 0 0;
|
|
1301
|
+
> span {
|
|
1302
|
+
font-size: rem(12);
|
|
1303
|
+
font-weight: 500;
|
|
1304
|
+
color: $wac-second-color;
|
|
1305
|
+
line-height: 1;
|
|
1156
1306
|
}
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1307
|
+
> i {
|
|
1308
|
+
font-size: rem(14);
|
|
1309
|
+
color: $wac-wizishop-blue;
|
|
1310
|
+
}
|
|
1311
|
+
&.valid {
|
|
1312
|
+
background-color: transparent;
|
|
1313
|
+
border-color: $wac-wizishop-blue;
|
|
1314
|
+
color: $wac-wizishop-blue;
|
|
1315
|
+
}
|
|
1316
|
+
&.current:not(.valid) {
|
|
1317
|
+
background-color: $wac-wizishop-blue;
|
|
1318
|
+
border-color: $wac-wizishop-blue;
|
|
1319
|
+
> span, > i {
|
|
1320
|
+
color: $wac-white;
|
|
1162
1321
|
}
|
|
1163
1322
|
}
|
|
1164
1323
|
}
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1324
|
+
.name {
|
|
1325
|
+
font-size: rem(14);
|
|
1326
|
+
font-weight: 500;
|
|
1327
|
+
color: $wac-second-color;
|
|
1328
|
+
line-height: 1;
|
|
1329
|
+
transition: .3s ease;
|
|
1330
|
+
&.valid, &.current {
|
|
1331
|
+
color: $wac-wizishop-blue;
|
|
1172
1332
|
}
|
|
1173
1333
|
}
|
|
1174
1334
|
}
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
.wac-radio__row {
|
|
1178
|
-
min-width: 100%;
|
|
1179
|
-
margin: 0;
|
|
1180
|
-
height: 22px;
|
|
1181
|
-
}
|
|
1182
|
-
|
|
1183
|
-
label {
|
|
1184
|
-
padding-left: 7px;
|
|
1185
|
-
margin-right: 0;
|
|
1186
|
-
}
|
|
1187
1335
|
}
|
|
1188
1336
|
.wac-settings {
|
|
1189
1337
|
width: 40px;
|
|
@@ -2040,7 +2188,7 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2040
2188
|
width: 100%;
|
|
2041
2189
|
max-width: calc(100% - 150px);
|
|
2042
2190
|
&__count {
|
|
2043
|
-
margin:
|
|
2191
|
+
margin: 0;
|
|
2044
2192
|
width: 100%;
|
|
2045
2193
|
display: flex;
|
|
2046
2194
|
align-items: flex-end;
|
|
@@ -2066,7 +2214,7 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
2066
2214
|
align-items: center;
|
|
2067
2215
|
width: auto;
|
|
2068
2216
|
> div {
|
|
2069
|
-
margin: 0 0 0
|
|
2217
|
+
margin: 0 0 0 10px;
|
|
2070
2218
|
}
|
|
2071
2219
|
}
|
|
2072
2220
|
}
|
|
@@ -3112,9 +3260,12 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
3112
3260
|
}
|
|
3113
3261
|
|
|
3114
3262
|
textarea {
|
|
3115
|
-
&.is-danger {
|
|
3263
|
+
&.is-danger:not(.is-empty) {
|
|
3116
3264
|
border-color: $wac-primary-button !important;
|
|
3117
3265
|
}
|
|
3266
|
+
&[disabled] {
|
|
3267
|
+
background-color: $wac-tag-default !important;
|
|
3268
|
+
}
|
|
3118
3269
|
}
|
|
3119
3270
|
textarea:focus {
|
|
3120
3271
|
border-color: $wizishop-blue !important;
|
|
@@ -3148,6 +3299,9 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
3148
3299
|
max-height: rem(80);
|
|
3149
3300
|
min-height: rem(80);
|
|
3150
3301
|
|
|
3302
|
+
&[disabled] {
|
|
3303
|
+
background-color: $wac-tag-default !important;
|
|
3304
|
+
}
|
|
3151
3305
|
&::placeholder {
|
|
3152
3306
|
color: $wac-placeholder;
|
|
3153
3307
|
font-weight: 400;
|
|
@@ -3308,9 +3462,12 @@ $wac-subtitle-color: #7A87A1!default;
|
|
|
3308
3462
|
font-size: 14px;
|
|
3309
3463
|
line-height: 16px;
|
|
3310
3464
|
font-weight: 400;
|
|
3311
|
-
> span:nth-child(2)
|
|
3465
|
+
> span:nth-child(2){
|
|
3312
3466
|
font-weight: 600;
|
|
3313
3467
|
}
|
|
3468
|
+
> strong {
|
|
3469
|
+
font-weight: 400;
|
|
3470
|
+
}
|
|
3314
3471
|
> span {
|
|
3315
3472
|
&.warning {
|
|
3316
3473
|
color: $wac-primary-button;
|
|
@@ -3792,227 +3949,73 @@ span.wac-tooltip {
|
|
|
3792
3949
|
border-radius: 3px;
|
|
3793
3950
|
}
|
|
3794
3951
|
}
|
|
3795
|
-
.wac-alert
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
margin: 10px auto;
|
|
3807
|
-
max-width: 550px;
|
|
3808
|
-
width: auto;
|
|
3809
|
-
box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
|
|
3810
|
-
font-size: 14px;
|
|
3811
|
-
|
|
3812
|
-
&.with-icon {
|
|
3813
|
-
.alert--message {
|
|
3814
|
-
display: flex;
|
|
3815
|
-
align-items: center;
|
|
3816
|
-
justify-content: center;
|
|
3817
|
-
width: 100%;
|
|
3818
|
-
}
|
|
3819
|
-
}
|
|
3820
|
-
|
|
3821
|
-
.icon + .wac-alert-popup__close + .wac-alert-popup__text {
|
|
3822
|
-
width: auto;
|
|
3823
|
-
}
|
|
3824
|
-
|
|
3825
|
-
&.fullsize {
|
|
3826
|
-
max-width: 100%;
|
|
3827
|
-
width: 100%;
|
|
3828
|
-
border-radius: 0;
|
|
3829
|
-
margin: 0;
|
|
3830
|
-
padding: 20px 40px 20px 20px;
|
|
3831
|
-
}
|
|
3832
|
-
|
|
3833
|
-
&.is-left {
|
|
3834
|
-
left: -100px;
|
|
3835
|
-
margin: 10px;
|
|
3836
|
-
top: 100px;
|
|
3837
|
-
}
|
|
3838
|
-
|
|
3839
|
-
&.is-right {
|
|
3840
|
-
right: -100px;
|
|
3841
|
-
margin: 10px;
|
|
3842
|
-
top: 100px;
|
|
3843
|
-
}
|
|
3844
|
-
|
|
3845
|
-
&.is-top {
|
|
3846
|
-
top: -100px;
|
|
3847
|
-
left: 0;
|
|
3848
|
-
right: 0;
|
|
3849
|
-
}
|
|
3850
|
-
|
|
3851
|
-
&.is-bottom {
|
|
3852
|
-
bottom: -100px;
|
|
3853
|
-
left: 0;
|
|
3854
|
-
right: 0;
|
|
3855
|
-
}
|
|
3856
|
-
|
|
3857
|
-
&.is-active {
|
|
3858
|
-
opacity: 1;
|
|
3859
|
-
&.opacity-active {
|
|
3860
|
-
opacity: .85;
|
|
3861
|
-
}
|
|
3862
|
-
&.is-left {
|
|
3863
|
-
left: 0;
|
|
3864
|
-
}
|
|
3865
|
-
|
|
3866
|
-
&.is-right {
|
|
3867
|
-
right: 0;
|
|
3868
|
-
}
|
|
3869
|
-
|
|
3870
|
-
&.is-top {
|
|
3871
|
-
top: 0;
|
|
3872
|
-
&.small {
|
|
3873
|
-
top: 30px;
|
|
3874
|
-
}
|
|
3875
|
-
}
|
|
3876
|
-
|
|
3877
|
-
&.is-bottom {
|
|
3878
|
-
bottom: 0;
|
|
3879
|
-
&.small {
|
|
3880
|
-
bottom: -70px;
|
|
3881
|
-
}
|
|
3882
|
-
}
|
|
3883
|
-
}
|
|
3884
|
-
|
|
3952
|
+
.wac-alert {
|
|
3953
|
+
width: 100%;
|
|
3954
|
+
background-color: transparentize($wac-link-color, 0.85);
|
|
3955
|
+
color: $wac-link-color;
|
|
3956
|
+
border-radius: 3px;
|
|
3957
|
+
display: flex;
|
|
3958
|
+
flex-wrap: nowrap;
|
|
3959
|
+
justify-content: space-between;
|
|
3960
|
+
padding: 20px;
|
|
3961
|
+
&.success {
|
|
3962
|
+
background-color: transparentize($wac-green-color, 0.85);
|
|
3885
3963
|
p {
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
span {
|
|
3890
|
-
vertical-align: middle;
|
|
3891
|
-
margin: 0 10px 0 0;
|
|
3892
|
-
}
|
|
3893
|
-
&.is-primary {
|
|
3894
|
-
background-color: $wac-primary-button;
|
|
3895
|
-
|
|
3896
|
-
&.is-inverted {
|
|
3897
|
-
background-color: $wac-white;
|
|
3898
|
-
border: 1px solid $wac-primary-button;
|
|
3899
|
-
color: $wac-primary-button;
|
|
3900
|
-
}
|
|
3901
|
-
}
|
|
3902
|
-
|
|
3903
|
-
&.is-success {
|
|
3904
|
-
background-color: $wac-color-success-popup-alert;
|
|
3905
|
-
|
|
3906
|
-
&.is-inverted {
|
|
3907
|
-
background-color: $wac-white;
|
|
3908
|
-
border: 1px solid $wac-color-success-popup-alert;
|
|
3909
|
-
color: $wac-color-success-popup-alert;
|
|
3910
|
-
}
|
|
3911
|
-
}
|
|
3912
|
-
|
|
3913
|
-
&.is-danger {
|
|
3914
|
-
background-color: $wac-primary-button;
|
|
3915
|
-
|
|
3916
|
-
&.is-inverted {
|
|
3917
|
-
background-color: $wac-white;
|
|
3918
|
-
border: 1px solid $wac-primary-button;
|
|
3919
|
-
color: $wac-primary-button;
|
|
3964
|
+
color: $wac-p-alert-color-success;
|
|
3965
|
+
> * {
|
|
3966
|
+
color: $wac-p-alert-color-success;
|
|
3920
3967
|
}
|
|
3921
3968
|
}
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
background-color: $wac-white;
|
|
3925
|
-
border: 1px solid $wac-main-text;
|
|
3926
|
-
color: $wac-main-text;
|
|
3927
|
-
}
|
|
3928
|
-
|
|
3929
|
-
&.small {
|
|
3930
|
-
padding: 10px;
|
|
3931
|
-
border-radius: 3px;
|
|
3932
|
-
right: 30px;
|
|
3933
|
-
top: auto;
|
|
3934
|
-
left: auto;
|
|
3935
|
-
width: auto;
|
|
3936
|
-
min-width: unset;
|
|
3937
|
-
margin: 0 0 100px;
|
|
3938
|
-
background-color: $wac-tag-success;
|
|
3939
|
-
font-size: rem(14);
|
|
3940
|
-
&.is-danger {
|
|
3941
|
-
background-color: $wac-primary-button;
|
|
3942
|
-
}
|
|
3943
|
-
.alert--message {
|
|
3944
|
-
display: flex;
|
|
3945
|
-
align-items: center;
|
|
3946
|
-
justify-content: flex-start;
|
|
3947
|
-
}
|
|
3948
|
-
.wac-alert-popup {
|
|
3949
|
-
&__text {
|
|
3950
|
-
font-size: rem(14);
|
|
3951
|
-
white-space: nowrap;
|
|
3952
|
-
font-weight: 600;
|
|
3953
|
-
}
|
|
3954
|
-
&__close {
|
|
3955
|
-
display: none;
|
|
3956
|
-
}
|
|
3957
|
-
}
|
|
3969
|
+
i {
|
|
3970
|
+
color: $wac-green-color;
|
|
3958
3971
|
}
|
|
3959
3972
|
}
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
width: 100%;
|
|
3968
|
-
}
|
|
3969
|
-
|
|
3970
|
-
&__text {
|
|
3971
|
-
font-size: rem(16);
|
|
3972
|
-
font-weight: 500;
|
|
3973
|
-
text-align: center;
|
|
3974
|
-
width: 100%;
|
|
3975
|
-
margin: 0;
|
|
3976
|
-
}
|
|
3977
|
-
|
|
3978
|
-
&__close {
|
|
3979
|
-
cursor: pointer;
|
|
3980
|
-
display: flex;
|
|
3981
|
-
position: absolute;
|
|
3982
|
-
top: 10px;
|
|
3983
|
-
right: 10px;
|
|
3984
|
-
width: rem(40);
|
|
3985
|
-
height: rem(40);
|
|
3986
|
-
border-radius: 50%;
|
|
3987
|
-
justify-content: center;
|
|
3988
|
-
align-items: center;
|
|
3989
|
-
background-color: darken($wac-primary-button, 10%);
|
|
3990
|
-
transition: .3s ease;
|
|
3991
|
-
&:hover, &:focus {
|
|
3992
|
-
background-color: darken($wac-primary-button, 15%);
|
|
3973
|
+
&.warning {
|
|
3974
|
+
background-color: transparentize($wac-primary-button, 0.85);
|
|
3975
|
+
p {
|
|
3976
|
+
color: $wac-p-alert-color-warning;
|
|
3977
|
+
> * {
|
|
3978
|
+
color: $wac-p-alert-color-warning;
|
|
3979
|
+
}
|
|
3993
3980
|
}
|
|
3994
3981
|
i {
|
|
3995
|
-
|
|
3996
|
-
color: $white;
|
|
3982
|
+
color: $wac-primary-button;
|
|
3997
3983
|
}
|
|
3998
|
-
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
3984
|
+
}
|
|
3985
|
+
&.alert {
|
|
3986
|
+
background-color: transparentize($wac-orange-color, 0.85);
|
|
3987
|
+
p {
|
|
3988
|
+
color: $wac-p-alert-color-alert;
|
|
3989
|
+
> * {
|
|
3990
|
+
color: $wac-p-alert-color-alert;
|
|
4002
3991
|
}
|
|
4003
3992
|
}
|
|
4004
|
-
|
|
4005
|
-
|
|
4006
|
-
&:hover, &:focus {
|
|
4007
|
-
background-color: darken($wac-primary-button, 15%);
|
|
4008
|
-
}
|
|
3993
|
+
i {
|
|
3994
|
+
color: $wac-orange-color;
|
|
4009
3995
|
}
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
3996
|
+
}
|
|
3997
|
+
p {
|
|
3998
|
+
width: 100%;
|
|
3999
|
+
font-size: rem(14);
|
|
4000
|
+
line-height: rem(25);
|
|
4001
|
+
margin: 0;
|
|
4002
|
+
padding: 0;
|
|
4003
|
+
color: $wac-p-alert-color-default;
|
|
4004
|
+
> * {
|
|
4005
|
+
color: $wac-p-alert-color-default;
|
|
4013
4006
|
}
|
|
4014
4007
|
}
|
|
4008
|
+
i {
|
|
4009
|
+
width: auto;
|
|
4010
|
+
margin: 0 10px 0 0;
|
|
4011
|
+
color: inherit;
|
|
4012
|
+
font-size: rem(14);
|
|
4013
|
+
line-height: rem(25);
|
|
4014
|
+
}
|
|
4015
4015
|
|
|
4016
|
+
.wac-button i {
|
|
4017
|
+
color: $wac-white;
|
|
4018
|
+
}
|
|
4016
4019
|
}
|
|
4017
4020
|
.wac-upload {
|
|
4018
4021
|
width: auto;
|
|
@@ -7008,7 +7011,7 @@ div.wac-field-input-search {
|
|
|
7008
7011
|
&.remove-margin {
|
|
7009
7012
|
margin-bottom: 0;
|
|
7010
7013
|
}
|
|
7011
|
-
&.is-danger {
|
|
7014
|
+
&.is-danger:not(.is-empty) {
|
|
7012
7015
|
border-color: $wac-primary-button !important;
|
|
7013
7016
|
}
|
|
7014
7017
|
}
|
|
@@ -7429,134 +7432,140 @@ div.wac-field-input-search {
|
|
|
7429
7432
|
}
|
|
7430
7433
|
}
|
|
7431
7434
|
}
|
|
7432
|
-
.
|
|
7435
|
+
.block-with-checkbox {
|
|
7433
7436
|
width: 100%;
|
|
7434
7437
|
display: flex;
|
|
7435
7438
|
align-items: center;
|
|
7436
|
-
|
|
7437
|
-
|
|
7439
|
+
background-color: $wac-white;
|
|
7440
|
+
box-shadow: 0px 2px 6px #0000000D;
|
|
7438
7441
|
border-radius: 3px;
|
|
7439
|
-
|
|
7440
|
-
|
|
7441
|
-
|
|
7442
|
-
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
7447
|
-
width: auto;
|
|
7448
|
-
overflow-x: scroll;
|
|
7449
|
-
}
|
|
7450
|
-
}
|
|
7451
|
-
&__item {
|
|
7452
|
-
@include media('<tablet') {
|
|
7453
|
-
width: auto;
|
|
7454
|
-
min-width: unset;
|
|
7455
|
-
max-width: unset;
|
|
7456
|
-
.name {
|
|
7457
|
-
white-space: nowrap;
|
|
7458
|
-
}
|
|
7459
|
-
}
|
|
7460
|
-
}
|
|
7461
|
-
}
|
|
7462
|
-
}
|
|
7442
|
+
margin: 0 0 15px;
|
|
7443
|
+
padding: 30px;
|
|
7444
|
+
border: 2px solid transparent;
|
|
7445
|
+
transition: .3s ease;
|
|
7446
|
+
opacity: .45;
|
|
7447
|
+
&.selected, &:not(.disabled):hover, &:not(.disabled):focus {
|
|
7448
|
+
border-color: $wac-input-active-color;
|
|
7449
|
+
opacity: 1!important;
|
|
7463
7450
|
}
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7451
|
+
&.firstWacRadioBLock:not(.disabled) {
|
|
7452
|
+
opacity: 1!important;
|
|
7453
|
+
}
|
|
7454
|
+
@include media('<tablet') {
|
|
7455
|
+
padding: 20px;
|
|
7456
|
+
flex-direction: column;
|
|
7468
7457
|
align-items: center;
|
|
7458
|
+
justify-content: flex-start;
|
|
7469
7459
|
}
|
|
7470
|
-
|
|
7471
|
-
|
|
7472
|
-
|
|
7473
|
-
max-width: 50%;
|
|
7460
|
+
&__left {
|
|
7461
|
+
width: 30px;
|
|
7462
|
+
margin: 0 20px 0 0;
|
|
7474
7463
|
display: flex;
|
|
7475
7464
|
align-items: center;
|
|
7476
|
-
justify-content: center;
|
|
7477
|
-
position: relative;
|
|
7478
|
-
padding: 10px;
|
|
7479
7465
|
cursor: pointer;
|
|
7480
|
-
|
|
7481
|
-
|
|
7482
|
-
display: block;
|
|
7483
|
-
position: absolute;
|
|
7484
|
-
bottom: -5px;
|
|
7485
|
-
left: 50%;
|
|
7486
|
-
transform: translateX(-50%);
|
|
7487
|
-
width: calc(100% - 5px);
|
|
7488
|
-
height: 3px;
|
|
7489
|
-
background-color: $wac-round-breadcrumbs;
|
|
7466
|
+
@include media('<tablet') {
|
|
7467
|
+
margin: 0 0 20px;
|
|
7490
7468
|
}
|
|
7491
|
-
|
|
7469
|
+
}
|
|
7470
|
+
&__center {
|
|
7471
|
+
width: 100%;
|
|
7472
|
+
cursor: pointer;
|
|
7473
|
+
}
|
|
7474
|
+
&:hover:not(.disabled), &:focus:not(.disabled) {
|
|
7475
|
+
input + label {
|
|
7492
7476
|
&:before {
|
|
7493
|
-
|
|
7494
|
-
}
|
|
7495
|
-
&:hover, &:focus {
|
|
7496
|
-
.round {
|
|
7497
|
-
background-color: $wac-wizishop-blue;
|
|
7498
|
-
border-color: $wac-wizishop-blue;
|
|
7499
|
-
> span, > i {
|
|
7500
|
-
color: $wac-white;
|
|
7501
|
-
}
|
|
7502
|
-
}
|
|
7503
|
-
.name {
|
|
7504
|
-
color: $wac-wizishop-blue;
|
|
7505
|
-
}
|
|
7477
|
+
border-color: $wac-input-active-color !important;
|
|
7506
7478
|
}
|
|
7507
7479
|
}
|
|
7480
|
+
}
|
|
7481
|
+
}
|
|
7508
7482
|
|
|
7509
|
-
|
|
7510
|
-
|
|
7483
|
+
.wac-radio-block {
|
|
7484
|
+
width: 22px!important;
|
|
7485
|
+
height: 22px;
|
|
7486
|
+
input {
|
|
7487
|
+
outline: 0 !important;
|
|
7488
|
+
display: none;
|
|
7489
|
+
& + label {
|
|
7490
|
+
margin: 0 30px 0 0;
|
|
7491
|
+
position: relative;
|
|
7492
|
+
cursor: pointer;
|
|
7493
|
+
display: block;
|
|
7494
|
+
width: 22px;
|
|
7495
|
+
height: 22px;
|
|
7496
|
+
padding: 0!important;
|
|
7511
7497
|
&:before {
|
|
7512
|
-
|
|
7498
|
+
content: '';
|
|
7499
|
+
display: block;
|
|
7500
|
+
position: absolute;
|
|
7501
|
+
width: 22px;
|
|
7502
|
+
height: 22px;
|
|
7503
|
+
border: 1px solid $wac-border-form;
|
|
7504
|
+
border-radius: 23px;
|
|
7505
|
+
top: 0;
|
|
7506
|
+
left: 0;
|
|
7513
7507
|
}
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
> span {
|
|
7527
|
-
font-size: rem(12);
|
|
7528
|
-
font-weight: 500;
|
|
7529
|
-
color: $wac-second-color;
|
|
7530
|
-
line-height: 1;
|
|
7508
|
+
&:after {
|
|
7509
|
+
content: "";
|
|
7510
|
+
display: block;
|
|
7511
|
+
position: absolute;
|
|
7512
|
+
width: 16px;
|
|
7513
|
+
height: 16px;
|
|
7514
|
+
border-radius: 23px;
|
|
7515
|
+
background: $wac-input-active-color;
|
|
7516
|
+
top: 50%;
|
|
7517
|
+
left: 50%;
|
|
7518
|
+
transform: translate(-50%, -50%);
|
|
7519
|
+
opacity: 0;
|
|
7531
7520
|
}
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
|
|
7521
|
+
&:before,
|
|
7522
|
+
&:after {
|
|
7523
|
+
outline: 0 !important;
|
|
7535
7524
|
}
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7525
|
+
&:hover,
|
|
7526
|
+
&:focus {
|
|
7527
|
+
&:before {
|
|
7528
|
+
border-color: $wac-input-active-color !important;
|
|
7529
|
+
}
|
|
7540
7530
|
}
|
|
7541
|
-
|
|
7542
|
-
|
|
7543
|
-
|
|
7544
|
-
|
|
7545
|
-
|
|
7531
|
+
}
|
|
7532
|
+
&:hover {
|
|
7533
|
+
& + label {
|
|
7534
|
+
color: $wac-input-radio-color-active-label;
|
|
7535
|
+
&:before {
|
|
7536
|
+
border-color: $wac-input-active-color !important;
|
|
7537
|
+
}
|
|
7538
|
+
}
|
|
7539
|
+
&:not([disabled]) {
|
|
7540
|
+
& + label {
|
|
7541
|
+
&:before {
|
|
7542
|
+
border-color: $wac-input-active-color !important;
|
|
7543
|
+
}
|
|
7546
7544
|
}
|
|
7547
7545
|
}
|
|
7548
7546
|
}
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7554
|
-
|
|
7555
|
-
|
|
7556
|
-
color: $wac-wizishop-blue;
|
|
7547
|
+
&:checked + label {
|
|
7548
|
+
color: $wac-input-radio-color-active-label;
|
|
7549
|
+
&:before {
|
|
7550
|
+
border-color: $wac-input-active-color!important;
|
|
7551
|
+
}
|
|
7552
|
+
&:after {
|
|
7553
|
+
opacity: 1;
|
|
7557
7554
|
}
|
|
7558
7555
|
}
|
|
7559
7556
|
}
|
|
7557
|
+
|
|
7558
|
+
|
|
7559
|
+
.wac-radio__row {
|
|
7560
|
+
min-width: 100%;
|
|
7561
|
+
margin: 0;
|
|
7562
|
+
height: 22px;
|
|
7563
|
+
}
|
|
7564
|
+
|
|
7565
|
+
label {
|
|
7566
|
+
padding-left: 7px;
|
|
7567
|
+
margin-right: 0;
|
|
7568
|
+
}
|
|
7560
7569
|
}
|
|
7561
7570
|
.wac-pagination {
|
|
7562
7571
|
width: 100%;
|