@wizishop/img-manager 0.2.69 → 0.2.70

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.
@@ -954,822 +954,1050 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
954
954
  }
955
955
 
956
956
 
957
- .wz-img-manager {
958
-
959
- &__selectionHandler {
960
- margin-top: -50px;
957
+ .img-upload {
958
+ position: relative;
959
+ background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='3' ry='3' stroke='%2352AECD' stroke-width='2' stroke-dasharray='4%2c 8' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
960
+ border-radius: 3px;
961
+ &:before {
962
+ content: '';
963
+ display: block;
964
+ padding-top: 110.82%;
961
965
  }
962
-
963
- &__module {
964
- position: fixed;
965
- bottom: 0;
966
+ &--small {
967
+ &:before {
968
+ padding-top: 202px;
969
+ }
970
+ .img-upload {
971
+ &__container {
972
+ .blueColor {
973
+ img {
974
+ min-width: rem(30);
975
+ }
976
+ }
977
+ &__or {
978
+ margin: rem(10) 0;
979
+ }
980
+ &__text {
981
+ padding: rem(8) rem(20);
982
+ }
983
+ }
984
+ }
985
+ }
986
+ &__container {
987
+ position: absolute;
988
+ top: 0;
966
989
  left: 0;
967
990
  width: 100%;
968
- height: 0;
969
- transition: height .3s ease;
970
- z-index: 2147483647; // snackbar 10
971
- transform: translateZ(0);
972
-
973
- &:before {
974
- content: '';
975
- display: block;
991
+ height: 100%;
992
+ display: flex;
993
+ flex-wrap: wrap;
994
+ flex-direction: column;
995
+ justify-content: center;
996
+ align-items: center;
997
+ &__loader {
976
998
  position: absolute;
977
- top: 0;
978
- left: 0;
979
- width: 100%;
980
- height: 3px;
981
- background-color: $img-main-color;
982
- z-index: 999;
983
- }
984
-
985
- &--closed {
986
- height: 0;
999
+ top: 50%;
1000
+ left: 50%;
1001
+ transform: translate(-50%,-50%);
1002
+ max-width: 300px;
1003
+ max-height: 300px;
1004
+ display: flex;
1005
+ flex-wrap: wrap;
1006
+ flex-direction: column;
1007
+ justify-content: center;
1008
+ align-items: center;
987
1009
  }
988
-
989
- // .wz-img-manager__module--small
990
- &--small {
991
- height: 320px;
1010
+ .blueColor {
1011
+ img {
1012
+ min-width: rem(65);
1013
+ display: block;
1014
+ max-width: rem(65);
1015
+ margin: 0 auto rem(15);
1016
+ transform: translate(10px);
1017
+ }
1018
+ p {
1019
+ color: $border-upload-color;
1020
+ font-size: rem(16);
1021
+ line-height: rem(19);
1022
+ font-weight: 500;
1023
+ margin: 0 auto rem(20);
1024
+ }
992
1025
  }
993
-
994
- // .wz-img-manager__module--full
995
- &--full {
996
- height: calc(100vh - 50px);
1026
+ &__or {
1027
+ font-size: rem(14);
1028
+ line-height: rem(16);
1029
+ margin: 0 0 rem(20) !important;
997
1030
  }
998
-
999
- // .wz-img-manager__module--window
1000
- &--window {
1001
- position: relative;
1031
+ &__text {
1032
+ display: flex;
1033
+ align-items: center;
1034
+ justify-content: center;
1002
1035
  width: auto;
1003
- bottom: unset;
1004
- left: unset;
1005
- z-index: 29!important;
1006
- height: auto!important;
1007
- padding-bottom: 6.25rem;
1008
-
1009
- &:before {
1010
- content: none;
1011
- height: 0px;
1036
+ border-radius: 3px;
1037
+ padding: rem(12) rem(20);
1038
+ color: $white;
1039
+ font-size: rem(14);
1040
+ line-height: rem(16);
1041
+ white-space: nowrap;
1042
+ background-color: $img-green-color;
1043
+ transition: .3s ease;
1044
+ font-weight: 500;
1045
+ cursor: pointer;
1046
+ i {
1047
+ margin: 0 rem(6) 0 0;
1048
+ font-weight: 500;
1012
1049
  }
1013
-
1014
- // .wz-img-manager__module--edit
1015
- &--edit {
1016
- .wrapper-tabs {
1017
- display: none;
1018
- }
1050
+ &:hover, &:focus {
1051
+ background-color: darken($img-green-color, 15%);
1019
1052
  }
1020
1053
  }
1054
+ }
1055
+ }
1056
+ .mosaic {
1057
+ width: 100%;
1058
+ display: flex;
1059
+ flex-wrap: wrap;
1060
+ position: relative;
1061
+ min-height: rem(512);
1021
1062
 
1022
- // .wz-img-manager__module__header
1023
- &__header {
1024
- position: absolute;
1025
- bottom: 100%;
1026
- right: 30px;
1027
- width: 101px;
1028
-
1029
- // .wz-img-manager__module__header button
1030
- button {
1031
- width: 45px;
1032
- height: 35px;
1033
- background-color: $img-main-color;
1034
- transition: background-color .3s ease;
1035
- border: none;
1036
- box-shadow: none;
1037
- cursor: pointer;
1038
- outline: none!important;
1063
+ &--displayPexelsImg {
1064
+ min-height: unset;
1065
+ }
1039
1066
 
1040
- span {
1041
- display: none;
1067
+ &:not(.fullSize) {
1068
+ width: calc(100% + 24px);
1069
+ transform: translateX(-12px);
1070
+ .mosaic__container__cards {
1071
+ padding-bottom: 40px;
1072
+ > * {
1073
+ width: calc(25% - 24px);
1074
+ margin: 0 12px rem(24) 12px;
1075
+ @include media('>=desktop','<1300px') {
1076
+ width: calc(33.33% - 24px);
1077
+ margin: 0 12px rem(24) 12px;
1042
1078
  }
1043
-
1044
- i {
1045
- color: #fff;
1046
- font-size: 20px;
1047
- &:before {
1048
- font-size: rem(20) !important;
1079
+ }
1080
+ }
1081
+ &.small {
1082
+ min-height: 0;
1083
+ .mosaic__container__loader {
1084
+ top: 0;
1085
+ transform: translateX(-50%);
1086
+ max-height: 200px;
1087
+ }
1088
+ .mosaic {
1089
+ &__container {
1090
+ &__cards {
1091
+ padding-bottom: 40px;
1092
+ > * {
1093
+ width: calc(12.5% - 24px);
1094
+ margin: 0 12px rem(24) 12px;
1095
+ @include media('>=1400px','<1600px') {
1096
+ width: calc(14% - 24px);
1097
+ margin: 0 12px rem(24) 12px;
1098
+ }
1099
+ @include media('>=1200px','<1400px') {
1100
+ width: calc(16.66% - 24px);
1101
+ margin: 0 12px rem(24) 12px;
1102
+ }
1103
+ @include media('>=desktop','<1200px') {
1104
+ width: calc(20% - 24px);
1105
+ margin: 0 12px rem(24) 12px;
1106
+ }
1107
+ }
1049
1108
  }
1050
1109
  }
1051
-
1052
- &:hover, &:focus {
1053
- background-color: darken($img-main-color, 15%);
1054
- }
1055
-
1056
- // .wz-img-manager__module__header button:first-child
1057
- &:first-child {
1058
- border-radius: 3px 0 0 0;
1059
- }
1060
-
1061
- // .wz-img-manager__module__header button:last-child
1062
- &:last-child {
1063
- margin: 0 0 0 1px;
1064
- border-radius: 0 3px 0 0;
1065
- }
1066
1110
  }
1067
1111
  }
1068
1112
  }
1069
- }
1070
-
1071
- .wz-img-manager__module .wz-block {
1072
- background-color: #fff;
1073
- box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
1074
- padding: 0 0.575rem 0 1.075rem;
1075
-
1076
- &--window {
1077
- padding: rem(30);
1078
- overflow: hidden;
1079
- max-width: 1450px;
1080
- margin: 0 auto;
1113
+ &.fullSize {
1114
+ width: calc(100% + 24px);
1115
+ transform: translateX(-12px);
1116
+ @include media('<420px') {
1117
+ width: 100%;
1118
+ transform: none;
1081
1119
  }
1082
- }
1083
-
1084
- .wz-img-manager__module .wz-block:hover {
1085
- box-shadow: 0 0.125rem 0.3125rem rgba(45, 62, 85, 0.2);
1086
- }
1087
-
1088
- .nwb-snack-bar .notification {
1089
- z-index: 10002!important;
1090
- }
1091
-
1092
- .nwb-snack-bar .column {
1093
- box-sizing: border-box;
1094
- }
1095
- $green: $really-bad-bad-bad-green !default;
1096
- $primary: $primary-button !default;
1097
- $light: $img-placeholder !default;
1098
- $info: $wizishop-blue !default;
1099
- $danger: $img-red-color !default;
1100
- $dark: $img-dark !default;
1101
-
1102
- $button-padding-vertical: rem(7) !default;
1103
- $radius: rem(3) !default;
1104
-
1105
- $button-color: white!default;
1106
- $button-hover-color: white !default;
1107
- $button-focus-color: white !default;
1108
- $button-active-color: white !default;
1109
- $button-background-color: $primary !default;
1110
- $button-disabled-background-color: $primary !default;
1111
- $button-border-color: $primary-button-hover !default;
1112
- $button-hover-border-color: $primary-button-hover !default;
1113
- $button-active-border-color: $primary-button-hover !default;
1114
- $button-focus-border-color: $primary-button-hover !default;
1115
- $button-disabled-border-color: $primary-button-hover !default;
1116
-
1117
- $tag-radius: rem(20px)!default;
1118
- //.wz-img-manager useful to keep the css priority
1119
- .wz-img-manager .canva-btn {
1120
- background-color: $img-main-color;
1121
- border: 2px solid $img-main-color;
1122
- padding: 0;
1123
- height: fit-content;
1124
- color: white;
1125
- padding-left: rem(9);
1126
- transition: .3s ease;
1127
- margin: 0!important;
1128
- &:hover, &:focus {
1129
- border-color: darken($img-main-color, 15%);
1120
+ .mosaic__container__cards {
1121
+ > * {
1122
+ width: calc(16.66% - 24px);
1123
+ margin: 0 12px rem(24) 12px;
1124
+ @include media('>=1400px','<1600px') {
1125
+ width: calc(20% - 24px);
1126
+ margin: 0 12px rem(24) 12px;
1127
+ }
1128
+ @include media('>=desktop','<1400px') {
1129
+ width: calc(25% - 24px);
1130
+ margin: 0 12px rem(24) 12px;
1131
+ }
1132
+ @include media('>=tablet','<desktop') {
1133
+ width: calc(33.33% - 24px);
1134
+ margin: 0 12px rem(24) 12px;
1135
+ }
1136
+ @include media('>=400px','<tablet') {
1137
+ width: calc(50% - 24px);
1138
+ margin: 0 12px rem(24) 12px;
1139
+ }
1140
+ @include media('<420px') {
1141
+ width: 100%;
1142
+ margin: 0 0 15px;
1143
+ }
1144
+ }
1130
1145
  }
1131
- > span {
1132
- &:first-child {
1133
- z-index: 2;
1134
- position: relative;
1135
- transform: translateX(7px);
1146
+ &.small {
1147
+ .mosaic__container__loader {
1148
+ top: 0;
1149
+ transform: translateX(-50%);
1150
+ max-height: 200px;
1151
+ }
1152
+ .mosaic {
1153
+ &__search {
1154
+ display: none;
1155
+ }
1156
+ &__container {
1157
+ &__cards {
1158
+ > * {
1159
+ width: calc(10% - 24px);
1160
+ margin: 0 12px rem(24) 12px;
1161
+ @include media('>=1400px','<1600px') {
1162
+ width: calc(11.11% - 24px);
1163
+ margin: 0 12px rem(24) 12px;
1164
+ }
1165
+ @include media('>=desktop','<1400px') {
1166
+ width: calc(12.5% - 24px);
1167
+ margin: 0 12px rem(24) 12px;
1168
+ }
1169
+ @include media('>=tablet','<desktop') {
1170
+ width: calc(20% - 24px);
1171
+ margin: 0 12px rem(24) 12px;
1172
+ }
1173
+ @include media('>=500px','<tablet') {
1174
+ width: calc(33.33% - 24px);
1175
+ margin: 0 12px rem(24) 12px;
1176
+ }
1177
+ @include media('<500px') {
1178
+ width: calc(50% - 24px);
1179
+ margin: 0 12px rem(24) 12px;
1180
+ }
1181
+ }
1182
+ }
1183
+ }
1136
1184
  }
1137
1185
  }
1138
- &__logo {
1139
- z-index: 1;
1186
+ }
1187
+ &__search {
1188
+ width: calc(100% - 24px);
1189
+ margin: 0 auto rem(20);
1190
+ }
1191
+ &__pagination {
1192
+ width: 100%;
1193
+ }
1194
+ &__container {
1195
+ &__loader {
1196
+ position: absolute;
1197
+ top: 50%;
1198
+ left: 50%;
1199
+ transform: translate(-50%,-50%);
1200
+ max-width: 300px;
1201
+ max-height: 300px;
1202
+ display: flex;
1203
+ flex-wrap: wrap;
1204
+ flex-direction: column;
1205
+ justify-content: center;
1206
+ align-items: center;
1140
1207
  }
1141
- }
1142
-
1143
- .wz-img-manager .canva-btn .btnLoadingAnnimation {
1144
- background-color: $img-main-color;
1145
- cursor: not-allowed;
1146
- }
1147
-
1148
- .wz-img-manager .canva.dropdown {
1149
- z-index: 9999;
1150
- .dropdown-menu {
1151
- display: none!important;
1152
- margin-top: 10px!important;
1153
- &:before {
1154
- content: '';
1155
- display: block;
1156
- position: absolute;
1157
- bottom: 100%;
1158
- left: 0;
1159
- width: 100%;
1160
- height: 10px;
1208
+ &__cards {
1209
+ width: 100%;
1210
+ display: flex;
1211
+ flex-wrap: wrap;
1212
+ &--padding {
1213
+ padding-right: 20px;
1161
1214
  }
1162
1215
  }
1216
+ }
1217
+ }
1218
+ $card-img-size: 100%;
1219
+ $card-img-size-small: 140px;
1163
1220
 
1164
- .displayDropDownMenu {
1165
- display: block!important;
1166
- }
1221
+ //.wz-img-manager useful to keep the css priority
1222
+ .wz-img-manager .addCssPriority .img-card {
1223
+ display: flex;
1224
+ flex-wrap: wrap;
1225
+ justify-content: center;
1226
+ padding: 0 0 rem(5);
1227
+ width: 100%;
1228
+ overflow: hidden;
1167
1229
 
1168
- .dropdown-menu.dropDownShadow {
1169
- padding-bottom: 0;
1170
- padding-top: 0;
1171
- margin-top: 1px;
1172
- }
1230
+ &__container {
1231
+ width: 100%!important;
1232
+ height: auto!important;
1233
+ display: flex;
1234
+ border-radius: 3px;
1235
+ border: 1px solid $img-light-white-color;
1236
+ cursor: pointer;
1237
+ overflow: hidden;
1238
+ transition: .3s ease;
1239
+ position: relative;
1240
+ margin: 0 0 rem(10);
1241
+ &:before {
1242
+ content: '';
1243
+ display: block;
1244
+ padding-top: 100%;
1245
+ }
1173
1246
 
1174
- .dropdown-menu {
1175
- min-width: 300px;
1176
- width: 300px;
1247
+ &.imgSelected {
1177
1248
 
1178
- .dropdown-content {
1179
- padding-top: 0px;
1249
+ &:after {
1250
+ z-index: 1000;
1251
+ content: '';
1252
+ display: block;
1253
+ position: absolute;
1254
+ width: 100%;
1255
+ height: 4px;
1256
+ background-color: $img-main-color;
1257
+ bottom: 0;
1258
+ left: 0;
1259
+ transform: translateZ(0);
1260
+ }
1180
1261
  }
1181
1262
 
1182
- .dropdown-item {
1183
- color: $img-grey-color;
1184
- display: flex;
1185
- justify-content: space-between;
1186
- align-items: center;
1187
- padding: 12px 20px;
1188
- margin: 0 0 5px;
1189
- &:last-child {
1190
- margin: 0;
1263
+ &__valid {
1264
+ display: flex;
1265
+ position: absolute;
1266
+ top: 100%;
1267
+ left: 50%;
1268
+ transform: translate(-50%,0);
1269
+ justify-content: center;
1270
+ align-items: center;
1271
+ width: auto;
1272
+ background-color: $img-green-color;
1273
+ border-radius: 3px;
1274
+ padding: 5px;
1275
+ transition: .3s ease;
1276
+ i {
1277
+ font-size: rem(10);
1278
+ color: $white;
1279
+ margin: 0 5px 0 0;
1280
+ }
1281
+ span {
1282
+ color: $white;
1283
+ font-weight: 500;
1284
+ font-size: rem(10);
1191
1285
  }
1286
+ }
1192
1287
 
1193
- p {
1194
- margin: 0;
1195
- line-height: rem(16);
1288
+ &:hover, &:focus {
1289
+ .img-card__container {
1290
+ &__valid {
1291
+ transform: translate(-50%, -40px);
1196
1292
  }
1293
+ }
1294
+ }
1197
1295
 
1198
- p:first-child {
1199
- color: #1D2A3B;
1200
- font-size: rem(14);
1201
- }
1202
-
1203
- p:last-child {
1204
- color: #526384;
1205
- font-size: rem(14);
1206
- }
1207
- }
1208
-
1209
- .dropdown-item:hover {
1210
- background-color: whitesmoke;
1211
- cursor: pointer;
1212
- color: black;
1213
- }
1214
-
1215
- .dropdown-item.expectedSizes {
1216
- font-weight: 500;
1217
- }
1218
-
1219
- .dropdownTitle {
1220
- font-size: 14px;
1221
- background-color: $img-main-color;
1222
- padding: rem(9.5) 0;
1223
- text-align: center;
1224
-
1225
- p {
1226
- font-size: 14px;
1227
- color: white;
1228
- margin: 0;
1229
- font-weight: 500;
1230
- }
1296
+ &__img {
1297
+ width: auto!important;
1298
+ height: auto!important;
1299
+ background-color: white;
1300
+ margin: auto;
1301
+ transition: .3s ease;
1302
+ position: absolute;
1303
+ object-fit: contain;
1304
+ max-width: 100%;
1305
+ max-height: 100%;
1306
+ top: 50%;
1307
+ left: 50%;
1308
+ transform: translate(-50%,-50%);
1231
1309
  }
1232
1310
 
1233
- .infoItem {
1234
- padding: 18px 20px 11px 20px;
1235
- line-height: 1.5;
1236
- font-weight: 500;
1311
+ &__config {
1312
+ position: relative;
1313
+ top: 10px;
1314
+ left: 10px;
1315
+ transform: none;
1316
+ z-index: 9999;
1317
+ width: 30px;
1318
+ opacity: 0;
1319
+ transition: .3s ease;
1237
1320
 
1238
- p {
1321
+ button {
1322
+ box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
1239
1323
  margin: 0;
1240
- font-size: rem(16);
1241
- line-height: rem(19);
1242
- font-weight: 500;
1243
- }
1244
- }
1245
-
1246
- .dropdown-item-wrapper {
1247
- border: 1px solid #DEE2ED;
1248
- border-radius: 3px;
1249
- margin: 0 20px 5px 20px;
1250
- }
1251
- }
1252
- }
1253
-
1254
- .noTooltip .tooltip.is-tooltip-left:hover::before, .noTooltip .tooltip.is-tooltip-left:hover:not(.is-loading)::after {
1255
- display: none;
1256
- }
1257
- .wz-img-manager .images-view {
1258
- text-align: left;
1259
-
1260
- &.fullSize {
1261
- & + .images-view__scroll {
1262
- max-height: 1160px;
1263
- }
1264
- }
1265
-
1266
- &__scroll {
1267
- position: relative;
1268
- height: 100%;
1269
- z-index: 1;
1270
-
1271
- &--full {
1272
- max-height: calc(100vh - 160px)!important;
1273
- min-height: calc(100vh - 160px) !important;
1274
- }
1324
+ width: 30px;
1325
+ height: 30px;
1326
+ box-sizing: content-box;
1327
+ border-radius: 3px;
1328
+ border: none;
1329
+ color: #fff;
1330
+ transform: translateX(-40px);
1331
+ will-change: transform;
1332
+ cursor: pointer;
1333
+ padding: 0;
1334
+ display: flex;
1335
+ justify-content: center;
1336
+ align-content: center;
1337
+ align-items: center;
1275
1338
 
1276
- &--smallDisplay {
1277
- max-height: 275px!important;
1278
- }
1339
+ i {
1340
+ font-size: 16px;
1341
+ color: #fff;
1342
+ position: relative;
1343
+ z-index: 3;
1344
+ }
1279
1345
 
1280
- &--smallUploadDisplay {
1281
- max-height: 230px!important;
1282
- }
1346
+ &:before {
1347
+ content: '';
1348
+ display: block;
1349
+ position: absolute;
1350
+ top: 0;
1351
+ left: 0;
1352
+ border-radius: 3px;
1353
+ width: 100%;
1354
+ height: 100%;
1355
+ z-index: 2;
1356
+ }
1283
1357
 
1284
- &--window {
1285
- max-height: unset!important;
1286
- }
1358
+ span {
1359
+ position: absolute;
1360
+ left: 100%;
1361
+ display: flex;
1362
+ justify-content: center;
1363
+ align-items: center;
1364
+ align-content: center;
1365
+ height: 100%;
1366
+ margin-left: -10px;
1367
+ width: auto;
1368
+ padding: 0 10px 0 0;
1369
+ color: #fff;
1370
+ text-transform: capitalize;
1371
+ font-size: 14px;
1372
+ border-radius: 0 3px 3px 0;
1373
+ max-width: 0;
1374
+ overflow: hidden;
1375
+ z-index: 1;
1376
+ transition: .3s ease;
1377
+ box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
1378
+ white-space: nowrap;
1379
+ }
1287
1380
 
1288
- &--hide {
1289
- &--mosaic {
1290
- min-height: 100px !important;
1291
- &--small {
1292
- min-height: unset !important;
1381
+ &:not(:last-child) {
1382
+ margin: 0 0 5px;
1293
1383
  }
1294
- }
1295
- &--table {
1296
- min-height: 170px !important;
1297
- }
1384
+ &.size {
1385
+ background-color: #1E2E43;
1386
+ transition: transform .3s ease .6s;
1387
+ span, &:before {
1388
+ background-color: #1E2E43;
1389
+ }
1390
+ }
1391
+ &.dl {
1392
+ background-color: $img-bleu-action;
1393
+ transition: transform .3s ease .45s;
1394
+ span, &:before {
1395
+ background-color: $img-bleu-action;
1396
+ }
1397
+ }
1398
+ &.edit {
1399
+ background-color: $img-orange-color;
1400
+ transition: transform .3s ease .3s;
1401
+ span, &:before {
1402
+ background-color: $img-orange-color;
1403
+ }
1404
+ }
1405
+ &.deleted {
1406
+ background-color: $img-red-color;
1407
+ transition: transform .3s ease .15s;
1408
+ span, &:before {
1409
+ background-color: $img-red-color;
1410
+ }
1411
+ }
1412
+ &.selected {
1413
+ background-color: #fff;
1414
+ border-color: $img-light-white-color;
1415
+ transition: transform .3s ease;
1416
+ span, &:before {
1417
+ background-color: #fff;
1418
+ color: $img-grey-color;
1419
+ }
1298
1420
 
1421
+ i {
1422
+ color: $img-light-white-color;
1423
+ }
1424
+ .checked {
1425
+ color: $img-bleu-color;
1426
+ }
1427
+ }
1428
+ &:hover, &:focus {
1429
+ border-radius: 3px 0 0 3px;
1430
+ &:before {
1431
+ border-radius: 3px 0 0 3px;
1432
+ }
1433
+ span {
1434
+ transition: max-width 1s ease, margin-left .3s ease;
1435
+ max-width: 1000px;
1436
+ margin-left: -1px;
1437
+ padding-left: 4px;
1438
+ will-change: transform, margin;
1439
+ }
1440
+ }
1441
+ }
1299
1442
  }
1300
1443
 
1301
- .ng-scroll-content {
1302
- min-width: calc(100% - 1rem) !important;
1303
- width: calc(100% - 1rem) !important;
1304
- }
1305
- }
1444
+ &__overlay {
1445
+ position: absolute;
1446
+ top: 0;
1447
+ left: 0;
1448
+ height: 100%;
1449
+ width: 100%;
1450
+ display: flex;
1451
+ justify-content: center;
1452
+ align-items: center;
1306
1453
 
1307
- &__container {
1308
- display: flex;
1309
- justify-content: space-between;
1310
- margin: 0 0 rem(20);
1454
+ i {
1455
+ font-size: 100px;
1456
+ color: grey;
1457
+ }
1311
1458
 
1312
- > div {
1313
- display: flex;
1314
- align-items: center;
1315
- .mainColor {
1316
- margin: 0;
1459
+ &--smallDisplay {
1460
+ i {
1461
+ font-size: 75px;
1462
+ }
1463
+ }
1317
1464
  }
1318
- }
1319
1465
 
1320
- &--window {
1321
- margin: rem(30) 0 rem(20);
1466
+ &__delete {
1467
+ position: absolute;
1468
+ top: 0;
1469
+ left: 0;
1470
+ width: 100%;
1471
+ height: 100%;
1472
+ background-color: rgba(0,0,0,.45);
1473
+ display: flex;
1474
+ flex-direction: column;
1475
+ justify-content: center;
1476
+ align-items: center;
1477
+ padding: 15px;
1478
+ visibility: hidden;
1479
+ transform: translateY(100%);
1480
+ opacity: 0;
1481
+ z-index: 9999;
1482
+ transition: visibility 0s linear .35s, opacity .3s ease, transform .3s ease;
1483
+ &.show {
1484
+ transform: translateY(0);
1485
+ opacity: 1;
1486
+ visibility: visible;
1487
+ transition: visibility 0s linear, opacity .3s ease .05s, transform .3s ease .05s;
1488
+ }
1489
+ > span {
1490
+ font-size: rem(14);
1491
+ color: $img-white;
1492
+ font-weight: 600;
1493
+ text-align: center;
1494
+ display: inline-block;
1495
+ margin: 0 0 10px;
1496
+ }
1497
+ > div {
1498
+ display: flex;
1499
+ > button {
1500
+ padding: 7px 12px;
1501
+ font-size: rem(14);
1502
+ color: $img-white;
1503
+ background-color: $img-red-color;
1504
+ font-weight: 600;
1505
+ border: none;
1506
+ margin: 0 0 0 5px;
1507
+ text-transform: capitalize;
1508
+ transition: .3s ease;
1509
+ &:hover, &:focus {
1510
+ background-color: darken($img-red-color, 15%);
1511
+ }
1512
+ &:first-child {
1513
+ background-color: $img-main-color;
1514
+ margin: 0 5px 0 0;
1515
+ &:hover, &:focus {
1516
+ background-color: darken($img-main-color, 15%);
1517
+ }
1518
+ }
1519
+ }
1520
+ }
1322
1521
  }
1522
+ }
1323
1523
 
1324
- &--uploadTab {
1325
- margin: 0 0 rem(20);
1524
+ &__nameContainer {
1525
+ text-align: center;
1526
+ overflow: hidden;
1527
+ max-width: 100%;
1528
+ min-width: 100%;
1529
+ position: relative;
1530
+ width: auto;
1531
+ display: flex;
1532
+ justify-content: center;
1533
+ align-items: center;
1534
+ min-height: rem(16);
1535
+
1536
+ &.focus {
1537
+ overflow: visible;
1538
+ }
1539
+
1540
+ > span {
1541
+ padding: 0 rem(10);
1542
+ font-size: rem(12);
1543
+ line-height: rem(14);
1544
+ color: $img-grey-color;
1545
+ width: auto;
1546
+ white-space: nowrap;
1547
+ overflow: hidden;
1548
+ text-overflow: ellipsis;
1549
+ text-align: center;
1550
+ display: inline-block;
1551
+ transition: .3s ease;
1552
+ pointer-events: none;
1553
+ max-width: 100%;
1554
+ }
1555
+
1556
+ &__name {
1557
+ margin: 0;
1558
+ padding: 5px;
1559
+ font-size: rem(12);
1560
+ color: $img-grey-color;
1561
+ line-height: rem(14);
1562
+ text-align: center;
1563
+ width: 100%;
1564
+ min-width: 100%;
1565
+ white-space: nowrap;
1566
+ overflow: hidden;
1567
+ text-overflow: ellipsis;
1568
+ transition: .3s ease;
1569
+ cursor: initial;
1570
+ max-width: 100%;
1571
+ position: absolute;
1572
+ top: 0;
1573
+ left: 0;
1574
+ opacity: 0;
1575
+ &:focus {
1576
+ opacity: 1;
1577
+ transform: translateY(-5px);
1578
+ & + span {
1579
+ opacity: 0;
1580
+ }
1326
1581
  }
1582
+ }
1583
+ }
1327
1584
 
1328
- &__boxAction {
1329
- width: 525px;
1330
- overflow: visible;
1585
+ &:hover, &:focus {
1586
+ z-index: 3;
1587
+ .img-card {
1588
+ &__nameContainer {
1589
+ overflow: visible;
1590
+ &__name {
1591
+ color: #52AECD;
1592
+ transform: translateY(-5px);
1593
+ }
1594
+ }
1595
+
1596
+ &__container {
1597
+ border-color: $wizishop-blue;
1598
+ &__img {
1599
+ transform: scale(1.02) translate(-50%,-50%);
1600
+ }
1601
+ &__config {
1602
+ opacity: 1;
1603
+ button {
1604
+ transform: translateX(0);
1605
+ &.size {
1606
+ transition: transform .3s ease;
1607
+ }
1608
+ &.dl {
1609
+ transition: transform .3s ease .15s;
1610
+ }
1611
+ &.edit {
1612
+ transition: transform .3s ease .3s;
1613
+ }
1614
+ &.deleted {
1615
+ transition: transform .3s ease .45s;
1616
+ }
1617
+ &.selected {
1618
+ transition: transform .3s ease .6s;
1619
+ }
1620
+ }
1621
+ }
1622
+ }
1623
+ }
1624
+ }
1625
+ }
1626
+
1627
+ .wz-img-manager .addCssPriority .img-card .smallDisplay,.wz-img-manager .img-card .smallDisplay img {
1628
+ width: $card-img-size-small;
1629
+ height: $card-img-size-small;
1630
+ }
1631
+
1632
+ .wz-img-manager .addCssPriority .smallNameDisplay .img-card__nameContainer__name {
1633
+ width: $card-img-size-small;
1634
+ }
1635
+ //.wz-img-manager useful to keep the css priority
1636
+ .wz-img-manager .table-view {
1637
+
1638
+
1639
+ &__row {
1640
+ td {
1641
+ vertical-align: middle;
1642
+ }
1643
+ &__container {
1331
1644
  display: flex;
1332
- position: relative;
1333
- justify-content: flex-end;
1334
- margin-right: 13px;
1335
- height: 40px;
1336
1645
  align-items: center;
1337
- transform: translate(-41px,-3px);
1646
+ width: 100%;
1338
1647
 
1339
- &__confirmSup {
1340
- display: flex;
1341
- justify-content: space-between;
1342
- align-items: center;
1343
- border-left: solid 1px #d8d8d8;
1344
- color: $img-grey-color;
1345
- padding-left: 1rem;
1346
- width: 0;
1347
- position: absolute;
1348
- opacity: 0;
1349
- transition: 0s;
1350
- visibility: hidden;
1351
- z-index: 2;
1648
+ &__imgContainer {
1649
+ margin-right: 20px;
1650
+ position: relative;
1651
+ display: block;
1652
+ min-width: 60px;
1653
+ cursor: pointer;
1352
1654
 
1353
- &--visible {
1354
- max-width: unset;
1355
- width: auto;
1356
- opacity: 1;
1357
- transition: 0s;
1358
- visibility: visible;
1655
+ &::before {
1656
+ content: '';
1657
+ display: block;
1658
+ padding-top: 100%;
1659
+ }
1359
1660
 
1360
- p {
1361
- transition: left .3s ease-in-out;
1362
- right: 100%;
1363
- left: auto;
1364
- white-space: nowrap;
1365
- margin-right: 30px;
1366
- }
1661
+ &__img {
1662
+ margin: 0!important;
1663
+ position: absolute;
1664
+ top: 50%;
1665
+ left: 50%;
1666
+ max-width: 100%;
1667
+ max-height:100%;
1668
+ width: auto;
1669
+ height: auto;
1670
+ transform: translate(-50%, -50%);
1671
+ object-fit: contain;
1367
1672
  }
1368
1673
 
1369
- &__cancel {
1370
- margin-right: 14px;
1371
- background-color: white;
1372
- border-color: #dbdbdb;
1373
- color: $img-main-text;
1674
+ &.imgSelected {
1675
+
1676
+ &:after {
1677
+ z-index: 1000;
1678
+ content: '';
1679
+ display: block;
1680
+ position: absolute;
1681
+ width: 100%;
1682
+ height: 4px;
1683
+ background-color: $img-main-color;
1684
+ bottom: 0;
1685
+ left: 0;
1686
+ transform: translateZ(0);
1687
+ }
1374
1688
  }
1375
1689
 
1376
- &__text {
1377
- font-size: 14px;
1690
+ &__overlay {
1378
1691
  position: absolute;
1379
- left: -126%;
1380
- transition: font-size .3s ease-in-out, left .3s ease-in-out;
1692
+ top: 25%;
1693
+ left: 25%;
1694
+ height: 100%;
1695
+ width: 100%;
1696
+
1697
+ i {
1698
+ font-size: 30px;
1699
+ color: grey;
1700
+ }
1381
1701
  }
1382
1702
  }
1383
1703
 
1384
- &__delBtn {
1385
- i {
1386
- margin-right: 13px!important;
1387
- }
1704
+ &__name {
1705
+ display: inline-block;
1706
+ background-color: transparent;
1707
+ white-space: nowrap;
1708
+ overflow: hidden;
1709
+ text-overflow: ellipsis;
1710
+ color: $main-text;
1711
+ font-size: 14px;
1712
+ cursor: initial;
1388
1713
  }
1714
+ }
1715
+ }
1389
1716
 
1390
- &__import {
1391
- margin-right: 13px;
1717
+ &__dropdown-options {
1718
+ &__label {
1719
+ &--disable {
1720
+ cursor: not-allowed;
1392
1721
  i {
1393
- margin-right: 13px!important;
1722
+ cursor: not-allowed;
1394
1723
  }
1395
1724
  }
1396
1725
  }
1726
+ }
1727
+ }
1397
1728
 
1398
- &__buttonBox {
1399
- margin: 0;
1400
- width: rem(40);
1401
- height: rem(40);
1402
- border: solid $img-light-white-color;
1403
- border-width: 1px 0 1px 1px;
1729
+ .wz-img-manager .table-view .checked {
1730
+ color: $img-main-color;
1731
+ }
1404
1732
 
1405
- border-radius: 3px 0 0 3px;
1406
- outline: none!important;
1733
+ .wz-img-manager .table-view .checked.disabled {
1734
+ color: grey;
1735
+ }
1407
1736
 
1408
- > div {
1409
- margin-top: 0;
1410
- margin-bottom: 0;
1411
- height: 40px;
1412
- &:nth-child(2) {
1413
- border: solid $img-light-white-color;
1414
- border-width: 1px 1px 1px 0;
1415
- transform: translateY(-1px);
1416
- border-radius: 0 3px 3px 0;
1417
- }
1418
- div {
1419
- height: 38px;
1420
- margin: 0!important;
1421
- }
1422
- }
1423
1737
 
1424
- .actifDisplayed {
1425
- color:$img-main-color;
1426
- }
1738
+ .wz-img-manager .table-view .disabled {
1739
+ cursor: not-allowed;
1740
+ }
1427
1741
 
1428
- i {
1429
- margin: 0;
1430
- }
1431
- }
1432
1742
 
1433
- &__cards {
1434
- display: flex;
1435
- justify-content: space-between;
1436
- flex-wrap: wrap;
1437
- align-items: center;
1438
- padding-top: 30px;
1439
- margin-right: calc(0.8rem - 20px);
1440
- margin-left: 0.3rem;
1441
- margin-bottom: 30px;
1442
- }
1443
- }
1743
+ .wz-img-manager .is-wizi-hoverable .dropdown-trigger:before {
1744
+ width: 5rem;
1745
+ }
1444
1746
 
1445
- &--pexels {
1446
- margin-top: -30px;
1447
- }
1747
+ .table-view .wzImgMngInput {
1748
+ border-radius: 3px;
1749
+ }
1448
1750
 
1449
- .subHeaderActions .button i {
1450
- margin-right: 0;
1451
- }
1751
+ .table-view .wzImgMngInput:active.desabled, .table-view .wzImgMngInput:focus.desabled {
1752
+ border: solid transparent 1px;
1452
1753
  }
1453
1754
 
1454
- @media screen and (max-width: 768px) {
1455
- .wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
1456
- max-height: none!important;
1755
+ .wz-img-manager .table-view .dropdown-menu {
1756
+ left: -165px;
1757
+ }
1457
1758
 
1458
- .ng-scroll-content {
1459
- margin: 0 !important;
1460
- min-width: 100%!important;
1461
- width: 100%!important;
1462
- }
1463
- }
1759
+ .grey {
1760
+ color: $img-grey-color;
1464
1761
  }
1465
- .wz-img-manager .img-editor {
1466
- &__scroll {
1467
- position: relative;
1468
- height: 100%;
1762
+ $green: $really-bad-bad-bad-green !default;
1763
+ $primary: $primary-button !default;
1764
+ $light: $img-placeholder !default;
1765
+ $info: $wizishop-blue !default;
1766
+ $danger: $img-red-color !default;
1767
+ $dark: $img-dark !default;
1469
1768
 
1470
- &--full {
1471
- max-height: calc(100vh - 90px)!important;
1472
- min-height: calc(100vh - 90px) !important;
1473
- }
1769
+ $button-padding-vertical: rem(7) !default;
1770
+ $radius: rem(3) !default;
1474
1771
 
1475
- &--smallDisplay {
1476
- max-height: 275px!important;
1477
- }
1772
+ $button-color: white!default;
1773
+ $button-hover-color: white !default;
1774
+ $button-focus-color: white !default;
1775
+ $button-active-color: white !default;
1776
+ $button-background-color: $primary !default;
1777
+ $button-disabled-background-color: $primary !default;
1778
+ $button-border-color: $primary-button-hover !default;
1779
+ $button-hover-border-color: $primary-button-hover !default;
1780
+ $button-active-border-color: $primary-button-hover !default;
1781
+ $button-focus-border-color: $primary-button-hover !default;
1782
+ $button-disabled-border-color: $primary-button-hover !default;
1478
1783
 
1479
- &--window {
1480
- max-height: none;
1481
- }
1784
+ $tag-radius: rem(20px)!default;
1785
+ image-cropper {
1786
+ max-height: 60vh;
1787
+ }.wz-img-manager .images-view {
1788
+ text-align: left;
1482
1789
 
1483
- .ng-scroll-content {
1484
- margin-left: 0 !important;
1485
- margin-right: 0 !important;
1486
- min-width: calc(100% - 1rem) !important;
1487
- width: calc(100% - 1rem) !important;
1488
- }
1790
+ &.fullSize {
1791
+ & + .images-view__scroll {
1792
+ max-height: 1160px;
1793
+ }
1489
1794
  }
1490
1795
 
1491
- .columns {
1492
- margin-right: 0.8rem;
1493
- margin-left: rem(12);
1494
- margin-top: 12px;
1495
- margin-bottom: 0;
1496
- width: calc(100% + 11px);
1796
+ &__scroll {
1797
+ position: relative;
1798
+ height: 100%;
1799
+ z-index: 1;
1800
+
1801
+ &--full {
1802
+ max-height: calc(100vh - 160px)!important;
1803
+ min-height: calc(100vh - 160px) !important;
1804
+ }
1497
1805
 
1498
- .column {
1499
- padding-top: 0;
1500
- padding-bottom: 0px;
1806
+ &--smallDisplay {
1807
+ max-height: 275px!important;
1501
1808
  }
1502
- }
1503
1809
 
1504
- &__head-container {
1505
- display: flex;
1506
- justify-content: flex-end;
1507
- align-items: center;
1508
- margin: 30px 30px 20px 0;
1810
+ &--smallUploadDisplay {
1811
+ max-height: 230px!important;
1812
+ }
1509
1813
 
1510
- &__btnGroup {
1511
- margin-right: 13px;
1512
- opacity: 0;
1513
- visibility: hidden;
1514
- transition: opacity .3s ease-in-out;
1814
+ &--window {
1815
+ max-height: unset!important;
1816
+ }
1515
1817
 
1516
- &__visible {
1517
- opacity: 1;
1518
- visibility: visible;
1818
+ &--hide {
1819
+ &--mosaic {
1820
+ min-height: 100px !important;
1821
+ &--small {
1822
+ min-height: unset !important;
1823
+ }
1519
1824
  }
1520
-
1521
- &__removeBtn {
1522
- margin-right: 13px;
1825
+ &--table {
1826
+ min-height: 170px !important;
1523
1827
  }
1828
+
1524
1829
  }
1525
1830
 
1526
- &__close {
1527
- cursor: pointer;
1528
- font-size: 14px;
1529
- color: $img-grey-color;
1530
- line-height: 40px;
1831
+ .ng-scroll-content {
1832
+ min-width: calc(100% - 1rem) !important;
1833
+ width: calc(100% - 1rem) !important;
1531
1834
  }
1532
1835
  }
1533
1836
 
1534
1837
  &__container {
1535
- padding: 0.75rem!important;
1536
- display:flex;
1537
- justify-content: center;
1538
- align-items: center;
1539
- background-color: $img-gray-background;
1540
- margin: 0;
1541
- transform: translateY(-16px);
1542
-
1543
- &__toolsContainer {
1544
- display: flex;
1545
- justify-content: center;
1546
- align-items: center;
1547
- margin-bottom: 50px;
1548
-
1549
- &__tool {
1550
- color: $img-second-color;
1551
- margin-right: 30px;
1552
- text-align: center;
1553
- cursor: pointer;
1554
-
1555
- p {
1556
- margin: 0!important;
1557
- color: $img-main-text;
1558
- font-size: rem(12);
1559
- line-height: rem(14);
1560
- }
1561
-
1562
- i {
1563
- font-size: rem(18);
1564
- margin: 0 0 10px;
1565
- }
1566
-
1567
- &--button {
1568
- background-color: $img-green-color;
1569
- color: $img-white!important;
1570
- padding: 10px;
1571
- border-radius: 3px;
1572
- transition: .3s ease;
1573
- white-space: nowrap;
1574
- display: flex;
1575
- justify-content: center;
1576
- align-items: center;
1577
- position: absolute;
1578
- top: 80px;
1579
- left: 50%;
1580
- transform: translateX(-50%);
1581
- height: 35px;
1582
- margin: 0;
1583
- &:hover, &:focus {
1584
- background-color: darken($img-green-color, 15%);
1585
- color: $img-white!important;
1586
- }
1587
- p {
1588
- color: $white!important;
1589
- }
1590
- i {
1591
- margin: 0 5px 0 0;
1592
- }
1593
- }
1594
- &:hover {
1595
- color: $img-main-color;
1596
- }
1597
-
1598
- > * {
1599
- -webkit-touch-callout: none; /* iOS Safari */
1600
- -webkit-user-select: none; /* Safari */
1601
- -khtml-user-select: none; /* Konqueror HTML */
1602
- -moz-user-select: none; /* Old versions of Firefox */
1603
- -ms-user-select: none; /* Internet Explorer/Edge */
1604
- user-select: none; /* Non-prefixed version, currently
1605
- supported by Chrome, Edge, Opera and Firefox */
1606
- }
1607
- }
1838
+ display: flex;
1839
+ justify-content: space-between;
1840
+ margin: 0 0 rem(20);
1608
1841
 
1609
- &__RotationDropdown {
1610
- min-width: 16rem;
1611
- }
1842
+ > div {
1843
+ display: flex;
1844
+ align-items: center;
1845
+ .mainColor {
1846
+ margin: 0;
1612
1847
  }
1848
+ }
1613
1849
 
1614
- &__name {
1615
- font-size: 16px;
1616
- max-width: 50%;
1617
- color: $img-grey-color;
1618
- text-align: center;
1619
- white-space: nowrap;
1620
- overflow: hidden;
1621
- text-overflow: ellipsis;
1850
+ &--window {
1851
+ margin: rem(30) 0 rem(20);
1622
1852
  }
1623
1853
 
1624
- .button {
1625
- min-height: 35px;
1626
- background-color: $img-primary-button;
1627
- border-color: $img-primary-button-hover;
1628
- color: #ffffff;
1854
+ &--uploadTab {
1855
+ margin: 0 0 rem(20);
1629
1856
  }
1630
- }
1631
-
1632
- &__image-cropper {
1633
- --cropper-overlay-color: #f5f8fa;
1634
- //--cropper-outline-color: #a5a5a573;
1635
- padding-bottom: 30px;
1636
- }
1637
1857
 
1638
- &__infoSection {
1639
- font-size: 14px;
1640
- max-width: 360px;
1641
- padding: 0;
1642
- margin: 0 rem(30) 0 0;
1858
+ &__boxAction {
1859
+ width: 525px;
1860
+ overflow: visible;
1861
+ display: flex;
1862
+ position: relative;
1863
+ justify-content: flex-end;
1864
+ margin-right: 13px;
1865
+ height: 40px;
1866
+ align-items: center;
1867
+ transform: translate(-41px,-3px);
1643
1868
 
1644
- &__propertyEditable {
1645
- margin-bottom: 31px;
1646
- p {
1647
- margin-bottom: 12px;
1648
- font-size: 14px;
1649
- }
1650
- input, button {
1651
- width: 100%;
1652
- height: 40px;
1653
- border: 1px solid #DEE2ED;
1654
- border-radius: 3px;
1655
- color: $img-main-text;
1656
- padding-left: 20px;
1657
- padding-right: 20px;
1869
+ &__confirmSup {
1658
1870
  display: flex;
1659
1871
  justify-content: space-between;
1660
- font-size: 14px;
1661
-
1662
- &:hover {
1663
- color: $img-main-color;
1664
- border-color: $img-main-color;
1665
- }
1666
- }
1667
-
1668
- button {
1669
1872
  align-items: center;
1670
- background-color: transparent;
1671
- cursor: pointer;
1672
- }
1873
+ border-left: solid 1px #d8d8d8;
1874
+ color: $img-grey-color;
1875
+ padding-left: 1rem;
1876
+ width: 0;
1877
+ position: absolute;
1878
+ opacity: 0;
1879
+ transition: 0s;
1880
+ visibility: hidden;
1881
+ z-index: 2;
1673
1882
 
1674
- &__span, &__input {
1675
- text-overflow: ellipsis;
1676
- overflow: hidden;
1677
- white-space: nowrap;
1678
- }
1883
+ &--visible {
1884
+ max-width: unset;
1885
+ width: auto;
1886
+ opacity: 1;
1887
+ transition: 0s;
1888
+ visibility: visible;
1679
1889
 
1680
- &__span {
1681
- color: $img-bleu-color;
1682
- & + i {
1683
- color: $img-bleu-color;
1684
- font-weight: 600;
1685
- }
1686
- }
1890
+ p {
1891
+ transition: left .3s ease-in-out;
1892
+ right: 100%;
1893
+ left: auto;
1894
+ white-space: nowrap;
1895
+ margin-right: 30px;
1896
+ }
1897
+ }
1687
1898
 
1688
- &__tooltips {
1689
- margin-left: 10px;
1690
- }
1691
- }
1899
+ &__cancel {
1900
+ margin-right: 14px;
1901
+ background-color: white;
1902
+ border-color: #dbdbdb;
1903
+ color: $img-main-text;
1904
+ }
1692
1905
 
1693
- &__property {
1694
- &:nth-child(3), &:nth-child(4) {
1695
- margin: 0;
1696
- }
1697
- p {
1698
- font-size: 14px;
1699
- display: inline-block;
1906
+ &__text {
1907
+ font-size: 14px;
1908
+ position: absolute;
1909
+ left: -126%;
1910
+ transition: font-size .3s ease-in-out, left .3s ease-in-out;
1911
+ }
1700
1912
  }
1701
1913
 
1702
- .mainColor {
1703
- margin: 0!important;
1704
- }
1914
+ &__delBtn {
1915
+ i {
1916
+ margin-right: 13px!important;
1917
+ }
1918
+ }
1705
1919
 
1706
- p:last-child {
1707
- margin: 0 0 0 10px;
1708
- color: #526384;
1920
+ &__import {
1921
+ margin-right: 13px;
1922
+ i {
1923
+ margin-right: 13px!important;
1924
+ }
1709
1925
  }
1710
1926
  }
1711
1927
 
1712
- &__titleSEO {
1713
- margin: 0 0 20px;
1928
+ &__buttonBox {
1929
+ margin: 0;
1930
+ width: rem(40);
1931
+ height: rem(40);
1932
+ border: solid $img-light-white-color;
1933
+ border-width: 1px 0 1px 1px;
1714
1934
 
1715
- .mainColor {
1716
- font-size: rem(18);
1717
- font-weight: 500;
1718
- }
1719
- }
1935
+ border-radius: 3px 0 0 3px;
1936
+ outline: none!important;
1720
1937
 
1721
- &__propertySEO {
1722
- margin-bottom: 12px;
1723
- p {
1724
- font-size: 14px;
1725
- display: inline-block;
1726
- margin: 0;
1938
+ > div {
1939
+ margin-top: 0;
1940
+ margin-bottom: 0;
1941
+ height: 40px;
1942
+ &:nth-child(2) {
1943
+ border: solid $img-light-white-color;
1944
+ border-width: 1px 1px 1px 0;
1945
+ transform: translateY(-1px);
1946
+ border-radius: 0 3px 3px 0;
1947
+ }
1948
+ div {
1949
+ height: 38px;
1950
+ margin: 0!important;
1951
+ }
1727
1952
  }
1728
1953
 
1729
- .mainColor {
1730
- & ~ p {
1731
- margin-left: 10px;
1732
- color: $img-green-color;
1954
+ .actifDisplayed {
1955
+ color:$img-main-color;
1733
1956
  }
1734
- }
1735
- }
1736
-
1737
- &__divider {
1738
- display: block;
1739
- width: 100%;
1740
- border-bottom: 2px dashed #EFF1F6;
1741
- margin: 30px 0;
1742
- }
1743
-
1744
- &__actions {
1745
- height: 35px;
1746
1957
 
1747
- &__cancel {
1748
- margin-right: 19px;
1749
- background-color: white;
1750
- border-color: #dbdbdb;
1751
- color: $img-main-text;
1958
+ i {
1959
+ margin: 0;
1752
1960
  }
1961
+ }
1753
1962
 
1754
- &__save {
1755
- padding: 8px 18px;
1756
- margin: 0!important;
1757
- &--disable {
1758
- cursor: not-allowed;
1759
- }
1760
- }
1963
+ &__cards {
1964
+ display: flex;
1965
+ justify-content: space-between;
1966
+ flex-wrap: wrap;
1967
+ align-items: center;
1968
+ padding-top: 30px;
1969
+ margin-right: calc(0.8rem - 20px);
1970
+ margin-left: 0.3rem;
1971
+ margin-bottom: 30px;
1761
1972
  }
1762
1973
  }
1763
1974
 
1764
- .dropdown-menu {
1765
- left: -50%;
1975
+ &--pexels {
1976
+ margin-top: -30px;
1977
+ }
1978
+
1979
+ .subHeaderActions .button i {
1980
+ margin-right: 0;
1766
1981
  }
1767
1982
  }
1768
1983
 
1769
- .wz-img-manager .marginBottom {
1770
- margin-bottom: 20px;
1984
+ @media screen and (max-width: 768px) {
1985
+ .wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
1986
+ max-height: none!important;
1987
+
1988
+ .ng-scroll-content {
1989
+ margin: 0 !important;
1990
+ min-width: 100%!important;
1991
+ width: 100%!important;
1992
+ }
1993
+ }
1771
1994
  }
1772
- // Warning: in webcomponent (for wizishop-com project) the following style are added by styles-handler.js script (hard-coded)
1995
+ .img-editor__infoSection__propertySEO__tooltips {
1996
+ i {
1997
+ font-size: rem(16);
1998
+ color: $main-text;
1999
+ }
2000
+ }// Warning: in webcomponent (for wizishop-com project) the following style are added by styles-handler.js script (hard-coded)
1773
2001
  .wz-img-manager .img-selection {
1774
2002
  background-color: white;
1775
2003
  margin-left: 1.875rem;
@@ -1885,356 +2113,351 @@ $tag-radius: rem(20px)!default;
1885
2113
  min-width: 200px;
1886
2114
  max-width: 200px;
1887
2115
  }
1888
- img {
1889
- position: absolute;
1890
- top: 50%;
1891
- left: 50%;
1892
- transform: translate(-50%, -50%);
1893
- max-width: 100%!important;
1894
- max-height: 100%;
1895
- object-fit: contain;
1896
- width: auto!important;
1897
- height: auto;
1898
- }
1899
- }
1900
-
1901
-
1902
- .cdk-drag-preview {
1903
- box-sizing: border-box;
1904
- border-radius: 4px;
1905
- box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
1906
- 0 8px 10px 1px rgba(0, 0, 0, 0.14),
1907
- 0 3px 14px 2px rgba(0, 0, 0, 0.12);
1908
- img {
1909
- width: 100%!important;
1910
- height: auto!important;
1911
- }
1912
- }
1913
-
1914
- .cdk-drag-placeholder {
1915
- opacity: 0;
1916
- }
1917
-
1918
- .cdk-drag-animating {
1919
- transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
1920
- }
1921
-
1922
- .list_img_selection.cdk-drop-list-dragging .img_box:not(.cdk-drag-placeholder) {
1923
- transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
1924
- }
1925
-
1926
- .trash {
1927
- display: none!important;
1928
- }
1929
- //.wz-img-manager useful to keep the css priority
1930
- .wz-img-manager .img-tabs {
1931
- background-color: white;
1932
- padding-left: 0;
1933
- padding-right: 0;
1934
- padding-top: 0;
1935
-
1936
- .tabs {
1937
- margin: 0;
1938
- display: flex;
1939
- align-items: center;
1940
- overflow: visible!important;
1941
-
1942
- &--notWindow {
1943
- padding: rem(20) rem(30) rem(20);
1944
- margin-left: -1.075rem;
1945
- margin-right: -0.575rem;
1946
- margin-bottom: 0;
1947
- }
1948
-
1949
- ul {
1950
- width: auto;
1951
- border: none;
1952
- li {
1953
- a {
1954
- padding: 0 0 rem(10);
1955
- margin: 0 rem(30) 0 0;
1956
- position: relative;
1957
- line-height: rem(16);
1958
- border: none;
1959
- color: $secondary-color;
1960
- transition: color .3s ease;
1961
- font-size: rem(14);
1962
- font-weight: 400;
1963
- }
1964
- &.is-active {
1965
- a {
1966
- color: $main-text;
1967
- &:after {
1968
- content: '';
1969
- display: block;
1970
- position: absolute;
1971
- width: 100%;
1972
- height: 2px;
1973
- background-color: $img-main-color;
1974
- bottom: 0;
1975
- left: 0;
1976
- }
1977
- }
1978
- }
1979
- }
1980
- }
1981
- }
1982
-
1983
- &__canva {
1984
- margin: 0 0 0 rem(30);
1985
- }
1986
-
1987
- &__tabsEdit {
1988
- > .column {
1989
- padding: 0!important;
1990
- }
1991
- }
1992
-
1993
- &__tabsFirst {
1994
- height: 100vh;
1995
-
1996
- &--window {
1997
- height: auto;
1998
- display: flex;
1999
- justify-content: flex-start;
2000
- }
2001
-
2002
- &__upload {
2003
- margin: rem(28) 0 0 0;
2004
- padding: 0;
2005
- max-width: 33.3%;
2006
- }
2007
-
2008
- &__list {
2009
- padding: 0;
2010
- margin: rem(28) 0 0 rem(60);
2011
- &--upload {
2012
- margin: rem(28) 0 0 rem(48);
2013
- }
2014
- //height: calc(100vh - 70px);
2015
- //height: 100vh;
2016
- }
2017
- }
2018
-
2019
- @media screen and (max-width: 768px) {
2020
- .img-tabs__tabsFirst__upload {
2021
- margin-right: 0;
2022
- margin-bottom: 0;
2023
- margin-top: 20px!important;
2024
- }
2025
- }
2026
-
2027
- &__tabsSecond {
2028
- min-height: 100vh !important;
2029
- margin-left: 0px;
2030
- margin-right: 0px;
2031
- margin-bottom: 0px;
2032
-
2033
- .column {
2034
- padding: 0.75rem 0 0.75rem 0;
2035
- }
2116
+ img {
2117
+ position: absolute;
2118
+ top: 50%;
2119
+ left: 50%;
2120
+ transform: translate(-50%, -50%);
2121
+ max-width: 100%!important;
2122
+ max-height: 100%;
2123
+ object-fit: contain;
2124
+ width: auto!important;
2125
+ height: auto;
2036
2126
  }
2127
+ }
2037
2128
 
2038
- &__tabsThird {
2039
- min-height: 100vh !important;
2040
- margin-left: 0px;
2041
- margin-right: 0px;
2042
- margin-bottom: 0px;
2043
2129
 
2044
- .column {
2045
- padding: 0.75rem 0 0.75rem 0;
2046
- }
2130
+ .cdk-drag-preview {
2131
+ box-sizing: border-box;
2132
+ border-radius: 4px;
2133
+ box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
2134
+ 0 8px 10px 1px rgba(0, 0, 0, 0.14),
2135
+ 0 3px 14px 2px rgba(0, 0, 0, 0.12);
2136
+ img {
2137
+ width: 100%!important;
2138
+ height: auto!important;
2047
2139
  }
2048
2140
  }
2049
2141
 
2050
- @media screen and (max-width: 768px) {
2051
- .img-tabs__tabsFirst {
2052
- margin-top: 0;
2053
- }
2142
+ .cdk-drag-placeholder {
2143
+ opacity: 0;
2144
+ }
2054
2145
 
2055
- .img-tabs__tabsFirst--small {
2056
- height: 270px;
2057
- }
2146
+ .cdk-drag-animating {
2147
+ transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
2058
2148
  }
2059
2149
 
2060
- .wz-img-manager .img-tabs .columns.img-tabs__tabsFirst {
2061
- margin: 0;
2150
+ .list_img_selection.cdk-drop-list-dragging .img_box:not(.cdk-drag-placeholder) {
2151
+ transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
2062
2152
  }
2063
- .img-upload {
2064
- position: relative;
2065
- background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='3' ry='3' stroke='%2352AECD' stroke-width='2' stroke-dasharray='4%2c 8' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
2153
+
2154
+ .trash {
2155
+ display: none!important;
2156
+ }
2157
+ $default-color-p-alert: #1e5568;
2158
+ $success-color-p-alert: #11552e;
2159
+ $warning-color-p-alert: #3a0505;
2160
+ $primary-button: #e95656;
2161
+ $link-color: #52aecd;
2162
+ $green-color: #2ecc71;
2163
+
2164
+ .wz-alert {
2165
+ width: 100%;
2166
+ background-color: transparentize($link-color, 0.85);
2167
+ color: $link-color;
2066
2168
  border-radius: 3px;
2067
- &:before {
2068
- content: '';
2069
- display: block;
2070
- padding-top: 110.82%;
2071
- }
2072
- &--small {
2073
- &:before {
2074
- padding-top: 202px;
2169
+ display: flex;
2170
+ flex-wrap: nowrap;
2171
+ justify-content: space-between;
2172
+ padding: 20px;
2173
+ &.success {
2174
+ background-color: transparentize($green-color, 0.85);
2175
+ p {
2176
+ color: $success-color-p-alert;
2177
+ > * {
2178
+ color: $success-color-p-alert;
2179
+ }
2075
2180
  }
2076
- .img-upload {
2077
- &__container {
2078
- .blueColor {
2079
- img {
2080
- min-width: rem(30);
2081
- }
2082
- }
2083
- &__or {
2084
- margin: rem(10) 0;
2085
- }
2086
- &__text {
2087
- padding: rem(8) rem(20);
2088
- }
2181
+ i {
2182
+ color: $green-color;
2183
+ }
2184
+ }
2185
+ &.warning {
2186
+ background-color: transparentize($primary-button, 0.85);
2187
+ p {
2188
+ color: $warning-color-p-alert;
2189
+ > * {
2190
+ color: $warning-color-p-alert;
2089
2191
  }
2090
2192
  }
2193
+ i {
2194
+ color: $primary-button;
2195
+ }
2091
2196
  }
2092
- &__container {
2093
- position: absolute;
2094
- top: 0;
2197
+ p {
2198
+ width: 100%;
2199
+ font-size: rem(14);
2200
+ line-height: rem(25);
2201
+ margin: 0;
2202
+ padding: 0;
2203
+ color: $default-color-p-alert;
2204
+ > * {
2205
+ color: $default-color-p-alert;
2206
+ }
2207
+ }
2208
+ i {
2209
+ width: auto;
2210
+ margin: 0 10px 0 0;
2211
+ color: inherit;
2212
+ font-size: rem(14);
2213
+ line-height: rem(25);
2214
+ }
2215
+ }
2216
+ .wz-img-manager {
2217
+
2218
+ &__selectionHandler {
2219
+ margin-top: -50px;
2220
+ }
2221
+
2222
+ &__module {
2223
+ position: fixed;
2224
+ bottom: 0;
2095
2225
  left: 0;
2096
2226
  width: 100%;
2097
- height: 100%;
2098
- display: flex;
2099
- flex-wrap: wrap;
2100
- flex-direction: column;
2101
- justify-content: center;
2102
- align-items: center;
2103
- &__loader {
2227
+ height: 0;
2228
+ transition: height .3s ease;
2229
+ z-index: 2147483647; // snackbar 10
2230
+ transform: translateZ(0);
2231
+
2232
+ &:before {
2233
+ content: '';
2234
+ display: block;
2104
2235
  position: absolute;
2105
- top: 50%;
2106
- left: 50%;
2107
- transform: translate(-50%,-50%);
2108
- max-width: 300px;
2109
- max-height: 300px;
2110
- display: flex;
2111
- flex-wrap: wrap;
2112
- flex-direction: column;
2113
- justify-content: center;
2114
- align-items: center;
2236
+ top: 0;
2237
+ left: 0;
2238
+ width: 100%;
2239
+ height: 3px;
2240
+ background-color: $img-main-color;
2241
+ z-index: 999;
2115
2242
  }
2116
- .blueColor {
2117
- img {
2118
- min-width: rem(65);
2119
- display: block;
2120
- max-width: rem(65);
2121
- margin: 0 auto rem(15);
2122
- transform: translate(10px);
2123
- }
2124
- p {
2125
- color: $border-upload-color;
2126
- font-size: rem(16);
2127
- line-height: rem(19);
2128
- font-weight: 500;
2129
- margin: 0 auto rem(20);
2130
- }
2243
+
2244
+ &--closed {
2245
+ height: 0;
2131
2246
  }
2132
- &__or {
2133
- font-size: rem(14);
2134
- line-height: rem(16);
2135
- margin: 0 0 rem(20) !important;
2247
+
2248
+ // .wz-img-manager__module--small
2249
+ &--small {
2250
+ height: 320px;
2136
2251
  }
2137
- &__text {
2138
- display: flex;
2139
- align-items: center;
2140
- justify-content: center;
2252
+
2253
+ // .wz-img-manager__module--full
2254
+ &--full {
2255
+ height: calc(100vh - 50px);
2256
+ }
2257
+
2258
+ // .wz-img-manager__module--window
2259
+ &--window {
2260
+ position: relative;
2141
2261
  width: auto;
2142
- border-radius: 3px;
2143
- padding: rem(12) rem(20);
2144
- color: $white;
2145
- font-size: rem(14);
2146
- line-height: rem(16);
2147
- white-space: nowrap;
2148
- background-color: $img-green-color;
2149
- transition: .3s ease;
2150
- font-weight: 500;
2151
- cursor: pointer;
2152
- i {
2153
- margin: 0 rem(6) 0 0;
2154
- font-weight: 500;
2262
+ bottom: unset;
2263
+ left: unset;
2264
+ z-index: 29!important;
2265
+ height: auto!important;
2266
+ padding-bottom: 6.25rem;
2267
+
2268
+ &:before {
2269
+ content: none;
2270
+ height: 0px;
2155
2271
  }
2156
- &:hover, &:focus {
2157
- background-color: darken($img-green-color, 15%);
2272
+
2273
+ // .wz-img-manager__module--edit
2274
+ &--edit {
2275
+ .wrapper-tabs {
2276
+ display: none;
2277
+ }
2278
+ }
2279
+ }
2280
+
2281
+ // .wz-img-manager__module__header
2282
+ &__header {
2283
+ position: absolute;
2284
+ bottom: 100%;
2285
+ right: 30px;
2286
+ width: 101px;
2287
+
2288
+ // .wz-img-manager__module__header button
2289
+ button {
2290
+ width: 45px;
2291
+ height: 35px;
2292
+ background-color: $img-main-color;
2293
+ transition: background-color .3s ease;
2294
+ border: none;
2295
+ box-shadow: none;
2296
+ cursor: pointer;
2297
+ outline: none!important;
2298
+
2299
+ span {
2300
+ display: none;
2301
+ }
2302
+
2303
+ i {
2304
+ color: #fff;
2305
+ font-size: 20px;
2306
+ &:before {
2307
+ font-size: rem(20) !important;
2308
+ }
2309
+ }
2310
+
2311
+ &:hover, &:focus {
2312
+ background-color: darken($img-main-color, 15%);
2313
+ }
2314
+
2315
+ // .wz-img-manager__module__header button:first-child
2316
+ &:first-child {
2317
+ border-radius: 3px 0 0 0;
2318
+ }
2319
+
2320
+ // .wz-img-manager__module__header button:last-child
2321
+ &:last-child {
2322
+ margin: 0 0 0 1px;
2323
+ border-radius: 0 3px 0 0;
2324
+ }
2158
2325
  }
2159
2326
  }
2160
2327
  }
2161
2328
  }
2162
- //.wz-img-manager useful to keep the css priority
2163
- .wz-img-manager .wz-loader {
2164
- &.is-small {
2165
- right: 0;
2166
- left: 0;
2167
- top: 0;
2168
- transform: scale(0.6);
2169
- }
2170
- margin-bottom: rem(80);
2171
2329
 
2172
- @keyframes rotate {
2173
- 0% {
2174
- transform: rotate(0deg);
2175
- }
2176
- 50% {
2177
- transform: rotate(180deg);
2178
- }
2179
- 100% {
2180
- transform: rotate(360deg);
2330
+ .wz-img-manager__module .wz-block {
2331
+ background-color: #fff;
2332
+ box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
2333
+ padding: 0 0.575rem 0 1.075rem;
2334
+
2335
+ &--window {
2336
+ padding: rem(30);
2337
+ overflow: hidden;
2338
+ max-width: 1450px;
2339
+ margin: 0 auto;
2181
2340
  }
2182
- }
2341
+ }
2183
2342
 
2184
- @keyframes rotate2 {
2185
- 0% {
2186
- transform: rotate(0deg);
2187
- border-top-color: $img-color-loader;
2343
+ .wz-img-manager__module .wz-block:hover {
2344
+ box-shadow: 0 0.125rem 0.3125rem rgba(45, 62, 85, 0.2);
2345
+ }
2346
+
2347
+ .nwb-snack-bar .notification {
2348
+ z-index: 10002!important;
2349
+ }
2350
+
2351
+ .nwb-snack-bar .column {
2352
+ box-sizing: border-box;
2353
+ }
2354
+ .wz-img-manager .is-checkradio[type='checkbox'] {
2355
+ outline: 0 !important;
2356
+ & + label {
2357
+ font-size: rem(14);
2358
+ line-height: rem(24);
2359
+ color: $input-radio-color-label;
2360
+ padding-left: 26px;
2361
+ outline: 0 !important;
2362
+ &:before {
2363
+ width: 16px;
2364
+ height: 16px;
2365
+ border: 1px solid $border-color;
2366
+ top: 4px;
2367
+ transition: all 0.3s ease-in-out;
2188
2368
  }
2189
- 50% {
2190
- transform: rotate(180deg);
2191
- border-top-color: $img-color-loader2;
2369
+ &:after {
2370
+ top: 6.3px !important;
2371
+ left: 3px !important;
2372
+ width: 10px;
2373
+ height: 12px;
2374
+ border: none !important;
2375
+ background: transparent
2376
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='check' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16 fa-5x'%3E%3Cpath fill='%23ffffff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E")
2377
+ center center / 8px 8px no-repeat;
2378
+ transform: scale(1) translateY(0px) translateX(0px) rotate(0deg) !important;
2379
+ transition: all 0.3s ease-in-out;
2192
2380
  }
2193
- 100% {
2194
- transform: rotate(360deg);
2195
- border-top-color: $img-color-loader;
2381
+ &:hover,
2382
+ &:focus {
2383
+ &:before {
2384
+ border-color: $input-active-color !important;
2385
+ }
2386
+ }
2387
+ &:before,
2388
+ &:after {
2389
+ outline: 0 !important;
2196
2390
  }
2197
2391
  }
2198
-
2199
- @mixin loaderDivMixin {
2200
- border-radius: 50%;
2201
- padding: rem(8);
2202
- border: rem(2) solid transparent;
2203
- animation: rotate linear 3.5s infinite;
2204
- }
2205
-
2206
- .loader {
2207
- position: relative;
2208
- margin: rem(75) auto;
2209
- width: rem(150);
2210
- height: rem(150);
2211
- display: block;
2212
- overflow: hidden;
2213
- div {
2214
- height: 100%;
2392
+ &:hover {
2393
+ & + label {
2394
+ color: $input-radio-color-active-label;
2395
+ &:before {
2396
+ border-color: $input-active-color !important;
2397
+ }
2398
+ &:after {
2399
+ border-color: $white !important;
2400
+ }
2401
+ }
2402
+ &:not([disabled]) {
2403
+ & + label {
2404
+ &:before {
2405
+ border-color: $input-active-color !important;
2406
+ }
2407
+ }
2215
2408
  }
2216
2409
  }
2217
-
2218
- /* loader 1 */
2219
- .loader1,
2220
- .loader1 div {
2221
- @include loaderDivMixin;
2222
- border-top-color: $img-color-loader;
2223
- border-bottom-color: $img-color-loader2;
2410
+ &:checked + label {
2411
+ color: $input-radio-color-active-label;
2412
+ &:before {
2413
+ border: 1px solid $input-active-color;
2414
+ background-color: $input-active-color;
2415
+ transition: all 0.3s ease-in-out;
2416
+ }
2417
+ &:after {
2418
+ left: 7px;
2419
+ top: 8px;
2420
+ transition: all 0.3s ease-in-out;
2421
+ }
2224
2422
  }
2423
+ }
2225
2424
 
2226
- div:hover {
2227
- animation-play-state: paused;
2425
+ .wz-img-manager .field {
2426
+ &__row {
2427
+ min-width: 100%;
2428
+ margin: 0 0 10px;
2228
2429
  }
2229
-
2230
- .loader,
2231
- .loader * {
2232
- will-change: transform;
2430
+ &--nowrap {
2431
+ display: inline-block;
2432
+ width: auto;
2433
+ min-width: 0;
2434
+ margin: 0 10px 10px 0;
2435
+ .field {
2436
+ &__row {
2437
+ width: auto;
2438
+ display: inline-block;
2439
+ margin: 0;
2440
+ }
2441
+ }
2233
2442
  }
2234
-
2235
- p {
2236
- margin-top: -50px;
2237
- font-weight: 500;
2443
+ &.alone {
2444
+ .is-checkradio[type='checkbox'] {
2445
+ & + label {
2446
+ padding: 0;
2447
+ &:before {
2448
+ border-width: 1px;
2449
+ width: 16px;
2450
+ height: 16px;
2451
+ border-radius: 2px;
2452
+ }
2453
+ }
2454
+ &:checked + label {
2455
+ &:after {
2456
+ top: 7px;
2457
+ transform: scale(1.1) translateY(1px) translateX(6px) rotate(45deg);
2458
+ }
2459
+ }
2460
+ }
2238
2461
  }
2239
2462
  }
2240
2463
  // .pexels-lib
@@ -2423,616 +2646,442 @@ $tag-radius: rem(20px)!default;
2423
2646
  }
2424
2647
  }
2425
2648
  //.wz-img-manager useful to keep the css priority
2426
- .wz-img-manager .upload-list {
2427
- text-align: left;
2428
- font-size: 14px;
2429
- color: #23272B;
2430
-
2431
- &.smallDisplay {
2432
- .upload-list__box__cards__card {
2433
- width: 125px;
2649
+ .wz-img-manager .canva-btn {
2650
+ background-color: $img-main-color;
2651
+ border: 2px solid $img-main-color;
2652
+ padding: 0;
2653
+ height: fit-content;
2654
+ color: white;
2655
+ padding-left: rem(9);
2656
+ transition: .3s ease;
2657
+ margin: 0!important;
2658
+ &:hover, &:focus {
2659
+ border-color: darken($img-main-color, 15%);
2434
2660
  }
2435
- }
2661
+ > span {
2662
+ &:first-child {
2663
+ z-index: 2;
2664
+ position: relative;
2665
+ transform: translateX(7px);
2666
+ }
2667
+ }
2668
+ &__logo {
2669
+ z-index: 1;
2670
+ }
2671
+ }
2672
+
2673
+ .wz-img-manager .canva-btn .btnLoadingAnnimation {
2674
+ background-color: $img-main-color;
2675
+ cursor: not-allowed;
2676
+ }
2436
2677
 
2437
- &__scroll {
2438
- position: relative;
2439
- height: 100%;
2678
+ .wz-img-manager .canva.dropdown {
2679
+ z-index: 9999;
2680
+ .dropdown-menu {
2681
+ display: none!important;
2682
+ margin-top: 10px!important;
2683
+ &:before {
2684
+ content: '';
2685
+ display: block;
2686
+ position: absolute;
2687
+ bottom: 100%;
2688
+ left: 0;
2689
+ width: 100%;
2690
+ height: 10px;
2691
+ }
2692
+ }
2440
2693
 
2441
- &--smallDisplay {
2442
- max-height: 260px!important;
2694
+ .displayDropDownMenu {
2695
+ display: block!important;
2696
+ }
2443
2697
 
2444
- .upload-list__box {
2445
- margin-bottom: 20px;
2446
- }
2447
- }
2698
+ .dropdown-menu.dropDownShadow {
2699
+ padding-bottom: 0;
2700
+ padding-top: 0;
2701
+ margin-top: 1px;
2702
+ }
2448
2703
 
2449
- &--window {
2450
- max-height: none;
2451
- }
2704
+ .dropdown-menu {
2705
+ min-width: 300px;
2706
+ width: 300px;
2452
2707
 
2453
- .ng-scroll-content {
2454
- margin-left: 0.5rem !important;
2455
- margin-right: 0.5rem !important;
2456
- min-width: calc(100% - 1rem) !important;
2457
- width: calc(100% - 1rem) !important;
2708
+ .dropdown-content {
2709
+ padding-top: 0px;
2458
2710
  }
2459
- }
2460
-
2461
- &__box {
2462
- margin: 0 0.8rem 30px 0.3rem;
2463
- padding: 30px;
2464
- background-color: $img-gray-background;
2465
- margin-right: 12px;
2466
- margin-left: 5px;
2467
- border-radius: 3px;
2468
2711
 
2469
- &__container {
2712
+ .dropdown-item {
2713
+ color: $img-grey-color;
2470
2714
  display: flex;
2471
2715
  justify-content: space-between;
2472
2716
  align-items: center;
2717
+ padding: 12px 20px;
2718
+ margin: 0 0 5px;
2719
+ &:last-child {
2720
+ margin: 0;
2721
+ }
2473
2722
 
2474
2723
  p {
2475
- display: inline;
2724
+ margin: 0;
2725
+ line-height: rem(16);
2476
2726
  }
2477
2727
 
2478
- .dropdown {
2479
- vertical-align: baseline;
2480
- &:hover {
2481
- .dropdown-trigger i {
2482
- color: $img-main-color;
2483
- }
2484
- }
2485
- .dropdown-trigger {
2486
- display: inline;
2487
- i {
2488
- color: $img-secondary-text;
2489
- margin-left: 10px;
2490
- }
2491
- }
2728
+ p:first-child {
2729
+ color: #1D2A3B;
2730
+ font-size: rem(14);
2731
+ }
2492
2732
 
2493
- .dropdown-menu {
2494
- padding: 0;
2495
- width: 370px;
2496
- left: -190px;
2497
- margin-top: 3px;
2733
+ p:last-child {
2734
+ color: #526384;
2735
+ font-size: rem(14);
2736
+ }
2737
+ }
2498
2738
 
2499
- .dropdown-item {
2500
- display: flex;
2501
- justify-content: left;
2502
- align-items: center;
2739
+ .dropdown-item:hover {
2740
+ background-color: whitesmoke;
2741
+ cursor: pointer;
2742
+ color: black;
2743
+ }
2503
2744
 
2504
- p {
2505
- margin: 0;
2506
- }
2745
+ .dropdown-item.expectedSizes {
2746
+ font-weight: 500;
2747
+ }
2507
2748
 
2508
- p:first-child {
2509
- color: $img-main-text;
2510
- font-size: 14px;
2511
- }
2749
+ .dropdownTitle {
2750
+ font-size: 14px;
2751
+ background-color: $img-main-color;
2752
+ padding: rem(9.5) 0;
2753
+ text-align: center;
2512
2754
 
2513
- p:last-child {
2514
- color: $img-green-color;
2515
- font-size: 14px;
2516
- margin-left: 10px;
2517
- }
2518
- }
2519
- }
2755
+ p {
2756
+ font-size: 14px;
2757
+ color: white;
2758
+ margin: 0;
2759
+ font-weight: 500;
2520
2760
  }
2521
2761
  }
2522
2762
 
2523
- &__cards {
2524
- padding-top: 15px;
2525
- margin-left: 5px;
2526
- display: flex;
2527
- justify-content: left;
2528
- flex-wrap: wrap;
2529
- align-items: center;
2530
- margin-right: -9px;
2531
- width: calc(100% + 24px);
2532
- transform: translateX(-12px);
2533
- &__card {
2534
- width: 198px;
2535
- margin: 0 12px 12px;
2536
- & > * {
2537
- width: 100%;
2538
- }
2539
-
2540
- &__btnBox {
2541
- text-align: center;
2542
- margin: rem(10) auto 0;
2543
-
2544
- &__btn {
2545
- height: 30px;
2546
- width: 30px;
2547
- font-size: 14px!important;
2548
-
2549
- cursor: default;
2763
+ .infoItem {
2764
+ padding: 18px 20px 11px 20px;
2765
+ line-height: 1.5;
2766
+ font-weight: 500;
2550
2767
 
2551
- &:focus {
2552
- box-shadow: none;
2553
- }
2554
- }
2555
- }
2768
+ p {
2769
+ margin: 0;
2770
+ font-size: rem(16);
2771
+ line-height: rem(19);
2772
+ font-weight: 500;
2556
2773
  }
2557
2774
  }
2558
- }
2559
- }
2560
-
2561
- @media screen and (max-width: 768px) {
2562
- .wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .upload-list__scroll {
2563
- max-height: none!important;
2564
2775
 
2565
- .ng-scroll-content {
2566
- margin: 0 !important;
2567
- min-width: 100%!important;
2568
- width: 100%!important;
2776
+ .dropdown-item-wrapper {
2777
+ border: 1px solid #DEE2ED;
2778
+ border-radius: 3px;
2779
+ margin: 0 20px 5px 20px;
2569
2780
  }
2570
2781
  }
2571
2782
  }
2572
- .mosaic {
2783
+
2784
+ .noTooltip .tooltip.is-tooltip-left:hover::before, .noTooltip .tooltip.is-tooltip-left:hover:not(.is-loading)::after {
2785
+ display: none;
2786
+ }
2787
+ .wz-img-manager .wz-table {
2573
2788
  width: 100%;
2574
- display: flex;
2575
- flex-wrap: wrap;
2576
- position: relative;
2577
- min-height: rem(512);
2578
2789
 
2579
- &--displayPexelsImg {
2580
- min-height: unset;
2581
- }
2790
+ &__head {
2791
+ @include flexbox();
2792
+ @include flex-flow(row nowrap);
2793
+ width: 100%;
2794
+ border-top: 1px solid $textarea-border-color;
2795
+ border-bottom: 1px solid $textarea-border-color;
2796
+ background-color: $gray-background;
2582
2797
 
2583
- &:not(.fullSize) {
2584
- width: calc(100% + 24px);
2585
- transform: translateX(-12px);
2586
- .mosaic__container__cards {
2587
- padding-bottom: 40px;
2588
- > * {
2589
- width: calc(25% - 24px);
2590
- margin: 0 12px rem(24) 12px;
2591
- @include media('>=desktop','<1300px') {
2592
- width: calc(33.33% - 24px);
2593
- margin: 0 12px rem(24) 12px;
2594
- }
2595
- }
2596
- }
2597
- &.small {
2598
- min-height: 0;
2599
- .mosaic__container__loader {
2600
- top: 0;
2601
- transform: translateX(-50%);
2602
- max-height: 200px;
2603
- }
2604
- .mosaic {
2605
- &__container {
2606
- &__cards {
2607
- padding-bottom: 40px;
2608
- > * {
2609
- width: calc(12.5% - 24px);
2610
- margin: 0 12px rem(24) 12px;
2611
- @include media('>=1400px','<1600px') {
2612
- width: calc(14% - 24px);
2613
- margin: 0 12px rem(24) 12px;
2614
- }
2615
- @include media('>=1200px','<1400px') {
2616
- width: calc(16.66% - 24px);
2617
- margin: 0 12px rem(24) 12px;
2618
- }
2619
- @include media('>=desktop','<1200px') {
2620
- width: calc(20% - 24px);
2621
- margin: 0 12px rem(24) 12px;
2622
- }
2623
- }
2624
- }
2798
+ &__cell {
2799
+ @include flexbox();
2800
+ @include flex(1);
2801
+ padding: 15px 20px;
2802
+ font-size: 14px;
2803
+ line-height: 20px;
2804
+ color: $main-text;
2805
+ font-weight: 600;
2806
+
2807
+ &--checkbox {
2808
+ @include flex(none);
2809
+ width: 80px;
2810
+ padding: 10px 20px 6px 20px;
2811
+ > * {
2812
+ transform: translateX(15px);
2625
2813
  }
2626
2814
  }
2627
- }
2628
- }
2629
- &.fullSize {
2630
- width: calc(100% + 24px);
2631
- transform: translateX(-12px);
2632
- @include media('<420px') {
2633
- width: 100%;
2634
- transform: none;
2635
- }
2636
- .mosaic__container__cards {
2637
- > * {
2638
- width: calc(16.66% - 24px);
2639
- margin: 0 12px rem(24) 12px;
2640
- @include media('>=1400px','<1600px') {
2641
- width: calc(20% - 24px);
2642
- margin: 0 12px rem(24) 12px;
2643
- }
2644
- @include media('>=desktop','<1400px') {
2645
- width: calc(25% - 24px);
2646
- margin: 0 12px rem(24) 12px;
2815
+
2816
+ &__search {
2817
+ color: $main-text;
2818
+ padding-right: 23px;
2819
+ transition: background-image 0.3s ease-in-out;
2820
+ cursor: text;
2821
+
2822
+ &:hover {
2823
+ color: $main-text;
2647
2824
  }
2648
- @include media('>=tablet','<desktop') {
2649
- width: calc(33.33% - 24px);
2650
- margin: 0 12px rem(24) 12px;
2825
+
2826
+ &--idle {
2827
+ background: transparent
2828
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort' viewBox='0 0 320 512' class='svg-inline--fa fa-sort fa-w-10 fa-7x'%3E%3Cpath fill='currentColor' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z'/%3E%3C/svg%3E")
2829
+ center right / 14px 14px no-repeat;
2830
+ transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
2831
+ cursor: pointer;
2832
+
2833
+ &:hover {
2834
+ transition: color 0.3s ease-in-out;
2835
+ }
2651
2836
  }
2652
- @include media('>=400px','<tablet') {
2653
- width: calc(50% - 24px);
2654
- margin: 0 12px rem(24) 12px;
2837
+
2838
+ &--up {
2839
+ background: transparent
2840
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort-up' viewBox='0 0 320 512' class='svg-inline--fa fa-sort-up fa-w-10 fa-5x'%3E%3Cpath fill='currentColor' d='M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z'/%3E%3C/svg%3E")
2841
+ center right / 14px 14px no-repeat;
2842
+ transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
2843
+ cursor: pointer;
2844
+
2845
+ &:hover {
2846
+ transition: color 0.3s ease-in-out;
2847
+ }
2655
2848
  }
2656
- @include media('<420px') {
2657
- width: 100%;
2658
- margin: 0 0 15px;
2849
+
2850
+ &--down {
2851
+ background: transparent
2852
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort-down' viewBox='0 0 320 512' class='svg-inline--fa fa-sort-down fa-w-10 fa-7x'%3E%3Cpath fill='currentColor' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z'/%3E%3C/svg%3E")
2853
+ center right / 14px 14px no-repeat;
2854
+ transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
2855
+ cursor: pointer;
2856
+
2857
+ &:hover {
2858
+ transition: color 0.3s ease-in-out;
2859
+ }
2659
2860
  }
2660
2861
  }
2661
- }
2662
- &.small {
2663
- .mosaic__container__loader {
2664
- top: 0;
2665
- transform: translateX(-50%);
2666
- max-height: 200px;
2862
+
2863
+ &--center--left {
2864
+ @include align-items(center);
2865
+ @include justify-content(left);
2667
2866
  }
2668
- .mosaic {
2669
- &__search {
2670
- display: none;
2671
- }
2672
- &__container {
2673
- &__cards {
2674
- > * {
2675
- width: calc(10% - 24px);
2676
- margin: 0 12px rem(24) 12px;
2677
- @include media('>=1400px','<1600px') {
2678
- width: calc(11.11% - 24px);
2679
- margin: 0 12px rem(24) 12px;
2680
- }
2681
- @include media('>=desktop','<1400px') {
2682
- width: calc(12.5% - 24px);
2683
- margin: 0 12px rem(24) 12px;
2684
- }
2685
- @include media('>=tablet','<desktop') {
2686
- width: calc(20% - 24px);
2687
- margin: 0 12px rem(24) 12px;
2688
- }
2689
- @include media('>=500px','<tablet') {
2690
- width: calc(33.33% - 24px);
2691
- margin: 0 12px rem(24) 12px;
2692
- }
2693
- @include media('<500px') {
2694
- width: calc(50% - 24px);
2695
- margin: 0 12px rem(24) 12px;
2696
- }
2697
- }
2698
- }
2699
- }
2867
+ &--center--center {
2868
+ @include align-items(center);
2869
+ @include justify-content(center);
2870
+ }
2871
+ &--center--right {
2872
+ @include align-items(center);
2873
+ @include justify-content(right);
2700
2874
  }
2701
2875
  }
2702
2876
  }
2877
+
2878
+ // TODO delete __search
2703
2879
  &__search {
2704
- width: calc(100% - 24px);
2705
- margin: 0 auto rem(20);
2880
+ height: 100px;
2881
+ margin-top: 10px;
2706
2882
  }
2707
- &__pagination {
2883
+
2884
+ &__body {
2708
2885
  width: 100%;
2709
- }
2710
- &__container {
2886
+ margin-top: -10px;
2887
+
2711
2888
  &__loader {
2712
- position: absolute;
2713
- top: 50%;
2714
- left: 50%;
2715
- transform: translate(-50%,-50%);
2716
- max-width: 300px;
2717
- max-height: 300px;
2718
- display: flex;
2719
- flex-wrap: wrap;
2720
- flex-direction: column;
2721
- justify-content: center;
2722
- align-items: center;
2889
+ position: relative;
2890
+ min-height: 200px;
2723
2891
  }
2724
- &__cards {
2892
+
2893
+ &__line {
2894
+ @include flexbox();
2895
+ @include flex-flow(row nowrap);
2725
2896
  width: 100%;
2726
- display: flex;
2727
- flex-wrap: wrap;
2728
- &--padding {
2729
- padding-right: 20px;
2730
- }
2731
- }
2732
- }
2733
- }
2734
- //.wz-img-manager useful to keep the css priority
2735
- .wz-img-manager .table-view {
2897
+ border-bottom: 1px solid $textarea-border-color;
2736
2898
 
2899
+ &__cell {
2900
+ @include flexbox();
2901
+ @include flex(1);
2902
+ padding: 20px 20px 20px 20px;
2903
+ font-size: 14px;
2904
+ line-height: 25px;
2905
+ color: $secondary-color;
2737
2906
 
2738
- &__row {
2739
- td {
2740
- vertical-align: middle;
2907
+ &--checkbox {
2908
+ @include flexbox();
2909
+ @include flex(none);
2910
+ @include justify-content(center);
2911
+ @include align-items(center);
2912
+ width: 80px;
2913
+ padding: 8px 20px;
2741
2914
  }
2742
- &__container {
2743
- display: flex;
2744
- align-items: center;
2745
- width: 100%;
2746
-
2747
- &__imgContainer {
2748
- margin-right: 20px;
2749
- position: relative;
2750
- display: block;
2751
- min-width: 60px;
2752
- cursor: pointer;
2753
-
2754
- &::before {
2755
- content: '';
2756
- display: block;
2757
- padding-top: 100%;
2758
- }
2759
-
2760
- &__img {
2761
- margin: 0!important;
2762
- position: absolute;
2763
- top: 50%;
2764
- left: 50%;
2765
- max-width: 100%;
2766
- max-height:100%;
2767
- width: auto;
2768
- height: auto;
2769
- transform: translate(-50%, -50%);
2770
- object-fit: contain;
2771
- }
2772
-
2773
- &.imgSelected {
2774
-
2775
- &:after {
2776
- z-index: 1000;
2777
- content: '';
2778
- display: block;
2779
- position: absolute;
2780
- width: 100%;
2781
- height: 4px;
2782
- background-color: $img-main-color;
2783
- bottom: 0;
2784
- left: 0;
2785
- transform: translateZ(0);
2786
- }
2787
- }
2788
-
2789
- &__overlay {
2790
- position: absolute;
2791
- top: 25%;
2792
- left: 25%;
2793
- height: 100%;
2794
- width: 100%;
2795
-
2796
- i {
2797
- font-size: 30px;
2798
- color: grey;
2799
- }
2800
- }
2801
- }
2802
2915
 
2803
- &__name {
2804
- display: inline-block;
2805
- background-color: transparent;
2806
- white-space: nowrap;
2807
- overflow: hidden;
2808
- text-overflow: ellipsis;
2809
- color: $main-text;
2810
- font-size: 14px;
2811
- cursor: initial;
2812
- }
2916
+ &--center--left {
2917
+ @include align-items(center);
2918
+ @include justify-content(left);
2813
2919
  }
2814
- }
2815
-
2816
- &__dropdown-options {
2817
- &__label {
2818
- &--disable {
2819
- cursor: not-allowed;
2820
- i {
2821
- cursor: not-allowed;
2822
- }
2823
- }
2920
+ &--center--center {
2921
+ @include align-items(center);
2922
+ @include justify-content(center);
2923
+ }
2924
+ &--center--right {
2925
+ @include align-items(center);
2926
+ @include justify-content(right);
2824
2927
  }
2928
+ }
2825
2929
  }
2930
+ }
2826
2931
  }
2932
+ .wz-img-manager .wz-pagination {
2933
+ width: 100%;
2934
+ padding: 0;
2827
2935
 
2828
- .wz-img-manager .table-view .checked {
2829
- color: $img-main-color;
2830
- }
2936
+ &__wrapper {
2937
+ @include flexbox();
2938
+ @include justify-content(flex-end);
2939
+ padding: 0 17px 0 0;
2831
2940
 
2832
- .wz-img-manager .table-view .checked.disabled {
2833
- color: grey;
2834
- }
2941
+ &__page {
2942
+ margin-right: 30px;
2943
+ padding: 4px 0 5px 0;
2835
2944
 
2945
+ @include flexbox();
2836
2946
 
2837
- .wz-img-manager .table-view .disabled {
2838
- cursor: not-allowed;
2839
- }
2947
+ p {
2948
+ margin: 4px 11px 4px 0;
2949
+ font-size: 14px;
2950
+ line-height: 24px;
2951
+ color: $second-color;
2952
+ }
2840
2953
 
2954
+ select {
2955
+ width: 50px;
2956
+ font-size: 14px;
2957
+ line-height: 24px;
2958
+ color: $second-color;
2959
+ padding: 3px 26px 3px 15px;
2960
+ border: 1px solid $border-form;
2961
+ border-radius: 3px;
2962
+ -webkit-appearance: none;
2963
+ -moz-appearance: none;
2964
+ text-indent: 0;
2965
+ text-overflow: '';
2966
+ background: transparent
2967
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort-down' viewBox='0 0 320 512' class='svg-inline--fa fa-sort-down fa-w-10 fa-7x'%3E%3Cpath fill='%23526384' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z'/%3E%3C/svg%3E")
2968
+ top 8px right 12px / 10px 10px no-repeat;
2969
+ }
2841
2970
 
2842
- .wz-img-manager .is-wizi-hoverable .dropdown-trigger:before {
2843
- width: 5rem;
2844
- }
2971
+ select::-ms-expand {
2972
+ display: none;
2973
+ }
2974
+ }
2845
2975
 
2846
- .table-view .wzImgMngInput {
2847
- border-radius: 3px;
2848
- }
2976
+ &__elements {
2977
+ margin-right: 30px;
2849
2978
 
2850
- .table-view .wzImgMngInput:active.desabled, .table-view .wzImgMngInput:focus.desabled {
2851
- border: solid transparent 1px;
2852
- }
2979
+ p {
2980
+ margin: 8px 0 9px 0;
2981
+ font-size: 14px;
2982
+ line-height: 24px;
2983
+ color: $dark;
2984
+ }
2985
+ }
2853
2986
 
2854
- .wz-img-manager .table-view .dropdown-menu {
2855
- left: -165px;
2856
- }
2987
+ &__arrows {
2988
+ @include flexbox();
2857
2989
 
2858
- .grey {
2859
- color: $img-grey-color;
2860
- }
2861
- image-cropper {
2862
- max-height: 60vh;
2863
- }.img-editor__infoSection__propertySEO__tooltips {
2864
- i {
2865
- font-size: rem(16);
2866
- color: $main-text;
2867
- }
2868
- }$default-color-p-alert: #1e5568;
2869
- $success-color-p-alert: #11552e;
2870
- $warning-color-p-alert: #3a0505;
2871
- $primary-button: #e95656;
2872
- $link-color: #52aecd;
2873
- $green-color: #2ecc71;
2990
+ &__arrow {
2991
+ width: 40px;
2992
+ height: 40px;
2993
+ padding: 9px 14px;
2994
+ border: 1px solid $border-form;
2995
+ border-radius: 3px;
2996
+ cursor: pointer;
2997
+ display: flex;
2998
+ align-items: center;
2874
2999
 
2875
- .wz-alert {
2876
- width: 100%;
2877
- background-color: transparentize($link-color, 0.85);
2878
- color: $link-color;
2879
- border-radius: 3px;
2880
- display: flex;
2881
- flex-wrap: nowrap;
2882
- justify-content: space-between;
2883
- padding: 20px;
2884
- &.success {
2885
- background-color: transparentize($green-color, 0.85);
2886
- p {
2887
- color: $success-color-p-alert;
2888
- > * {
2889
- color: $success-color-p-alert;
2890
- }
2891
- }
2892
- i {
2893
- color: $green-color;
2894
- }
2895
- }
2896
- &.warning {
2897
- background-color: transparentize($primary-button, 0.85);
2898
- p {
2899
- color: $warning-color-p-alert;
2900
- > * {
2901
- color: $warning-color-p-alert;
2902
- }
2903
- }
2904
- i {
2905
- color: $primary-button;
2906
- }
2907
- }
2908
- p {
2909
- width: 100%;
2910
- font-size: rem(14);
2911
- line-height: rem(25);
2912
- margin: 0;
2913
- padding: 0;
2914
- color: $default-color-p-alert;
2915
- > * {
2916
- color: $default-color-p-alert;
2917
- }
2918
- }
2919
- i {
2920
- width: auto;
2921
- margin: 0 10px 0 0;
2922
- color: inherit;
2923
- font-size: rem(14);
2924
- line-height: rem(25);
2925
- }
2926
- }
2927
- .wz-img-manager .is-checkradio[type='checkbox'] {
2928
- outline: 0 !important;
2929
- & + label {
2930
- font-size: rem(14);
2931
- line-height: rem(24);
2932
- color: $input-radio-color-label;
2933
- padding-left: 26px;
2934
- outline: 0 !important;
2935
- &:before {
2936
- width: 16px;
2937
- height: 16px;
2938
- border: 1px solid $border-color;
2939
- top: 4px;
2940
- transition: all 0.3s ease-in-out;
2941
- }
2942
- &:after {
2943
- top: 6.3px !important;
2944
- left: 3px !important;
2945
- width: 10px;
2946
- height: 12px;
2947
- border: none !important;
2948
- background: transparent
2949
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='check' viewBox='0 0 512 512' class='svg-inline--fa fa-check fa-w-16 fa-5x'%3E%3Cpath fill='%23ffffff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E")
2950
- center center / 8px 8px no-repeat;
2951
- transform: scale(1) translateY(0px) translateX(0px) rotate(0deg) !important;
2952
- transition: all 0.3s ease-in-out;
2953
- }
2954
- &:hover,
2955
- &:focus {
2956
- &:before {
2957
- border-color: $input-active-color !important;
2958
- }
2959
- }
2960
- &:before,
2961
- &:after {
2962
- outline: 0 !important;
2963
- }
2964
- }
2965
- &:hover {
2966
- & + label {
2967
- color: $input-radio-color-active-label;
2968
- &:before {
2969
- border-color: $input-active-color !important;
2970
- }
2971
- &:after {
2972
- border-color: $white !important;
2973
- }
2974
- }
2975
- &:not([disabled]) {
2976
- & + label {
2977
- &:before {
2978
- border-color: $input-active-color !important;
3000
+ span {
3001
+ display: inline-block;
3002
+ width: 10px;
3003
+ height: 15px;
3004
+ }
3005
+
3006
+ &--left {
3007
+ margin-right: 10px;
3008
+
3009
+ span {
3010
+ background: transparent
3011
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='chevron-left' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-left fa-w-10 fa-7x'%3E%3Cpath fill='%23526384' d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'/%3E%3C/svg%3E")
3012
+ center center / 10px 12px no-repeat;
3013
+ }
3014
+ }
3015
+
3016
+ &--right {
3017
+ span {
3018
+ background: transparent
3019
+ url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='chevron-right' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-right fa-w-10 fa-7x'%3E%3Cpath fill='%23526384' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'/%3E%3C/svg%3E")
3020
+ center center / 10px 12px no-repeat;
3021
+ }
3022
+ }
3023
+
3024
+ &--disabled {
3025
+ border-color: $background-color;
3026
+ background-color: $background-color;
2979
3027
  }
2980
3028
  }
2981
3029
  }
2982
3030
  }
2983
- &:checked + label {
2984
- color: $input-radio-color-active-label;
2985
- &:before {
2986
- border: 1px solid $input-active-color;
2987
- background-color: $input-active-color;
2988
- transition: all 0.3s ease-in-out;
2989
- }
2990
- &:after {
2991
- left: 7px;
2992
- top: 8px;
2993
- transition: all 0.3s ease-in-out;
2994
- }
2995
- }
2996
3031
  }
2997
-
2998
- .wz-img-manager .field {
2999
- &__row {
3000
- min-width: 100%;
3001
- margin: 0 0 10px;
3032
+ .wz-img-manager .input-search.field {
3033
+ padding: 10px 20px;
3034
+ background-color: $gray-background;
3035
+ &.small-padding {
3036
+ padding: 10px 20px;
3002
3037
  }
3003
- &--nowrap {
3004
- display: inline-block;
3005
- width: auto;
3006
- min-width: 0;
3007
- margin: 0 10px 10px 0;
3008
- .field {
3009
- &__row {
3010
- width: auto;
3011
- display: inline-block;
3012
- margin: 0;
3013
- }
3038
+ .input,
3039
+ .input:focus,
3040
+ .input.is-focused,
3041
+ .input:active,
3042
+ .input.is-active {
3043
+ font-size: rem(14);
3044
+ color: $main-text;
3045
+ border: rem(1) solid $input-border-search;
3046
+ box-shadow: none;
3047
+ padding: rem(13.5) rem(20) rem(13.5) rem(48);
3048
+ border-radius: rem(3);
3049
+ margin: 0;
3050
+ height: auto;
3051
+ min-height: unset;
3052
+
3053
+ &::placeholder {
3054
+ color: $placeholder-color;
3055
+ font-weight: normal;
3014
3056
  }
3015
3057
  }
3016
- &.alone {
3017
- .is-checkradio[type='checkbox'] {
3018
- & + label {
3019
- padding: 0;
3020
- &:before {
3021
- border-width: 1px;
3022
- width: 16px;
3023
- height: 16px;
3024
- border-radius: 2px;
3025
- }
3026
- }
3027
- &:checked + label {
3028
- &:after {
3029
- top: 7px;
3030
- transform: scale(1.1) translateY(1px) translateX(6px) rotate(45deg);
3031
- }
3032
- }
3033
- }
3058
+
3059
+ .input:focus,
3060
+ .input.is-focused,
3061
+ .input:active,
3062
+ .input.is-active {
3063
+ border-color: $wizishop-blue;
3064
+ }
3065
+
3066
+ .icon {
3067
+ position: absolute;
3068
+ top: 50%;
3069
+ left: 20px;
3070
+ font-size: rem(18);
3071
+ transform: translateY(-50%);
3072
+ pointer-events: none;
3073
+ font-weight: 400;
3074
+ color: $placeholder-color;
3075
+ margin: 0;
3076
+ width: rem(18);
3077
+ height: rem(18);
3034
3078
  }
3035
3079
  }
3080
+
3081
+ .wz-img-manager .wz-img-manager__module:not(.wz-img-manager__module--window) .pexels-lib__search .input-search.field {
3082
+ padding: 0;
3083
+ background-color: transparent;
3084
+ }
3036
3085
  .wz-img-manager .dropdownWizi {
3037
3086
  padding: 10px;
3038
3087
 
@@ -3147,718 +3196,669 @@ $green-color: #2ecc71;
3147
3196
 
3148
3197
  .dropdownWizi:not(.is-hoverable) {
3149
3198
  cursor: not-allowed;
3150
- }.wz-img-manager .input-search.field {
3151
- padding: 10px 20px;
3152
- background-color: $gray-background;
3153
- &.small-padding {
3154
- padding: 10px 20px;
3155
- }
3156
- .input,
3157
- .input:focus,
3158
- .input.is-focused,
3159
- .input:active,
3160
- .input.is-active {
3161
- font-size: rem(14);
3162
- color: $main-text;
3163
- border: rem(1) solid $input-border-search;
3164
- box-shadow: none;
3165
- padding: rem(13.5) rem(20) rem(13.5) rem(48);
3166
- border-radius: rem(3);
3167
- margin: 0;
3168
- height: auto;
3169
- min-height: unset;
3199
+ }.wz-img-manager .img-editor {
3200
+ &__scroll {
3201
+ position: relative;
3202
+ height: 100%;
3170
3203
 
3171
- &::placeholder {
3172
- color: $placeholder-color;
3173
- font-weight: normal;
3204
+ &--full {
3205
+ max-height: calc(100vh - 90px)!important;
3206
+ min-height: calc(100vh - 90px) !important;
3207
+ }
3208
+
3209
+ &--smallDisplay {
3210
+ max-height: 275px!important;
3211
+ }
3212
+
3213
+ &--window {
3214
+ max-height: none;
3215
+ }
3216
+
3217
+ .ng-scroll-content {
3218
+ margin-left: 0 !important;
3219
+ margin-right: 0 !important;
3220
+ min-width: calc(100% - 1rem) !important;
3221
+ width: calc(100% - 1rem) !important;
3222
+ }
3174
3223
  }
3175
- }
3176
3224
 
3177
- .input:focus,
3178
- .input.is-focused,
3179
- .input:active,
3180
- .input.is-active {
3181
- border-color: $wizishop-blue;
3182
- }
3225
+ .columns {
3226
+ margin-right: 0.8rem;
3227
+ margin-left: rem(12);
3228
+ margin-top: 12px;
3229
+ margin-bottom: 0;
3230
+ width: calc(100% + 11px);
3183
3231
 
3184
- .icon {
3185
- position: absolute;
3186
- top: 50%;
3187
- left: 20px;
3188
- font-size: rem(18);
3189
- transform: translateY(-50%);
3190
- pointer-events: none;
3191
- font-weight: 400;
3192
- color: $placeholder-color;
3193
- margin: 0;
3194
- width: rem(18);
3195
- height: rem(18);
3196
- }
3197
- }
3232
+ .column {
3233
+ padding-top: 0;
3234
+ padding-bottom: 0px;
3235
+ }
3236
+ }
3237
+
3238
+ &__head-container {
3239
+ display: flex;
3240
+ justify-content: flex-end;
3241
+ align-items: center;
3242
+ margin: 30px 30px 20px 0;
3243
+
3244
+ &__btnGroup {
3245
+ margin-right: 13px;
3246
+ opacity: 0;
3247
+ visibility: hidden;
3248
+ transition: opacity .3s ease-in-out;
3249
+
3250
+ &__visible {
3251
+ opacity: 1;
3252
+ visibility: visible;
3253
+ }
3254
+
3255
+ &__removeBtn {
3256
+ margin-right: 13px;
3257
+ }
3258
+ }
3259
+
3260
+ &__close {
3261
+ cursor: pointer;
3262
+ font-size: 14px;
3263
+ color: $img-grey-color;
3264
+ line-height: 40px;
3265
+ }
3266
+ }
3267
+
3268
+ &__container {
3269
+ padding: 0.75rem!important;
3270
+ display:flex;
3271
+ justify-content: center;
3272
+ align-items: center;
3273
+ background-color: $img-gray-background;
3274
+ margin: 0;
3275
+ transform: translateY(-16px);
3276
+
3277
+ &__toolsContainer {
3278
+ display: flex;
3279
+ justify-content: center;
3280
+ align-items: center;
3281
+ margin-bottom: 50px;
3282
+
3283
+ &__tool {
3284
+ color: $img-second-color;
3285
+ margin-right: 30px;
3286
+ text-align: center;
3287
+ cursor: pointer;
3288
+
3289
+ p {
3290
+ margin: 0!important;
3291
+ color: $img-main-text;
3292
+ font-size: rem(12);
3293
+ line-height: rem(14);
3294
+ }
3295
+
3296
+ i {
3297
+ font-size: rem(18);
3298
+ margin: 0 0 10px;
3299
+ }
3300
+
3301
+ &--button {
3302
+ background-color: $img-green-color;
3303
+ color: $img-white!important;
3304
+ padding: 10px;
3305
+ border-radius: 3px;
3306
+ transition: .3s ease;
3307
+ white-space: nowrap;
3308
+ display: flex;
3309
+ justify-content: center;
3310
+ align-items: center;
3311
+ position: absolute;
3312
+ top: 80px;
3313
+ left: 50%;
3314
+ transform: translateX(-50%);
3315
+ height: 35px;
3316
+ margin: 0;
3317
+ &:hover, &:focus {
3318
+ background-color: darken($img-green-color, 15%);
3319
+ color: $img-white!important;
3320
+ }
3321
+ p {
3322
+ color: $white!important;
3323
+ }
3324
+ i {
3325
+ margin: 0 5px 0 0;
3326
+ }
3327
+ }
3328
+ &:hover {
3329
+ color: $img-main-color;
3330
+ }
3331
+
3332
+ > * {
3333
+ -webkit-touch-callout: none; /* iOS Safari */
3334
+ -webkit-user-select: none; /* Safari */
3335
+ -khtml-user-select: none; /* Konqueror HTML */
3336
+ -moz-user-select: none; /* Old versions of Firefox */
3337
+ -ms-user-select: none; /* Internet Explorer/Edge */
3338
+ user-select: none; /* Non-prefixed version, currently
3339
+ supported by Chrome, Edge, Opera and Firefox */
3340
+ }
3341
+ }
3198
3342
 
3199
- .wz-img-manager .wz-img-manager__module:not(.wz-img-manager__module--window) .pexels-lib__search .input-search.field {
3200
- padding: 0;
3201
- background-color: transparent;
3202
- }
3203
- .wz-img-manager .wz-pagination {
3204
- width: 100%;
3205
- padding: 0;
3343
+ &__RotationDropdown {
3344
+ min-width: 16rem;
3345
+ }
3346
+ }
3206
3347
 
3207
- &__wrapper {
3208
- @include flexbox();
3209
- @include justify-content(flex-end);
3210
- padding: 0 17px 0 0;
3348
+ &__name {
3349
+ font-size: 16px;
3350
+ max-width: 50%;
3351
+ color: $img-grey-color;
3352
+ text-align: center;
3353
+ white-space: nowrap;
3354
+ overflow: hidden;
3355
+ text-overflow: ellipsis;
3356
+ }
3211
3357
 
3212
- &__page {
3213
- margin-right: 30px;
3214
- padding: 4px 0 5px 0;
3358
+ .button {
3359
+ min-height: 35px;
3360
+ background-color: $img-primary-button;
3361
+ border-color: $img-primary-button-hover;
3362
+ color: #ffffff;
3363
+ }
3364
+ }
3215
3365
 
3216
- @include flexbox();
3366
+ &__image-cropper {
3367
+ --cropper-overlay-color: #f5f8fa;
3368
+ //--cropper-outline-color: #a5a5a573;
3369
+ padding-bottom: 30px;
3370
+ }
3217
3371
 
3218
- p {
3219
- margin: 4px 11px 4px 0;
3372
+ &__infoSection {
3220
3373
  font-size: 14px;
3221
- line-height: 24px;
3222
- color: $second-color;
3223
- }
3374
+ max-width: 360px;
3375
+ padding: 0;
3376
+ margin: 0 rem(30) 0 0;
3224
3377
 
3225
- select {
3226
- width: 50px;
3227
- font-size: 14px;
3228
- line-height: 24px;
3229
- color: $second-color;
3230
- padding: 3px 26px 3px 15px;
3231
- border: 1px solid $border-form;
3232
- border-radius: 3px;
3233
- -webkit-appearance: none;
3234
- -moz-appearance: none;
3235
- text-indent: 0;
3236
- text-overflow: '';
3237
- background: transparent
3238
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort-down' viewBox='0 0 320 512' class='svg-inline--fa fa-sort-down fa-w-10 fa-7x'%3E%3Cpath fill='%23526384' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z'/%3E%3C/svg%3E")
3239
- top 8px right 12px / 10px 10px no-repeat;
3240
- }
3378
+ &__propertyEditable {
3379
+ margin-bottom: 31px;
3380
+ p {
3381
+ margin-bottom: 12px;
3382
+ font-size: 14px;
3383
+ }
3384
+ input, button {
3385
+ width: 100%;
3386
+ height: 40px;
3387
+ border: 1px solid #DEE2ED;
3388
+ border-radius: 3px;
3389
+ color: $img-main-text;
3390
+ padding-left: 20px;
3391
+ padding-right: 20px;
3392
+ display: flex;
3393
+ justify-content: space-between;
3394
+ font-size: 14px;
3241
3395
 
3242
- select::-ms-expand {
3243
- display: none;
3244
- }
3245
- }
3396
+ &:hover {
3397
+ color: $img-main-color;
3398
+ border-color: $img-main-color;
3399
+ }
3400
+ }
3246
3401
 
3247
- &__elements {
3248
- margin-right: 30px;
3402
+ button {
3403
+ align-items: center;
3404
+ background-color: transparent;
3405
+ cursor: pointer;
3406
+ }
3249
3407
 
3250
- p {
3251
- margin: 8px 0 9px 0;
3252
- font-size: 14px;
3253
- line-height: 24px;
3254
- color: $dark;
3255
- }
3256
- }
3408
+ &__span, &__input {
3409
+ text-overflow: ellipsis;
3410
+ overflow: hidden;
3411
+ white-space: nowrap;
3412
+ }
3257
3413
 
3258
- &__arrows {
3259
- @include flexbox();
3414
+ &__span {
3415
+ color: $img-bleu-color;
3416
+ & + i {
3417
+ color: $img-bleu-color;
3418
+ font-weight: 600;
3419
+ }
3420
+ }
3260
3421
 
3261
- &__arrow {
3262
- width: 40px;
3263
- height: 40px;
3264
- padding: 9px 14px;
3265
- border: 1px solid $border-form;
3266
- border-radius: 3px;
3267
- cursor: pointer;
3268
- display: flex;
3269
- align-items: center;
3422
+ &__tooltips {
3423
+ margin-left: 10px;
3424
+ }
3425
+ }
3270
3426
 
3271
- span {
3272
- display: inline-block;
3273
- width: 10px;
3274
- height: 15px;
3427
+ &__property {
3428
+ &:nth-child(3), &:nth-child(4) {
3429
+ margin: 0;
3430
+ }
3431
+ p {
3432
+ font-size: 14px;
3433
+ display: inline-block;
3434
+ }
3435
+
3436
+ .mainColor {
3437
+ margin: 0!important;
3438
+ }
3439
+
3440
+ p:last-child {
3441
+ margin: 0 0 0 10px;
3442
+ color: #526384;
3443
+ }
3275
3444
  }
3276
3445
 
3277
- &--left {
3278
- margin-right: 10px;
3446
+ &__titleSEO {
3447
+ margin: 0 0 20px;
3279
3448
 
3280
- span {
3281
- background: transparent
3282
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='chevron-left' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-left fa-w-10 fa-7x'%3E%3Cpath fill='%23526384' d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'/%3E%3C/svg%3E")
3283
- center center / 10px 12px no-repeat;
3449
+ .mainColor {
3450
+ font-size: rem(18);
3451
+ font-weight: 500;
3284
3452
  }
3285
3453
  }
3286
3454
 
3287
- &--right {
3288
- span {
3289
- background: transparent
3290
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='chevron-right' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-right fa-w-10 fa-7x'%3E%3Cpath fill='%23526384' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z'/%3E%3C/svg%3E")
3291
- center center / 10px 12px no-repeat;
3455
+ &__propertySEO {
3456
+ margin-bottom: 12px;
3457
+ p {
3458
+ font-size: 14px;
3459
+ display: inline-block;
3460
+ margin: 0;
3461
+ }
3462
+
3463
+ .mainColor {
3464
+ & ~ p {
3465
+ margin-left: 10px;
3466
+ color: $img-green-color;
3467
+ }
3292
3468
  }
3293
3469
  }
3294
3470
 
3295
- &--disabled {
3296
- border-color: $background-color;
3297
- background-color: $background-color;
3471
+ &__divider {
3472
+ display: block;
3473
+ width: 100%;
3474
+ border-bottom: 2px dashed #EFF1F6;
3475
+ margin: 30px 0;
3298
3476
  }
3299
- }
3300
- }
3301
- }
3302
- }
3303
- .wz-img-manager .wz-table {
3304
- width: 100%;
3305
3477
 
3306
- &__head {
3307
- @include flexbox();
3308
- @include flex-flow(row nowrap);
3309
- width: 100%;
3310
- border-top: 1px solid $textarea-border-color;
3311
- border-bottom: 1px solid $textarea-border-color;
3312
- background-color: $gray-background;
3478
+ &__actions {
3479
+ height: 35px;
3313
3480
 
3314
- &__cell {
3315
- @include flexbox();
3316
- @include flex(1);
3317
- padding: 15px 20px;
3318
- font-size: 14px;
3319
- line-height: 20px;
3320
- color: $main-text;
3321
- font-weight: 600;
3481
+ &__cancel {
3482
+ margin-right: 19px;
3483
+ background-color: white;
3484
+ border-color: #dbdbdb;
3485
+ color: $img-main-text;
3486
+ }
3322
3487
 
3323
- &--checkbox {
3324
- @include flex(none);
3325
- width: 80px;
3326
- padding: 10px 20px 6px 20px;
3327
- > * {
3328
- transform: translateX(15px);
3488
+ &__save {
3489
+ padding: 8px 18px;
3490
+ margin: 0!important;
3491
+ &--disable {
3492
+ cursor: not-allowed;
3493
+ }
3494
+ }
3329
3495
  }
3330
- }
3496
+ }
3331
3497
 
3332
- &__search {
3333
- color: $main-text;
3334
- padding-right: 23px;
3335
- transition: background-image 0.3s ease-in-out;
3336
- cursor: text;
3498
+ .dropdown-menu {
3499
+ left: -50%;
3500
+ }
3501
+ }
3337
3502
 
3338
- &:hover {
3339
- color: $main-text;
3340
- }
3503
+ .wz-img-manager .marginBottom {
3504
+ margin-bottom: 20px;
3505
+ }
3506
+ //.wz-img-manager useful to keep the css priority
3507
+ .wz-img-manager .upload-list {
3508
+ text-align: left;
3509
+ font-size: 14px;
3510
+ color: #23272B;
3341
3511
 
3342
- &--idle {
3343
- background: transparent
3344
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort' viewBox='0 0 320 512' class='svg-inline--fa fa-sort fa-w-10 fa-7x'%3E%3Cpath fill='currentColor' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z'/%3E%3C/svg%3E")
3345
- center right / 14px 14px no-repeat;
3346
- transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
3347
- cursor: pointer;
3512
+ &.smallDisplay {
3513
+ .upload-list__box__cards__card {
3514
+ width: 125px;
3515
+ }
3516
+ }
3348
3517
 
3349
- &:hover {
3350
- transition: color 0.3s ease-in-out;
3351
- }
3352
- }
3518
+ &__scroll {
3519
+ position: relative;
3520
+ height: 100%;
3353
3521
 
3354
- &--up {
3355
- background: transparent
3356
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort-up' viewBox='0 0 320 512' class='svg-inline--fa fa-sort-up fa-w-10 fa-5x'%3E%3Cpath fill='currentColor' d='M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z'/%3E%3C/svg%3E")
3357
- center right / 14px 14px no-repeat;
3358
- transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
3359
- cursor: pointer;
3522
+ &--smallDisplay {
3523
+ max-height: 260px!important;
3360
3524
 
3361
- &:hover {
3362
- transition: color 0.3s ease-in-out;
3363
- }
3525
+ .upload-list__box {
3526
+ margin-bottom: 20px;
3527
+ }
3364
3528
  }
3365
3529
 
3366
- &--down {
3367
- background: transparent
3368
- url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='sort-down' viewBox='0 0 320 512' class='svg-inline--fa fa-sort-down fa-w-10 fa-7x'%3E%3Cpath fill='currentColor' d='M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z'/%3E%3C/svg%3E")
3369
- center right / 14px 14px no-repeat;
3370
- transition: background-image 0.3s ease-in-out, color 0.3s ease-in-out;
3371
- cursor: pointer;
3372
-
3373
- &:hover {
3374
- transition: color 0.3s ease-in-out;
3375
- }
3530
+ &--window {
3531
+ max-height: none;
3376
3532
  }
3377
- }
3378
3533
 
3379
- &--center--left {
3380
- @include align-items(center);
3381
- @include justify-content(left);
3382
- }
3383
- &--center--center {
3384
- @include align-items(center);
3385
- @include justify-content(center);
3386
- }
3387
- &--center--right {
3388
- @include align-items(center);
3389
- @include justify-content(right);
3390
- }
3534
+ .ng-scroll-content {
3535
+ margin-left: 0.5rem !important;
3536
+ margin-right: 0.5rem !important;
3537
+ min-width: calc(100% - 1rem) !important;
3538
+ width: calc(100% - 1rem) !important;
3539
+ }
3391
3540
  }
3392
- }
3393
3541
 
3394
- // TODO delete __search
3395
- &__search {
3396
- height: 100px;
3397
- margin-top: 10px;
3398
- }
3542
+ &__box {
3543
+ margin: 0 0.8rem 30px 0.3rem;
3544
+ padding: 30px;
3545
+ background-color: $img-gray-background;
3546
+ margin-right: 12px;
3547
+ margin-left: 5px;
3548
+ border-radius: 3px;
3399
3549
 
3400
- &__body {
3401
- width: 100%;
3402
- margin-top: -10px;
3550
+ &__container {
3551
+ display: flex;
3552
+ justify-content: space-between;
3553
+ align-items: center;
3403
3554
 
3404
- &__loader {
3405
- position: relative;
3406
- min-height: 200px;
3407
- }
3555
+ p {
3556
+ display: inline;
3557
+ }
3408
3558
 
3409
- &__line {
3410
- @include flexbox();
3411
- @include flex-flow(row nowrap);
3412
- width: 100%;
3413
- border-bottom: 1px solid $textarea-border-color;
3559
+ .dropdown {
3560
+ vertical-align: baseline;
3561
+ &:hover {
3562
+ .dropdown-trigger i {
3563
+ color: $img-main-color;
3564
+ }
3565
+ }
3566
+ .dropdown-trigger {
3567
+ display: inline;
3568
+ i {
3569
+ color: $img-secondary-text;
3570
+ margin-left: 10px;
3571
+ }
3572
+ }
3414
3573
 
3415
- &__cell {
3416
- @include flexbox();
3417
- @include flex(1);
3418
- padding: 20px 20px 20px 20px;
3419
- font-size: 14px;
3420
- line-height: 25px;
3421
- color: $secondary-color;
3574
+ .dropdown-menu {
3575
+ padding: 0;
3576
+ width: 370px;
3577
+ left: -190px;
3578
+ margin-top: 3px;
3422
3579
 
3423
- &--checkbox {
3424
- @include flexbox();
3425
- @include flex(none);
3426
- @include justify-content(center);
3427
- @include align-items(center);
3428
- width: 80px;
3429
- padding: 8px 20px;
3430
- }
3580
+ .dropdown-item {
3581
+ display: flex;
3582
+ justify-content: left;
3583
+ align-items: center;
3431
3584
 
3432
- &--center--left {
3433
- @include align-items(center);
3434
- @include justify-content(left);
3435
- }
3436
- &--center--center {
3437
- @include align-items(center);
3438
- @include justify-content(center);
3439
- }
3440
- &--center--right {
3441
- @include align-items(center);
3442
- @include justify-content(right);
3443
- }
3444
- }
3445
- }
3446
- }
3447
- }
3448
- $card-img-size: 100%;
3449
- $card-img-size-small: 140px;
3585
+ p {
3586
+ margin: 0;
3587
+ }
3450
3588
 
3451
- //.wz-img-manager useful to keep the css priority
3452
- .wz-img-manager .addCssPriority .img-card {
3453
- display: flex;
3454
- flex-wrap: wrap;
3455
- justify-content: center;
3456
- padding: 0 0 rem(5);
3457
- width: 100%;
3458
- overflow: hidden;
3589
+ p:first-child {
3590
+ color: $img-main-text;
3591
+ font-size: 14px;
3592
+ }
3459
3593
 
3460
- &__container {
3461
- width: 100%!important;
3462
- height: auto!important;
3463
- display: flex;
3464
- border-radius: 3px;
3465
- border: 1px solid $img-light-white-color;
3466
- cursor: pointer;
3467
- overflow: hidden;
3468
- transition: .3s ease;
3469
- position: relative;
3470
- margin: 0 0 rem(10);
3471
- &:before {
3472
- content: '';
3473
- display: block;
3474
- padding-top: 100%;
3594
+ p:last-child {
3595
+ color: $img-green-color;
3596
+ font-size: 14px;
3597
+ margin-left: 10px;
3598
+ }
3599
+ }
3600
+ }
3601
+ }
3475
3602
  }
3476
3603
 
3477
- &.imgSelected {
3604
+ &__cards {
3605
+ padding-top: 15px;
3606
+ margin-left: 5px;
3607
+ display: flex;
3608
+ justify-content: left;
3609
+ flex-wrap: wrap;
3610
+ align-items: center;
3611
+ margin-right: -9px;
3612
+ width: calc(100% + 24px);
3613
+ transform: translateX(-12px);
3614
+ &__card {
3615
+ width: 198px;
3616
+ margin: 0 12px 12px;
3617
+ & > * {
3618
+ width: 100%;
3619
+ }
3478
3620
 
3479
- &:after {
3480
- z-index: 1000;
3481
- content: '';
3482
- display: block;
3483
- position: absolute;
3484
- width: 100%;
3485
- height: 4px;
3486
- background-color: $img-main-color;
3487
- bottom: 0;
3488
- left: 0;
3489
- transform: translateZ(0);
3490
- }
3491
- }
3621
+ &__btnBox {
3622
+ text-align: center;
3623
+ margin: rem(10) auto 0;
3492
3624
 
3493
- &__valid {
3494
- display: flex;
3495
- position: absolute;
3496
- top: 100%;
3497
- left: 50%;
3498
- transform: translate(-50%,0);
3499
- justify-content: center;
3500
- align-items: center;
3501
- width: auto;
3502
- background-color: $img-green-color;
3503
- border-radius: 3px;
3504
- padding: 5px;
3505
- transition: .3s ease;
3506
- i {
3507
- font-size: rem(10);
3508
- color: $white;
3509
- margin: 0 5px 0 0;
3510
- }
3511
- span {
3512
- color: $white;
3513
- font-weight: 500;
3514
- font-size: rem(10);
3515
- }
3516
- }
3625
+ &__btn {
3626
+ height: 30px;
3627
+ width: 30px;
3628
+ font-size: 14px!important;
3629
+
3630
+ cursor: default;
3517
3631
 
3518
- &:hover, &:focus {
3519
- .img-card__container {
3520
- &__valid {
3521
- transform: translate(-50%, -40px);
3632
+ &:focus {
3633
+ box-shadow: none;
3634
+ }
3635
+ }
3636
+ }
3522
3637
  }
3523
- }
3524
3638
  }
3639
+ }
3640
+ }
3525
3641
 
3526
- &__img {
3527
- width: auto!important;
3528
- height: auto!important;
3529
- background-color: white;
3530
- margin: auto;
3531
- transition: .3s ease;
3532
- position: absolute;
3533
- object-fit: contain;
3534
- max-width: 100%;
3535
- max-height: 100%;
3536
- top: 50%;
3537
- left: 50%;
3538
- transform: translate(-50%,-50%);
3642
+ @media screen and (max-width: 768px) {
3643
+ .wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .upload-list__scroll {
3644
+ max-height: none!important;
3645
+
3646
+ .ng-scroll-content {
3647
+ margin: 0 !important;
3648
+ min-width: 100%!important;
3649
+ width: 100%!important;
3539
3650
  }
3651
+ }
3652
+ }
3653
+ //.wz-img-manager useful to keep the css priority
3654
+ .wz-img-manager .wz-loader {
3655
+ &.is-small {
3656
+ right: 0;
3657
+ left: 0;
3658
+ top: 0;
3659
+ transform: scale(0.6);
3660
+ }
3661
+ margin-bottom: rem(80);
3540
3662
 
3541
- &__config {
3542
- position: relative;
3543
- top: 10px;
3544
- left: 10px;
3545
- transform: none;
3546
- z-index: 9999;
3547
- width: 30px;
3548
- opacity: 0;
3549
- transition: .3s ease;
3663
+ @keyframes rotate {
3664
+ 0% {
3665
+ transform: rotate(0deg);
3666
+ }
3667
+ 50% {
3668
+ transform: rotate(180deg);
3669
+ }
3670
+ 100% {
3671
+ transform: rotate(360deg);
3672
+ }
3673
+ }
3550
3674
 
3551
- button {
3552
- box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
3553
- margin: 0;
3554
- width: 30px;
3555
- height: 30px;
3556
- box-sizing: content-box;
3557
- border-radius: 3px;
3558
- border: none;
3559
- color: #fff;
3560
- transform: translateX(-40px);
3561
- will-change: transform;
3562
- cursor: pointer;
3563
- padding: 0;
3564
- display: flex;
3565
- justify-content: center;
3566
- align-content: center;
3567
- align-items: center;
3675
+ @keyframes rotate2 {
3676
+ 0% {
3677
+ transform: rotate(0deg);
3678
+ border-top-color: $img-color-loader;
3679
+ }
3680
+ 50% {
3681
+ transform: rotate(180deg);
3682
+ border-top-color: $img-color-loader2;
3683
+ }
3684
+ 100% {
3685
+ transform: rotate(360deg);
3686
+ border-top-color: $img-color-loader;
3687
+ }
3688
+ }
3568
3689
 
3569
- i {
3570
- font-size: 16px;
3571
- color: #fff;
3572
- position: relative;
3573
- z-index: 3;
3574
- }
3690
+ @mixin loaderDivMixin {
3691
+ border-radius: 50%;
3692
+ padding: rem(8);
3693
+ border: rem(2) solid transparent;
3694
+ animation: rotate linear 3.5s infinite;
3695
+ }
3575
3696
 
3576
- &:before {
3577
- content: '';
3578
- display: block;
3579
- position: absolute;
3580
- top: 0;
3581
- left: 0;
3582
- border-radius: 3px;
3583
- width: 100%;
3584
- height: 100%;
3585
- z-index: 2;
3586
- }
3697
+ .loader {
3698
+ position: relative;
3699
+ margin: rem(75) auto;
3700
+ width: rem(150);
3701
+ height: rem(150);
3702
+ display: block;
3703
+ overflow: hidden;
3704
+ div {
3705
+ height: 100%;
3706
+ }
3707
+ }
3587
3708
 
3588
- span {
3589
- position: absolute;
3590
- left: 100%;
3591
- display: flex;
3592
- justify-content: center;
3593
- align-items: center;
3594
- align-content: center;
3595
- height: 100%;
3596
- margin-left: -10px;
3597
- width: auto;
3598
- padding: 0 10px 0 0;
3599
- color: #fff;
3600
- text-transform: capitalize;
3601
- font-size: 14px;
3602
- border-radius: 0 3px 3px 0;
3603
- max-width: 0;
3604
- overflow: hidden;
3605
- z-index: 1;
3606
- transition: .3s ease;
3607
- box-shadow: 0 0.125rem 0.3125rem rgba(45,62,85,.1);
3608
- white-space: nowrap;
3609
- }
3709
+ /* loader 1 */
3710
+ .loader1,
3711
+ .loader1 div {
3712
+ @include loaderDivMixin;
3713
+ border-top-color: $img-color-loader;
3714
+ border-bottom-color: $img-color-loader2;
3715
+ }
3610
3716
 
3611
- &:not(:last-child) {
3612
- margin: 0 0 5px;
3613
- }
3614
- &.size {
3615
- background-color: #1E2E43;
3616
- transition: transform .3s ease .6s;
3617
- span, &:before {
3618
- background-color: #1E2E43;
3619
- }
3620
- }
3621
- &.dl {
3622
- background-color: $img-bleu-action;
3623
- transition: transform .3s ease .45s;
3624
- span, &:before {
3625
- background-color: $img-bleu-action;
3626
- }
3627
- }
3628
- &.edit {
3629
- background-color: $img-orange-color;
3630
- transition: transform .3s ease .3s;
3631
- span, &:before {
3632
- background-color: $img-orange-color;
3633
- }
3634
- }
3635
- &.deleted {
3636
- background-color: $img-red-color;
3637
- transition: transform .3s ease .15s;
3638
- span, &:before {
3639
- background-color: $img-red-color;
3640
- }
3641
- }
3642
- &.selected {
3643
- background-color: #fff;
3644
- border-color: $img-light-white-color;
3645
- transition: transform .3s ease;
3646
- span, &:before {
3647
- background-color: #fff;
3648
- color: $img-grey-color;
3649
- }
3717
+ div:hover {
3718
+ animation-play-state: paused;
3719
+ }
3650
3720
 
3651
- i {
3652
- color: $img-light-white-color;
3653
- }
3654
- .checked {
3655
- color: $img-bleu-color;
3656
- }
3657
- }
3658
- &:hover, &:focus {
3659
- border-radius: 3px 0 0 3px;
3660
- &:before {
3661
- border-radius: 3px 0 0 3px;
3662
- }
3663
- span {
3664
- transition: max-width 1s ease, margin-left .3s ease;
3665
- max-width: 1000px;
3666
- margin-left: -1px;
3667
- padding-left: 4px;
3668
- will-change: transform, margin;
3669
- }
3670
- }
3671
- }
3672
- }
3721
+ .loader,
3722
+ .loader * {
3723
+ will-change: transform;
3724
+ }
3673
3725
 
3674
- &__overlay {
3675
- position: absolute;
3676
- top: 0;
3677
- left: 0;
3678
- height: 100%;
3679
- width: 100%;
3680
- display: flex;
3681
- justify-content: center;
3682
- align-items: center;
3726
+ p {
3727
+ margin-top: -50px;
3728
+ font-weight: 500;
3729
+ }
3730
+ }
3731
+ //.wz-img-manager useful to keep the css priority
3732
+ .wz-img-manager .img-tabs {
3733
+ background-color: white;
3734
+ padding-left: 0;
3735
+ padding-right: 0;
3736
+ padding-top: 0;
3683
3737
 
3684
- i {
3685
- font-size: 100px;
3686
- color: grey;
3687
- }
3738
+ .tabs {
3739
+ margin: 0;
3740
+ display: flex;
3741
+ align-items: center;
3742
+ overflow: visible!important;
3743
+
3744
+ &--notWindow {
3745
+ padding: rem(20) rem(30) rem(20);
3746
+ margin-left: -1.075rem;
3747
+ margin-right: -0.575rem;
3748
+ margin-bottom: 0;
3749
+ }
3688
3750
 
3689
- &--smallDisplay {
3690
- i {
3691
- font-size: 75px;
3692
- }
3693
- }
3751
+ ul {
3752
+ width: auto;
3753
+ border: none;
3754
+ li {
3755
+ a {
3756
+ padding: 0 0 rem(10);
3757
+ margin: 0 rem(30) 0 0;
3758
+ position: relative;
3759
+ line-height: rem(16);
3760
+ border: none;
3761
+ color: $secondary-color;
3762
+ transition: color .3s ease;
3763
+ font-size: rem(14);
3764
+ font-weight: 400;
3694
3765
  }
3695
-
3696
- &__delete {
3697
- position: absolute;
3698
- top: 0;
3699
- left: 0;
3700
- width: 100%;
3701
- height: 100%;
3702
- background-color: rgba(0,0,0,.45);
3703
- display: flex;
3704
- flex-direction: column;
3705
- justify-content: center;
3706
- align-items: center;
3707
- padding: 15px;
3708
- visibility: hidden;
3709
- transform: translateY(100%);
3710
- opacity: 0;
3711
- z-index: 9999;
3712
- transition: visibility 0s linear .35s, opacity .3s ease, transform .3s ease;
3713
- &.show {
3714
- transform: translateY(0);
3715
- opacity: 1;
3716
- visibility: visible;
3717
- transition: visibility 0s linear, opacity .3s ease .05s, transform .3s ease .05s;
3718
- }
3719
- > span {
3720
- font-size: rem(14);
3721
- color: $img-white;
3722
- font-weight: 600;
3723
- text-align: center;
3724
- display: inline-block;
3725
- margin: 0 0 10px;
3726
- }
3727
- > div {
3728
- display: flex;
3729
- > button {
3730
- padding: 7px 12px;
3731
- font-size: rem(14);
3732
- color: $img-white;
3733
- background-color: $img-red-color;
3734
- font-weight: 600;
3735
- border: none;
3736
- margin: 0 0 0 5px;
3737
- text-transform: capitalize;
3738
- transition: .3s ease;
3739
- &:hover, &:focus {
3740
- background-color: darken($img-red-color, 15%);
3741
- }
3742
- &:first-child {
3743
- background-color: $img-main-color;
3744
- margin: 0 5px 0 0;
3745
- &:hover, &:focus {
3746
- background-color: darken($img-main-color, 15%);
3747
- }
3748
- }
3766
+ &.is-active {
3767
+ a {
3768
+ color: $main-text;
3769
+ &:after {
3770
+ content: '';
3771
+ display: block;
3772
+ position: absolute;
3773
+ width: 100%;
3774
+ height: 2px;
3775
+ background-color: $img-main-color;
3776
+ bottom: 0;
3777
+ left: 0;
3749
3778
  }
3750
3779
  }
3751
3780
  }
3781
+ }
3752
3782
  }
3783
+ }
3753
3784
 
3754
- &__nameContainer {
3755
- text-align: center;
3756
- overflow: hidden;
3757
- max-width: 100%;
3758
- min-width: 100%;
3759
- position: relative;
3760
- width: auto;
3785
+ &__canva {
3786
+ margin: 0 0 0 rem(30);
3787
+ }
3788
+
3789
+ &__tabsEdit {
3790
+ > .column {
3791
+ padding: 0!important;
3792
+ }
3793
+ }
3794
+
3795
+ &__tabsFirst {
3796
+ height: 100vh;
3797
+
3798
+ &--window {
3799
+ height: auto;
3761
3800
  display: flex;
3762
- justify-content: center;
3763
- align-items: center;
3764
- min-height: rem(16);
3801
+ justify-content: flex-start;
3802
+ }
3765
3803
 
3766
- &.focus {
3767
- overflow: visible;
3768
- }
3804
+ &__upload {
3805
+ margin: rem(28) 0 0 0;
3806
+ padding: 0;
3807
+ max-width: 33.3%;
3808
+ }
3769
3809
 
3770
- > span {
3771
- padding: 0 rem(10);
3772
- font-size: rem(12);
3773
- line-height: rem(14);
3774
- color: $img-grey-color;
3775
- width: auto;
3776
- white-space: nowrap;
3777
- overflow: hidden;
3778
- text-overflow: ellipsis;
3779
- text-align: center;
3780
- display: inline-block;
3781
- transition: .3s ease;
3782
- pointer-events: none;
3783
- max-width: 100%;
3810
+ &__list {
3811
+ padding: 0;
3812
+ margin: rem(28) 0 0 rem(60);
3813
+ &--upload {
3814
+ margin: rem(28) 0 0 rem(48);
3784
3815
  }
3816
+ //height: calc(100vh - 70px);
3817
+ //height: 100vh;
3818
+ }
3819
+ }
3785
3820
 
3786
- &__name {
3787
- margin: 0;
3788
- padding: 5px;
3789
- font-size: rem(12);
3790
- color: $img-grey-color;
3791
- line-height: rem(14);
3792
- text-align: center;
3793
- width: 100%;
3794
- min-width: 100%;
3795
- white-space: nowrap;
3796
- overflow: hidden;
3797
- text-overflow: ellipsis;
3798
- transition: .3s ease;
3799
- cursor: initial;
3800
- max-width: 100%;
3801
- position: absolute;
3802
- top: 0;
3803
- left: 0;
3804
- opacity: 0;
3805
- &:focus {
3806
- opacity: 1;
3807
- transform: translateY(-5px);
3808
- & + span {
3809
- opacity: 0;
3810
- }
3811
- }
3812
- }
3821
+ @media screen and (max-width: 768px) {
3822
+ .img-tabs__tabsFirst__upload {
3823
+ margin-right: 0;
3824
+ margin-bottom: 0;
3825
+ margin-top: 20px!important;
3813
3826
  }
3827
+ }
3814
3828
 
3815
- &:hover, &:focus {
3816
- z-index: 3;
3817
- .img-card {
3818
- &__nameContainer {
3819
- overflow: visible;
3820
- &__name {
3821
- color: #52AECD;
3822
- transform: translateY(-5px);
3823
- }
3824
- }
3829
+ &__tabsSecond {
3830
+ min-height: 100vh !important;
3831
+ margin-left: 0px;
3832
+ margin-right: 0px;
3833
+ margin-bottom: 0px;
3825
3834
 
3826
- &__container {
3827
- border-color: $wizishop-blue;
3828
- &__img {
3829
- transform: scale(1.02) translate(-50%,-50%);
3830
- }
3831
- &__config {
3832
- opacity: 1;
3833
- button {
3834
- transform: translateX(0);
3835
- &.size {
3836
- transition: transform .3s ease;
3837
- }
3838
- &.dl {
3839
- transition: transform .3s ease .15s;
3840
- }
3841
- &.edit {
3842
- transition: transform .3s ease .3s;
3843
- }
3844
- &.deleted {
3845
- transition: transform .3s ease .45s;
3846
- }
3847
- &.selected {
3848
- transition: transform .3s ease .6s;
3849
- }
3850
- }
3851
- }
3852
- }
3853
- }
3835
+ .column {
3836
+ padding: 0.75rem 0 0.75rem 0;
3837
+ }
3838
+ }
3839
+
3840
+ &__tabsThird {
3841
+ min-height: 100vh !important;
3842
+ margin-left: 0px;
3843
+ margin-right: 0px;
3844
+ margin-bottom: 0px;
3845
+
3846
+ .column {
3847
+ padding: 0.75rem 0 0.75rem 0;
3854
3848
  }
3849
+ }
3855
3850
  }
3856
3851
 
3857
- .wz-img-manager .addCssPriority .img-card .smallDisplay,.wz-img-manager .img-card .smallDisplay img {
3858
- width: $card-img-size-small;
3859
- height: $card-img-size-small;
3852
+ @media screen and (max-width: 768px) {
3853
+ .img-tabs__tabsFirst {
3854
+ margin-top: 0;
3855
+ }
3856
+
3857
+ .img-tabs__tabsFirst--small {
3858
+ height: 270px;
3859
+ }
3860
3860
  }
3861
3861
 
3862
- .wz-img-manager .addCssPriority .smallNameDisplay .img-card__nameContainer__name {
3863
- width: $card-img-size-small;
3862
+ .wz-img-manager .img-tabs .columns.img-tabs__tabsFirst {
3863
+ margin: 0;
3864
3864
  }