@wizishop/img-manager 0.2.83 → 0.2.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/wizishop-img-manager.umd.js +10 -0
- package/bundles/wizishop-img-manager.umd.js.map +1 -1
- package/bundles/wizishop-img-manager.umd.min.js +2 -2
- package/bundles/wizishop-img-manager.umd.min.js.map +1 -1
- package/esm2015/lib/services/img-manager.service.js +11 -1
- package/esm5/lib/services/img-manager.service.js +11 -1
- package/fesm2015/wizishop-img-manager.js +10 -0
- package/fesm2015/wizishop-img-manager.js.map +1 -1
- package/fesm5/wizishop-img-manager.js +10 -0
- package/fesm5/wizishop-img-manager.js.map +1 -1
- package/lib/services/img-manager.service.d.ts +2 -1
- package/package.json +1 -1
- package/wizishop-img-manager-0.2.85.tgz +0 -0
- package/wizishop-img-manager.metadata.json +1 -1
- package/wz-img-manager.scss +813 -798
- package/wizishop-img-manager-0.2.83.tgz +0 -0
package/wz-img-manager.scss
CHANGED
|
@@ -877,6 +877,9 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
|
|
|
877
877
|
&__pagination {
|
|
878
878
|
margin-bottom: 0;
|
|
879
879
|
transform: translateX(-20px);
|
|
880
|
+
@include media('<tablet') {
|
|
881
|
+
transform: none;
|
|
882
|
+
}
|
|
880
883
|
}
|
|
881
884
|
}
|
|
882
885
|
}
|
|
@@ -1083,134 +1086,12 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
|
|
|
1083
1086
|
}
|
|
1084
1087
|
}
|
|
1085
1088
|
}
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
vertical-align: middle;
|
|
1093
|
-
}
|
|
1094
|
-
&__container {
|
|
1095
|
-
display: flex;
|
|
1096
|
-
align-items: center;
|
|
1097
|
-
width: 100%;
|
|
1098
|
-
|
|
1099
|
-
&__imgContainer {
|
|
1100
|
-
margin-right: 20px;
|
|
1101
|
-
position: relative;
|
|
1102
|
-
display: block;
|
|
1103
|
-
min-width: 60px;
|
|
1104
|
-
cursor: pointer;
|
|
1105
|
-
|
|
1106
|
-
&::before {
|
|
1107
|
-
content: '';
|
|
1108
|
-
display: block;
|
|
1109
|
-
padding-top: 100%;
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
&__img {
|
|
1113
|
-
margin: 0!important;
|
|
1114
|
-
position: absolute;
|
|
1115
|
-
top: 50%;
|
|
1116
|
-
left: 50%;
|
|
1117
|
-
max-width: 100%;
|
|
1118
|
-
max-height:100%;
|
|
1119
|
-
width: auto;
|
|
1120
|
-
height: auto;
|
|
1121
|
-
transform: translate(-50%, -50%);
|
|
1122
|
-
object-fit: contain;
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
&.imgSelected {
|
|
1126
|
-
|
|
1127
|
-
&:after {
|
|
1128
|
-
z-index: 1000;
|
|
1129
|
-
content: '';
|
|
1130
|
-
display: block;
|
|
1131
|
-
position: absolute;
|
|
1132
|
-
width: 100%;
|
|
1133
|
-
height: 4px;
|
|
1134
|
-
background-color: $img-main-color;
|
|
1135
|
-
bottom: 0;
|
|
1136
|
-
left: 0;
|
|
1137
|
-
transform: translateZ(0);
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
&__overlay {
|
|
1142
|
-
position: absolute;
|
|
1143
|
-
top: 25%;
|
|
1144
|
-
left: 25%;
|
|
1145
|
-
height: 100%;
|
|
1146
|
-
width: 100%;
|
|
1147
|
-
|
|
1148
|
-
i {
|
|
1149
|
-
font-size: 30px;
|
|
1150
|
-
color: grey;
|
|
1151
|
-
}
|
|
1152
|
-
}
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
&__name {
|
|
1156
|
-
display: inline-block;
|
|
1157
|
-
background-color: transparent;
|
|
1158
|
-
white-space: nowrap;
|
|
1159
|
-
overflow: hidden;
|
|
1160
|
-
text-overflow: ellipsis;
|
|
1161
|
-
color: $main-text;
|
|
1162
|
-
font-size: 14px;
|
|
1163
|
-
cursor: initial;
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
&__dropdown-options {
|
|
1169
|
-
&__label {
|
|
1170
|
-
&--disable {
|
|
1171
|
-
cursor: not-allowed;
|
|
1172
|
-
i {
|
|
1173
|
-
cursor: not-allowed;
|
|
1174
|
-
}
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.wz-img-manager .table-view .checked {
|
|
1181
|
-
color: $img-main-color;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.wz-img-manager .table-view .checked.disabled {
|
|
1185
|
-
color: grey;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
.wz-img-manager .table-view .disabled {
|
|
1190
|
-
cursor: not-allowed;
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
.wz-img-manager .is-wizi-hoverable .dropdown-trigger:before {
|
|
1195
|
-
width: 5rem;
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
.table-view .wzImgMngInput {
|
|
1199
|
-
border-radius: 3px;
|
|
1200
|
-
}
|
|
1201
|
-
|
|
1202
|
-
.table-view .wzImgMngInput:active.desabled, .table-view .wzImgMngInput:focus.desabled {
|
|
1203
|
-
border: solid transparent 1px;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
.wz-img-manager .table-view .dropdown-menu {
|
|
1207
|
-
left: -165px;
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
.grey {
|
|
1211
|
-
color: $img-grey-color;
|
|
1212
|
-
}
|
|
1213
|
-
.wz-selector {
|
|
1089
|
+
.img-editor__infoSection__propertySEO__tooltips {
|
|
1090
|
+
i {
|
|
1091
|
+
font-size: rem(16);
|
|
1092
|
+
color: $main-text;
|
|
1093
|
+
}
|
|
1094
|
+
}.wz-selector {
|
|
1214
1095
|
&__default {
|
|
1215
1096
|
position: relative;
|
|
1216
1097
|
&__base {
|
|
@@ -1281,251 +1162,646 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
|
|
|
1281
1162
|
}
|
|
1282
1163
|
}
|
|
1283
1164
|
}
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
$danger: $img-red-color !default;
|
|
1291
|
-
$dark: $img-dark !default;
|
|
1292
|
-
|
|
1293
|
-
$button-padding-vertical: rem(7) !default;
|
|
1294
|
-
$radius: rem(3) !default;
|
|
1295
|
-
|
|
1296
|
-
$button-color: white!default;
|
|
1297
|
-
$button-hover-color: white !default;
|
|
1298
|
-
$button-focus-color: white !default;
|
|
1299
|
-
$button-active-color: white !default;
|
|
1300
|
-
$button-background-color: $primary !default;
|
|
1301
|
-
$button-disabled-background-color: $primary !default;
|
|
1302
|
-
$button-border-color: $primary-button-hover !default;
|
|
1303
|
-
$button-hover-border-color: $primary-button-hover !default;
|
|
1304
|
-
$button-active-border-color: $primary-button-hover !default;
|
|
1305
|
-
$button-focus-border-color: $primary-button-hover !default;
|
|
1306
|
-
$button-disabled-border-color: $primary-button-hover !default;
|
|
1165
|
+
.mosaic {
|
|
1166
|
+
width: 100%;
|
|
1167
|
+
display: flex;
|
|
1168
|
+
flex-wrap: wrap;
|
|
1169
|
+
position: relative;
|
|
1170
|
+
min-height: rem(512);
|
|
1307
1171
|
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
i {
|
|
1311
|
-
font-size: rem(16);
|
|
1312
|
-
color: $main-text;
|
|
1172
|
+
&--displayPexelsImg {
|
|
1173
|
+
min-height: unset;
|
|
1313
1174
|
}
|
|
1314
|
-
}.wz-img-manager .images-view {
|
|
1315
|
-
text-align: left;
|
|
1316
1175
|
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1176
|
+
&:not(.fullSize) {
|
|
1177
|
+
width: calc(100% + 24px);
|
|
1178
|
+
transform: translateX(-12px);
|
|
1179
|
+
.mosaic__container__cards {
|
|
1180
|
+
padding-bottom: 40px;
|
|
1181
|
+
> * {
|
|
1182
|
+
width: calc(25% - 24px);
|
|
1183
|
+
margin: 0 12px rem(24) 12px;
|
|
1184
|
+
@include media('>=desktop','<1300px') {
|
|
1185
|
+
width: calc(33.33% - 24px);
|
|
1186
|
+
margin: 0 12px rem(24) 12px;
|
|
1187
|
+
}
|
|
1320
1188
|
}
|
|
1321
1189
|
}
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1190
|
+
&.small {
|
|
1191
|
+
min-height: 0;
|
|
1192
|
+
.mosaic__container__loader {
|
|
1193
|
+
top: 0;
|
|
1194
|
+
transform: translateX(-50%);
|
|
1195
|
+
max-height: 200px;
|
|
1196
|
+
}
|
|
1197
|
+
.mosaic {
|
|
1198
|
+
&__container {
|
|
1199
|
+
&__cards {
|
|
1200
|
+
padding-bottom: 40px;
|
|
1201
|
+
> * {
|
|
1202
|
+
width: calc(12.5% - 24px);
|
|
1203
|
+
margin: 0 12px rem(24) 12px;
|
|
1204
|
+
@include media('>=1400px','<1600px') {
|
|
1205
|
+
width: calc(14% - 24px);
|
|
1206
|
+
margin: 0 12px rem(24) 12px;
|
|
1207
|
+
}
|
|
1208
|
+
@include media('>=1200px','<1400px') {
|
|
1209
|
+
width: calc(16.66% - 24px);
|
|
1210
|
+
margin: 0 12px rem(24) 12px;
|
|
1211
|
+
}
|
|
1212
|
+
@include media('>=desktop','<1200px') {
|
|
1213
|
+
width: calc(20% - 24px);
|
|
1214
|
+
margin: 0 12px rem(24) 12px;
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1338
1217
|
}
|
|
1339
1218
|
}
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
1222
|
+
&.fullSize {
|
|
1223
|
+
width: calc(100% + 24px);
|
|
1224
|
+
transform: translateX(-12px);
|
|
1225
|
+
@include media('<420px') {
|
|
1226
|
+
width: 100%;
|
|
1227
|
+
transform: none;
|
|
1228
|
+
}
|
|
1229
|
+
.mosaic__container__cards {
|
|
1230
|
+
> * {
|
|
1231
|
+
width: calc(16.66% - 24px);
|
|
1232
|
+
margin: 0 12px rem(24) 12px;
|
|
1233
|
+
@include media('>=1400px','<1600px') {
|
|
1234
|
+
width: calc(20% - 24px);
|
|
1235
|
+
margin: 0 12px rem(24) 12px;
|
|
1343
1236
|
}
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1237
|
+
@include media('>=desktop','<1400px') {
|
|
1238
|
+
width: calc(25% - 24px);
|
|
1239
|
+
margin: 0 12px rem(24) 12px;
|
|
1347
1240
|
}
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1241
|
+
@include media('>=tablet','<desktop') {
|
|
1242
|
+
width: calc(33.33% - 24px);
|
|
1243
|
+
margin: 0 12px rem(24) 12px;
|
|
1244
|
+
}
|
|
1245
|
+
@include media('>=400px','<tablet') {
|
|
1246
|
+
width: calc(50% - 24px);
|
|
1247
|
+
margin: 0 12px rem(24) 12px;
|
|
1248
|
+
}
|
|
1249
|
+
@include media('<420px') {
|
|
1250
|
+
width: 100%;
|
|
1251
|
+
margin: 0 0 15px;
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
&.small {
|
|
1256
|
+
.mosaic__container__loader {
|
|
1257
|
+
top: 0;
|
|
1258
|
+
transform: translateX(-50%);
|
|
1259
|
+
max-height: 200px;
|
|
1260
|
+
}
|
|
1261
|
+
.mosaic {
|
|
1262
|
+
&__search {
|
|
1263
|
+
display: none;
|
|
1264
|
+
@include media('<tablet') {
|
|
1265
|
+
display: block;
|
|
1266
|
+
margin: 0 0 20px;
|
|
1267
|
+
padding: 0;
|
|
1268
|
+
width: 100%;
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
&__container {
|
|
1272
|
+
&__cards {
|
|
1273
|
+
> * {
|
|
1274
|
+
width: calc(10% - 24px);
|
|
1275
|
+
margin: 0 12px rem(24) 12px;
|
|
1276
|
+
@include media('>=1400px','<1600px') {
|
|
1277
|
+
width: calc(11.11% - 24px);
|
|
1278
|
+
margin: 0 12px rem(24) 12px;
|
|
1279
|
+
}
|
|
1280
|
+
@include media('>=desktop','<1400px') {
|
|
1281
|
+
width: calc(12.5% - 24px);
|
|
1282
|
+
margin: 0 12px rem(24) 12px;
|
|
1283
|
+
}
|
|
1284
|
+
@include media('>=tablet','<desktop') {
|
|
1285
|
+
width: calc(20% - 24px);
|
|
1286
|
+
margin: 0 12px rem(24) 12px;
|
|
1287
|
+
}
|
|
1288
|
+
@include media('>=500px','<tablet') {
|
|
1289
|
+
width: calc(33.33% - 24px);
|
|
1290
|
+
margin: 0 12px rem(24) 12px;
|
|
1291
|
+
}
|
|
1292
|
+
@include media('<500px') {
|
|
1293
|
+
width: calc(50% - 24px);
|
|
1294
|
+
margin: 0 12px rem(24) 12px;
|
|
1295
|
+
}
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
&__search {
|
|
1303
|
+
width: calc(100% - 24px);
|
|
1304
|
+
margin: 0 auto rem(20);
|
|
1305
|
+
}
|
|
1306
|
+
&__pagination {
|
|
1307
|
+
width: 100%;
|
|
1308
|
+
}
|
|
1309
|
+
&__container {
|
|
1310
|
+
&__loader {
|
|
1311
|
+
position: absolute;
|
|
1312
|
+
top: 50%;
|
|
1313
|
+
left: 50%;
|
|
1314
|
+
transform: translate(-50%,-50%);
|
|
1315
|
+
max-width: 300px;
|
|
1316
|
+
max-height: 300px;
|
|
1317
|
+
display: flex;
|
|
1318
|
+
flex-wrap: wrap;
|
|
1319
|
+
flex-direction: column;
|
|
1320
|
+
justify-content: center;
|
|
1321
|
+
align-items: center;
|
|
1322
|
+
}
|
|
1323
|
+
&__cards {
|
|
1324
|
+
width: 100%;
|
|
1325
|
+
display: flex;
|
|
1326
|
+
flex-wrap: wrap;
|
|
1327
|
+
&--padding {
|
|
1328
|
+
padding-right: 20px;
|
|
1329
|
+
@include media('<tablet') {
|
|
1330
|
+
width: calc(100% + 24px);
|
|
1331
|
+
padding: 0;
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.mosaic__container__cards {
|
|
1339
|
+
z-index: 1;
|
|
1340
|
+
& + .mosaic__pagination {
|
|
1341
|
+
position: relative;
|
|
1342
|
+
z-index: 2;
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
$green: $really-bad-bad-bad-green !default;
|
|
1346
|
+
$primary: $primary-button !default;
|
|
1347
|
+
$light: $img-placeholder !default;
|
|
1348
|
+
$info: $wizishop-blue !default;
|
|
1349
|
+
$danger: $img-red-color !default;
|
|
1350
|
+
$dark: $img-dark !default;
|
|
1351
|
+
|
|
1352
|
+
$button-padding-vertical: rem(7) !default;
|
|
1353
|
+
$radius: rem(3) !default;
|
|
1354
|
+
|
|
1355
|
+
$button-color: white!default;
|
|
1356
|
+
$button-hover-color: white !default;
|
|
1357
|
+
$button-focus-color: white !default;
|
|
1358
|
+
$button-active-color: white !default;
|
|
1359
|
+
$button-background-color: $primary !default;
|
|
1360
|
+
$button-disabled-background-color: $primary !default;
|
|
1361
|
+
$button-border-color: $primary-button-hover !default;
|
|
1362
|
+
$button-hover-border-color: $primary-button-hover !default;
|
|
1363
|
+
$button-active-border-color: $primary-button-hover !default;
|
|
1364
|
+
$button-focus-border-color: $primary-button-hover !default;
|
|
1365
|
+
$button-disabled-border-color: $primary-button-hover !default;
|
|
1366
|
+
|
|
1367
|
+
$tag-radius: rem(20px)!default;
|
|
1368
|
+
//.wz-img-manager useful to keep the css priority
|
|
1369
|
+
.wz-img-manager .table-view {
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
&__row {
|
|
1373
|
+
td {
|
|
1374
|
+
vertical-align: middle;
|
|
1375
|
+
}
|
|
1376
|
+
&__container {
|
|
1377
|
+
display: flex;
|
|
1378
|
+
align-items: center;
|
|
1379
|
+
width: 100%;
|
|
1380
|
+
|
|
1381
|
+
&__imgContainer {
|
|
1382
|
+
margin-right: 20px;
|
|
1383
|
+
position: relative;
|
|
1384
|
+
display: block;
|
|
1385
|
+
min-width: 60px;
|
|
1386
|
+
cursor: pointer;
|
|
1387
|
+
|
|
1388
|
+
&::before {
|
|
1389
|
+
content: '';
|
|
1390
|
+
display: block;
|
|
1391
|
+
padding-top: 100%;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
&__img {
|
|
1395
|
+
margin: 0!important;
|
|
1396
|
+
position: absolute;
|
|
1397
|
+
top: 50%;
|
|
1398
|
+
left: 50%;
|
|
1399
|
+
max-width: 100%;
|
|
1400
|
+
max-height:100%;
|
|
1401
|
+
width: auto;
|
|
1402
|
+
height: auto;
|
|
1403
|
+
transform: translate(-50%, -50%);
|
|
1404
|
+
object-fit: contain;
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
&.imgSelected {
|
|
1408
|
+
|
|
1409
|
+
&:after {
|
|
1410
|
+
z-index: 1000;
|
|
1411
|
+
content: '';
|
|
1412
|
+
display: block;
|
|
1413
|
+
position: absolute;
|
|
1414
|
+
width: 100%;
|
|
1415
|
+
height: 4px;
|
|
1416
|
+
background-color: $img-main-color;
|
|
1417
|
+
bottom: 0;
|
|
1418
|
+
left: 0;
|
|
1419
|
+
transform: translateZ(0);
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
&__overlay {
|
|
1424
|
+
position: absolute;
|
|
1425
|
+
top: 25%;
|
|
1426
|
+
left: 25%;
|
|
1427
|
+
height: 100%;
|
|
1428
|
+
width: 100%;
|
|
1429
|
+
|
|
1430
|
+
i {
|
|
1431
|
+
font-size: 30px;
|
|
1432
|
+
color: grey;
|
|
1433
|
+
}
|
|
1354
1434
|
}
|
|
1355
1435
|
}
|
|
1356
|
-
|
|
1357
|
-
|
|
1436
|
+
|
|
1437
|
+
&__name {
|
|
1438
|
+
display: inline-block;
|
|
1439
|
+
background-color: transparent;
|
|
1440
|
+
white-space: nowrap;
|
|
1441
|
+
overflow: hidden;
|
|
1442
|
+
text-overflow: ellipsis;
|
|
1443
|
+
color: $main-text;
|
|
1444
|
+
font-size: 14px;
|
|
1445
|
+
cursor: initial;
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
&__dropdown-options {
|
|
1451
|
+
&__label {
|
|
1452
|
+
&--disable {
|
|
1453
|
+
cursor: not-allowed;
|
|
1454
|
+
i {
|
|
1455
|
+
cursor: not-allowed;
|
|
1456
|
+
}
|
|
1358
1457
|
}
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
.wz-img-manager .table-view .checked {
|
|
1463
|
+
color: $img-main-color;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.wz-img-manager .table-view .checked.disabled {
|
|
1467
|
+
color: grey;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
.wz-img-manager .table-view .disabled {
|
|
1472
|
+
cursor: not-allowed;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
|
|
1476
|
+
.wz-img-manager .is-wizi-hoverable .dropdown-trigger:before {
|
|
1477
|
+
width: 5rem;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
.table-view .wzImgMngInput {
|
|
1481
|
+
border-radius: 3px;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.table-view .wzImgMngInput:active.desabled, .table-view .wzImgMngInput:focus.desabled {
|
|
1485
|
+
border: solid transparent 1px;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.wz-img-manager .table-view .dropdown-menu {
|
|
1489
|
+
left: -165px;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.grey {
|
|
1493
|
+
color: $img-grey-color;
|
|
1494
|
+
}
|
|
1495
|
+
.wz-img-manager .img-editor {
|
|
1496
|
+
&__scroll {
|
|
1497
|
+
position: relative;
|
|
1498
|
+
height: 100%;
|
|
1499
|
+
|
|
1500
|
+
&--full {
|
|
1501
|
+
max-height: calc(100vh - 90px)!important;
|
|
1502
|
+
min-height: calc(100vh - 90px) !important;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
&--smallDisplay {
|
|
1506
|
+
max-height: 275px!important;
|
|
1507
|
+
@include media('<tablet') {
|
|
1508
|
+
max-height: calc(100vh - 90px)!important;
|
|
1509
|
+
min-height: calc(100vh - 90px) !important;
|
|
1510
|
+
}
|
|
1511
|
+
}
|
|
1359
1512
|
|
|
1513
|
+
&--window {
|
|
1514
|
+
max-height: none;
|
|
1360
1515
|
}
|
|
1361
1516
|
|
|
1362
1517
|
.ng-scroll-content {
|
|
1518
|
+
margin-left: 0 !important;
|
|
1519
|
+
margin-right: 0 !important;
|
|
1363
1520
|
min-width: calc(100% - 1rem) !important;
|
|
1364
1521
|
width: calc(100% - 1rem) !important;
|
|
1365
|
-
|
|
1366
|
-
|
|
1522
|
+
}
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.columns {
|
|
1526
|
+
margin-right: 0.8rem;
|
|
1527
|
+
margin-left: rem(12);
|
|
1528
|
+
margin-top: 12px;
|
|
1529
|
+
margin-bottom: 0;
|
|
1530
|
+
width: calc(100% + 11px);
|
|
1531
|
+
|
|
1532
|
+
.column {
|
|
1533
|
+
padding-top: 0;
|
|
1534
|
+
padding-bottom: 0px;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
&__head-container {
|
|
1539
|
+
display: flex;
|
|
1540
|
+
justify-content: flex-end;
|
|
1541
|
+
align-items: center;
|
|
1542
|
+
margin: 30px 30px 20px 0;
|
|
1543
|
+
|
|
1544
|
+
&__btnGroup {
|
|
1545
|
+
margin-right: 13px;
|
|
1546
|
+
opacity: 0;
|
|
1547
|
+
visibility: hidden;
|
|
1548
|
+
transition: opacity .3s ease-in-out;
|
|
1549
|
+
|
|
1550
|
+
&__visible {
|
|
1551
|
+
opacity: 1;
|
|
1552
|
+
visibility: visible;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
&__removeBtn {
|
|
1556
|
+
margin-right: 13px;
|
|
1367
1557
|
}
|
|
1368
1558
|
}
|
|
1559
|
+
|
|
1560
|
+
&__close {
|
|
1561
|
+
cursor: pointer;
|
|
1562
|
+
font-size: 14px;
|
|
1563
|
+
color: $img-grey-color;
|
|
1564
|
+
line-height: 40px;
|
|
1565
|
+
}
|
|
1369
1566
|
}
|
|
1370
1567
|
|
|
1371
1568
|
&__container {
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
> div {
|
|
1377
|
-
display: flex;
|
|
1569
|
+
padding: 0.75rem!important;
|
|
1570
|
+
display:flex;
|
|
1571
|
+
justify-content: center;
|
|
1378
1572
|
align-items: center;
|
|
1379
|
-
|
|
1380
|
-
|
|
1573
|
+
background-color: $img-gray-background;
|
|
1574
|
+
margin: 0;
|
|
1575
|
+
transform: translateY(-16px);
|
|
1576
|
+
|
|
1577
|
+
&__toolsContainer {
|
|
1578
|
+
display: flex;
|
|
1579
|
+
justify-content: center;
|
|
1580
|
+
align-items: center;
|
|
1581
|
+
margin-bottom: 50px;
|
|
1582
|
+
|
|
1583
|
+
&__tool {
|
|
1584
|
+
color: $img-second-color;
|
|
1585
|
+
margin-right: 30px;
|
|
1586
|
+
text-align: center;
|
|
1587
|
+
cursor: pointer;
|
|
1588
|
+
|
|
1589
|
+
p {
|
|
1590
|
+
margin: 0!important;
|
|
1591
|
+
color: $img-main-text;
|
|
1592
|
+
font-size: rem(12);
|
|
1593
|
+
line-height: rem(14);
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
i {
|
|
1597
|
+
font-size: rem(18);
|
|
1598
|
+
margin: 0 0 10px;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
&--button {
|
|
1602
|
+
background-color: $img-green-color;
|
|
1603
|
+
color: $img-white!important;
|
|
1604
|
+
padding: 10px;
|
|
1605
|
+
border-radius: 3px;
|
|
1606
|
+
transition: .3s ease;
|
|
1607
|
+
white-space: nowrap;
|
|
1608
|
+
display: flex;
|
|
1609
|
+
justify-content: center;
|
|
1610
|
+
align-items: center;
|
|
1611
|
+
position: absolute;
|
|
1612
|
+
top: 80px;
|
|
1613
|
+
left: 50%;
|
|
1614
|
+
transform: translateX(-50%);
|
|
1615
|
+
height: 35px;
|
|
1616
|
+
margin: 0;
|
|
1617
|
+
&:hover, &:focus {
|
|
1618
|
+
background-color: darken($img-green-color, 15%);
|
|
1619
|
+
color: $img-white!important;
|
|
1620
|
+
}
|
|
1621
|
+
p {
|
|
1622
|
+
color: $white!important;
|
|
1623
|
+
}
|
|
1624
|
+
i {
|
|
1625
|
+
margin: 0 5px 0 0;
|
|
1626
|
+
}
|
|
1627
|
+
}
|
|
1628
|
+
&:hover {
|
|
1629
|
+
color: $img-main-color;
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
> * {
|
|
1633
|
+
-webkit-touch-callout: none; /* iOS Safari */
|
|
1634
|
+
-webkit-user-select: none; /* Safari */
|
|
1635
|
+
-khtml-user-select: none; /* Konqueror HTML */
|
|
1636
|
+
-moz-user-select: none; /* Old versions of Firefox */
|
|
1637
|
+
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
1638
|
+
user-select: none; /* Non-prefixed version, currently
|
|
1639
|
+
supported by Chrome, Edge, Opera and Firefox */
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
&__RotationDropdown {
|
|
1644
|
+
min-width: 16rem;
|
|
1645
|
+
}
|
|
1381
1646
|
}
|
|
1382
|
-
}
|
|
1383
1647
|
|
|
1384
|
-
|
|
1385
|
-
|
|
1648
|
+
&__name {
|
|
1649
|
+
font-size: 16px;
|
|
1650
|
+
max-width: 50%;
|
|
1651
|
+
color: $img-grey-color;
|
|
1652
|
+
text-align: center;
|
|
1653
|
+
white-space: nowrap;
|
|
1654
|
+
overflow: hidden;
|
|
1655
|
+
text-overflow: ellipsis;
|
|
1386
1656
|
}
|
|
1387
1657
|
|
|
1388
|
-
|
|
1389
|
-
|
|
1658
|
+
.button {
|
|
1659
|
+
min-height: 35px;
|
|
1660
|
+
background-color: $img-primary-button;
|
|
1661
|
+
border-color: $img-primary-button-hover;
|
|
1662
|
+
color: #ffffff;
|
|
1390
1663
|
}
|
|
1664
|
+
}
|
|
1391
1665
|
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
justify-content: flex-end;
|
|
1398
|
-
margin-right: 13px;
|
|
1399
|
-
height: 40px;
|
|
1400
|
-
align-items: center;
|
|
1401
|
-
transform: translate(-41px,-3px);
|
|
1666
|
+
&__image-cropper {
|
|
1667
|
+
--cropper-overlay-color: #f5f8fa;
|
|
1668
|
+
//--cropper-outline-color: #a5a5a573;
|
|
1669
|
+
padding-bottom: 30px;
|
|
1670
|
+
}
|
|
1402
1671
|
|
|
1403
|
-
|
|
1672
|
+
&__infoSection {
|
|
1673
|
+
font-size: 14px;
|
|
1674
|
+
max-width: 360px;
|
|
1675
|
+
padding: 0;
|
|
1676
|
+
margin: 0 rem(30) 0 0;
|
|
1677
|
+
|
|
1678
|
+
&__propertyEditable {
|
|
1679
|
+
margin-bottom: 31px;
|
|
1680
|
+
p {
|
|
1681
|
+
margin-bottom: 12px;
|
|
1682
|
+
font-size: 14px;
|
|
1683
|
+
}
|
|
1684
|
+
input, button {
|
|
1685
|
+
width: 100%;
|
|
1686
|
+
height: 40px;
|
|
1687
|
+
border: 1px solid #DEE2ED;
|
|
1688
|
+
border-radius: 3px;
|
|
1689
|
+
color: $img-main-text;
|
|
1690
|
+
padding-left: 20px;
|
|
1691
|
+
padding-right: 20px;
|
|
1404
1692
|
display: flex;
|
|
1405
1693
|
justify-content: space-between;
|
|
1406
|
-
|
|
1407
|
-
border-left: solid 1px #d8d8d8;
|
|
1408
|
-
color: $img-grey-color;
|
|
1409
|
-
padding-left: 1rem;
|
|
1410
|
-
width: 0;
|
|
1411
|
-
position: absolute;
|
|
1412
|
-
opacity: 0;
|
|
1413
|
-
transition: 0s;
|
|
1414
|
-
visibility: hidden;
|
|
1415
|
-
z-index: 2;
|
|
1416
|
-
|
|
1417
|
-
&--visible {
|
|
1418
|
-
max-width: unset;
|
|
1419
|
-
width: auto;
|
|
1420
|
-
opacity: 1;
|
|
1421
|
-
transition: 0s;
|
|
1422
|
-
visibility: visible;
|
|
1694
|
+
font-size: 14px;
|
|
1423
1695
|
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
left: auto;
|
|
1428
|
-
white-space: nowrap;
|
|
1429
|
-
margin-right: 30px;
|
|
1430
|
-
}
|
|
1696
|
+
&:hover {
|
|
1697
|
+
color: $img-main-color;
|
|
1698
|
+
border-color: $img-main-color;
|
|
1431
1699
|
}
|
|
1700
|
+
}
|
|
1432
1701
|
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
}
|
|
1702
|
+
button {
|
|
1703
|
+
align-items: center;
|
|
1704
|
+
background-color: transparent;
|
|
1705
|
+
cursor: pointer;
|
|
1706
|
+
}
|
|
1439
1707
|
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
transition: font-size .3s ease-in-out, left .3s ease-in-out;
|
|
1445
|
-
}
|
|
1708
|
+
&__span, &__input {
|
|
1709
|
+
text-overflow: ellipsis;
|
|
1710
|
+
overflow: hidden;
|
|
1711
|
+
white-space: nowrap;
|
|
1446
1712
|
}
|
|
1447
1713
|
|
|
1448
|
-
&
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1714
|
+
&__span {
|
|
1715
|
+
color: $img-bleu-color;
|
|
1716
|
+
& + i {
|
|
1717
|
+
color: $img-bleu-color;
|
|
1718
|
+
font-weight: 600;
|
|
1719
|
+
}
|
|
1452
1720
|
}
|
|
1453
1721
|
|
|
1454
|
-
&
|
|
1455
|
-
margin-
|
|
1456
|
-
i {
|
|
1457
|
-
margin-right: 13px!important;
|
|
1458
|
-
}
|
|
1722
|
+
&__tooltips {
|
|
1723
|
+
margin-left: 10px;
|
|
1459
1724
|
}
|
|
1460
1725
|
}
|
|
1461
1726
|
|
|
1462
|
-
&
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1727
|
+
&__property {
|
|
1728
|
+
&:nth-child(3), &:nth-child(4) {
|
|
1729
|
+
margin: 0;
|
|
1730
|
+
}
|
|
1731
|
+
p {
|
|
1732
|
+
font-size: 14px;
|
|
1733
|
+
display: inline-block;
|
|
1734
|
+
}
|
|
1468
1735
|
|
|
1469
|
-
|
|
1470
|
-
|
|
1736
|
+
.mainColor {
|
|
1737
|
+
margin: 0!important;
|
|
1738
|
+
}
|
|
1471
1739
|
|
|
1472
|
-
|
|
1473
|
-
margin
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1740
|
+
p:last-child {
|
|
1741
|
+
margin: 0 0 0 10px;
|
|
1742
|
+
color: #526384;
|
|
1743
|
+
}
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
&__titleSEO {
|
|
1747
|
+
margin: 0 0 20px;
|
|
1748
|
+
|
|
1749
|
+
.mainColor {
|
|
1750
|
+
font-size: rem(18);
|
|
1751
|
+
font-weight: 500;
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
&__propertySEO {
|
|
1756
|
+
margin-bottom: 12px;
|
|
1757
|
+
p {
|
|
1758
|
+
font-size: 14px;
|
|
1759
|
+
display: inline-block;
|
|
1760
|
+
margin: 0;
|
|
1486
1761
|
}
|
|
1487
1762
|
|
|
1488
|
-
|
|
1489
|
-
|
|
1763
|
+
.mainColor {
|
|
1764
|
+
& ~ p {
|
|
1765
|
+
margin-left: 10px;
|
|
1766
|
+
color: $img-green-color;
|
|
1490
1767
|
}
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1491
1770
|
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1771
|
+
&__divider {
|
|
1772
|
+
display: block;
|
|
1773
|
+
width: 100%;
|
|
1774
|
+
border-bottom: 2px dashed #EFF1F6;
|
|
1775
|
+
margin: 30px 0;
|
|
1495
1776
|
}
|
|
1496
1777
|
|
|
1497
|
-
&
|
|
1498
|
-
|
|
1499
|
-
justify-content: space-between;
|
|
1500
|
-
flex-wrap: wrap;
|
|
1501
|
-
align-items: center;
|
|
1502
|
-
padding-top: 30px;
|
|
1503
|
-
margin-right: calc(0.8rem - 20px);
|
|
1504
|
-
margin-left: 0.3rem;
|
|
1505
|
-
margin-bottom: 30px;
|
|
1778
|
+
&__actions {
|
|
1779
|
+
height: 35px;
|
|
1506
1780
|
|
|
1507
|
-
|
|
1508
|
-
|
|
1781
|
+
&__cancel {
|
|
1782
|
+
margin-right: 19px;
|
|
1783
|
+
background-color: white;
|
|
1784
|
+
border-color: #dbdbdb;
|
|
1785
|
+
color: $img-main-text;
|
|
1786
|
+
}
|
|
1509
1787
|
|
|
1510
|
-
|
|
1511
|
-
|
|
1788
|
+
&__save {
|
|
1789
|
+
padding: 8px 18px;
|
|
1790
|
+
margin: 0!important;
|
|
1791
|
+
&--disable {
|
|
1792
|
+
cursor: not-allowed;
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1512
1796
|
}
|
|
1513
1797
|
|
|
1514
|
-
.
|
|
1515
|
-
|
|
1798
|
+
.dropdown-menu {
|
|
1799
|
+
left: -50%;
|
|
1516
1800
|
}
|
|
1517
1801
|
}
|
|
1518
1802
|
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
max-height: none!important;
|
|
1522
|
-
|
|
1523
|
-
.ng-scroll-content {
|
|
1524
|
-
margin: 0 !important;
|
|
1525
|
-
min-width: 100%!important;
|
|
1526
|
-
width: 100%!important;
|
|
1527
|
-
}
|
|
1528
|
-
}
|
|
1803
|
+
.wz-img-manager .marginBottom {
|
|
1804
|
+
margin-bottom: 20px;
|
|
1529
1805
|
}
|
|
1530
1806
|
$default-color-p-alert: #1e5568;
|
|
1531
1807
|
$success-color-p-alert: #11552e;
|
|
@@ -2295,255 +2571,77 @@ $green-color: #2ecc71;
|
|
|
2295
2571
|
}
|
|
2296
2572
|
|
|
2297
2573
|
}
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
&__dropdown {
|
|
2301
|
-
.dropdown-content {
|
|
2302
|
-
padding: 3px 0;
|
|
2303
|
-
|
|
2304
|
-
.dropdown-item {
|
|
2305
|
-
display: flex;
|
|
2306
|
-
justify-content: space-between;
|
|
2307
|
-
align-items: center;
|
|
2308
|
-
|
|
2309
|
-
p {
|
|
2310
|
-
margin-top: 0;
|
|
2311
|
-
margin-bottom: 0;
|
|
2312
|
-
}
|
|
2313
|
-
|
|
2314
|
-
.iPortrait, .iLandscape {
|
|
2315
|
-
visibility: hidden;
|
|
2316
|
-
}
|
|
2317
|
-
|
|
2318
|
-
&:hover {
|
|
2319
|
-
i {
|
|
2320
|
-
visibility: unset;
|
|
2321
|
-
}
|
|
2322
|
-
}
|
|
2323
|
-
}
|
|
2324
|
-
}
|
|
2325
|
-
|
|
2326
|
-
.dropdown-content__wrapper:hover {
|
|
2327
|
-
.iOriginal {
|
|
2328
|
-
visibility: hidden;
|
|
2329
|
-
}
|
|
2330
|
-
}
|
|
2331
|
-
|
|
2332
|
-
}
|
|
2333
|
-
}
|
|
2334
|
-
}
|
|
2335
|
-
}
|
|
2336
|
-
|
|
2337
|
-
// .pexels-lib__wrapper__result-nb
|
|
2338
|
-
&-nb {
|
|
2339
|
-
font-size: 14px;
|
|
2340
|
-
margin-top: 30px;
|
|
2341
|
-
margin-bottom: 15px;
|
|
2342
|
-
font-weight: 600;
|
|
2343
|
-
line-height: 40px;
|
|
2344
|
-
@include media('<tablet') {
|
|
2345
|
-
margin: 20px auto;
|
|
2346
|
-
}
|
|
2347
|
-
}
|
|
2348
|
-
}
|
|
2349
|
-
}
|
|
2350
|
-
|
|
2351
|
-
&__alert {
|
|
2352
|
-
margin-right: 0.8rem;
|
|
2353
|
-
margin-left: 0.3rem;
|
|
2354
|
-
margin-top: 10px;
|
|
2355
|
-
}
|
|
2356
|
-
}
|
|
2357
|
-
|
|
2358
|
-
.wz-img-manager .pexels-lib .dropdown .dropdown-menu{
|
|
2359
|
-
min-width: 0;
|
|
2360
|
-
width: 100%;
|
|
2361
|
-
.dropdown-item:hover {
|
|
2362
|
-
background-color: #fafafa;
|
|
2363
|
-
cursor: pointer;
|
|
2364
|
-
}
|
|
2365
|
-
}
|
|
2366
|
-
.mosaic {
|
|
2367
|
-
width: 100%;
|
|
2368
|
-
display: flex;
|
|
2369
|
-
flex-wrap: wrap;
|
|
2370
|
-
position: relative;
|
|
2371
|
-
min-height: rem(512);
|
|
2372
|
-
|
|
2373
|
-
&--displayPexelsImg {
|
|
2374
|
-
min-height: unset;
|
|
2375
|
-
}
|
|
2376
|
-
|
|
2377
|
-
&:not(.fullSize) {
|
|
2378
|
-
width: calc(100% + 24px);
|
|
2379
|
-
transform: translateX(-12px);
|
|
2380
|
-
.mosaic__container__cards {
|
|
2381
|
-
padding-bottom: 40px;
|
|
2382
|
-
> * {
|
|
2383
|
-
width: calc(25% - 24px);
|
|
2384
|
-
margin: 0 12px rem(24) 12px;
|
|
2385
|
-
@include media('>=desktop','<1300px') {
|
|
2386
|
-
width: calc(33.33% - 24px);
|
|
2387
|
-
margin: 0 12px rem(24) 12px;
|
|
2388
|
-
}
|
|
2389
|
-
}
|
|
2390
|
-
}
|
|
2391
|
-
&.small {
|
|
2392
|
-
min-height: 0;
|
|
2393
|
-
.mosaic__container__loader {
|
|
2394
|
-
top: 0;
|
|
2395
|
-
transform: translateX(-50%);
|
|
2396
|
-
max-height: 200px;
|
|
2397
|
-
}
|
|
2398
|
-
.mosaic {
|
|
2399
|
-
&__container {
|
|
2400
|
-
&__cards {
|
|
2401
|
-
padding-bottom: 40px;
|
|
2402
|
-
> * {
|
|
2403
|
-
width: calc(12.5% - 24px);
|
|
2404
|
-
margin: 0 12px rem(24) 12px;
|
|
2405
|
-
@include media('>=1400px','<1600px') {
|
|
2406
|
-
width: calc(14% - 24px);
|
|
2407
|
-
margin: 0 12px rem(24) 12px;
|
|
2408
|
-
}
|
|
2409
|
-
@include media('>=1200px','<1400px') {
|
|
2410
|
-
width: calc(16.66% - 24px);
|
|
2411
|
-
margin: 0 12px rem(24) 12px;
|
|
2412
|
-
}
|
|
2413
|
-
@include media('>=desktop','<1200px') {
|
|
2414
|
-
width: calc(20% - 24px);
|
|
2415
|
-
margin: 0 12px rem(24) 12px;
|
|
2416
|
-
}
|
|
2417
|
-
}
|
|
2418
|
-
}
|
|
2419
|
-
}
|
|
2420
|
-
}
|
|
2421
|
-
}
|
|
2422
|
-
}
|
|
2423
|
-
&.fullSize {
|
|
2424
|
-
width: calc(100% + 24px);
|
|
2425
|
-
transform: translateX(-12px);
|
|
2426
|
-
@include media('<420px') {
|
|
2427
|
-
width: 100%;
|
|
2428
|
-
transform: none;
|
|
2429
|
-
}
|
|
2430
|
-
.mosaic__container__cards {
|
|
2431
|
-
> * {
|
|
2432
|
-
width: calc(16.66% - 24px);
|
|
2433
|
-
margin: 0 12px rem(24) 12px;
|
|
2434
|
-
@include media('>=1400px','<1600px') {
|
|
2435
|
-
width: calc(20% - 24px);
|
|
2436
|
-
margin: 0 12px rem(24) 12px;
|
|
2437
|
-
}
|
|
2438
|
-
@include media('>=desktop','<1400px') {
|
|
2439
|
-
width: calc(25% - 24px);
|
|
2440
|
-
margin: 0 12px rem(24) 12px;
|
|
2441
|
-
}
|
|
2442
|
-
@include media('>=tablet','<desktop') {
|
|
2443
|
-
width: calc(33.33% - 24px);
|
|
2444
|
-
margin: 0 12px rem(24) 12px;
|
|
2445
|
-
}
|
|
2446
|
-
@include media('>=400px','<tablet') {
|
|
2447
|
-
width: calc(50% - 24px);
|
|
2448
|
-
margin: 0 12px rem(24) 12px;
|
|
2449
|
-
}
|
|
2450
|
-
@include media('<420px') {
|
|
2451
|
-
width: 100%;
|
|
2452
|
-
margin: 0 0 15px;
|
|
2453
|
-
}
|
|
2454
|
-
}
|
|
2455
|
-
}
|
|
2456
|
-
&.small {
|
|
2457
|
-
.mosaic__container__loader {
|
|
2458
|
-
top: 0;
|
|
2459
|
-
transform: translateX(-50%);
|
|
2460
|
-
max-height: 200px;
|
|
2461
|
-
}
|
|
2462
|
-
.mosaic {
|
|
2463
|
-
&__search {
|
|
2464
|
-
display: none;
|
|
2465
|
-
@include media('<tablet') {
|
|
2466
|
-
display: block;
|
|
2467
|
-
margin: 0 0 20px;
|
|
2468
|
-
padding: 0;
|
|
2469
|
-
width: 100%;
|
|
2470
|
-
}
|
|
2471
|
-
}
|
|
2472
|
-
&__container {
|
|
2473
|
-
&__cards {
|
|
2474
|
-
> * {
|
|
2475
|
-
width: calc(10% - 24px);
|
|
2476
|
-
margin: 0 12px rem(24) 12px;
|
|
2477
|
-
@include media('>=1400px','<1600px') {
|
|
2478
|
-
width: calc(11.11% - 24px);
|
|
2479
|
-
margin: 0 12px rem(24) 12px;
|
|
2480
|
-
}
|
|
2481
|
-
@include media('>=desktop','<1400px') {
|
|
2482
|
-
width: calc(12.5% - 24px);
|
|
2483
|
-
margin: 0 12px rem(24) 12px;
|
|
2484
|
-
}
|
|
2485
|
-
@include media('>=tablet','<desktop') {
|
|
2486
|
-
width: calc(20% - 24px);
|
|
2487
|
-
margin: 0 12px rem(24) 12px;
|
|
2488
|
-
}
|
|
2489
|
-
@include media('>=500px','<tablet') {
|
|
2490
|
-
width: calc(33.33% - 24px);
|
|
2491
|
-
margin: 0 12px rem(24) 12px;
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2576
|
+
&__dropdown {
|
|
2577
|
+
.dropdown-content {
|
|
2578
|
+
padding: 3px 0;
|
|
2579
|
+
|
|
2580
|
+
.dropdown-item {
|
|
2581
|
+
display: flex;
|
|
2582
|
+
justify-content: space-between;
|
|
2583
|
+
align-items: center;
|
|
2584
|
+
|
|
2585
|
+
p {
|
|
2586
|
+
margin-top: 0;
|
|
2587
|
+
margin-bottom: 0;
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2590
|
+
.iPortrait, .iLandscape {
|
|
2591
|
+
visibility: hidden;
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
&:hover {
|
|
2595
|
+
i {
|
|
2596
|
+
visibility: unset;
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
}
|
|
2492
2600
|
}
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2601
|
+
|
|
2602
|
+
.dropdown-content__wrapper:hover {
|
|
2603
|
+
.iOriginal {
|
|
2604
|
+
visibility: hidden;
|
|
2605
|
+
}
|
|
2496
2606
|
}
|
|
2607
|
+
|
|
2497
2608
|
}
|
|
2498
2609
|
}
|
|
2499
2610
|
}
|
|
2500
2611
|
}
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
}
|
|
2510
|
-
&__container {
|
|
2511
|
-
&__loader {
|
|
2512
|
-
position: absolute;
|
|
2513
|
-
top: 50%;
|
|
2514
|
-
left: 50%;
|
|
2515
|
-
transform: translate(-50%,-50%);
|
|
2516
|
-
max-width: 300px;
|
|
2517
|
-
max-height: 300px;
|
|
2518
|
-
display: flex;
|
|
2519
|
-
flex-wrap: wrap;
|
|
2520
|
-
flex-direction: column;
|
|
2521
|
-
justify-content: center;
|
|
2522
|
-
align-items: center;
|
|
2523
|
-
}
|
|
2524
|
-
&__cards {
|
|
2525
|
-
width: 100%;
|
|
2526
|
-
display: flex;
|
|
2527
|
-
flex-wrap: wrap;
|
|
2528
|
-
&--padding {
|
|
2529
|
-
padding-right: 20px;
|
|
2612
|
+
|
|
2613
|
+
// .pexels-lib__wrapper__result-nb
|
|
2614
|
+
&-nb {
|
|
2615
|
+
font-size: 14px;
|
|
2616
|
+
margin-top: 30px;
|
|
2617
|
+
margin-bottom: 15px;
|
|
2618
|
+
font-weight: 600;
|
|
2619
|
+
line-height: 40px;
|
|
2530
2620
|
@include media('<tablet') {
|
|
2531
|
-
|
|
2532
|
-
padding: 0;
|
|
2621
|
+
margin: 20px auto;
|
|
2533
2622
|
}
|
|
2534
2623
|
}
|
|
2535
2624
|
}
|
|
2536
2625
|
}
|
|
2626
|
+
|
|
2627
|
+
&__alert {
|
|
2628
|
+
margin-right: 0.8rem;
|
|
2629
|
+
margin-left: 0.3rem;
|
|
2630
|
+
margin-top: 10px;
|
|
2631
|
+
}
|
|
2537
2632
|
}
|
|
2538
2633
|
|
|
2539
|
-
.
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2634
|
+
.wz-img-manager .pexels-lib .dropdown .dropdown-menu{
|
|
2635
|
+
min-width: 0;
|
|
2636
|
+
width: 100%;
|
|
2637
|
+
.dropdown-item:hover {
|
|
2638
|
+
background-color: #fafafa;
|
|
2639
|
+
cursor: pointer;
|
|
2544
2640
|
}
|
|
2545
2641
|
}
|
|
2546
|
-
|
|
2642
|
+
image-cropper {
|
|
2643
|
+
max-height: 60vh;
|
|
2644
|
+
}$card-img-size: 100%;
|
|
2547
2645
|
$card-img-size-small: 140px;
|
|
2548
2646
|
|
|
2549
2647
|
//.wz-img-manager useful to keep the css priority
|
|
@@ -3126,10 +3224,19 @@ $card-img-size-small: 140px;
|
|
|
3126
3224
|
@include justify-content(flex-end);
|
|
3127
3225
|
padding: 0 17px 0 0;
|
|
3128
3226
|
|
|
3227
|
+
@include media('<tablet') {
|
|
3228
|
+
padding: 0;
|
|
3229
|
+
justify-content: space-between;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3129
3232
|
&__page {
|
|
3130
3233
|
margin-right: 30px;
|
|
3131
3234
|
padding: 4px 0 5px 0;
|
|
3132
3235
|
|
|
3236
|
+
@include media('<tablet') {
|
|
3237
|
+
margin: 0 20px 20px 0;
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3133
3240
|
@include flexbox();
|
|
3134
3241
|
|
|
3135
3242
|
p {
|
|
@@ -3163,6 +3270,9 @@ $card-img-size-small: 140px;
|
|
|
3163
3270
|
|
|
3164
3271
|
&__elements {
|
|
3165
3272
|
margin-right: 30px;
|
|
3273
|
+
@include media('<tablet') {
|
|
3274
|
+
display: none;
|
|
3275
|
+
}
|
|
3166
3276
|
|
|
3167
3277
|
p {
|
|
3168
3278
|
margin: 8px 0 9px 0;
|
|
@@ -3783,14 +3893,23 @@ $card-img-size-small: 140px;
|
|
|
3783
3893
|
.wz-img-manager .img-tabs .columns.img-tabs__tabsFirst {
|
|
3784
3894
|
margin: 0;
|
|
3785
3895
|
}
|
|
3786
|
-
.wz-img-manager .
|
|
3896
|
+
.wz-img-manager .images-view {
|
|
3897
|
+
text-align: left;
|
|
3898
|
+
|
|
3899
|
+
&.fullSize {
|
|
3900
|
+
& + .images-view__scroll {
|
|
3901
|
+
max-height: 1160px;
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3787
3905
|
&__scroll {
|
|
3788
3906
|
position: relative;
|
|
3789
3907
|
height: 100%;
|
|
3908
|
+
z-index: 1;
|
|
3790
3909
|
|
|
3791
3910
|
&--full {
|
|
3792
|
-
max-height: calc(100vh -
|
|
3793
|
-
min-height: calc(100vh -
|
|
3911
|
+
max-height: calc(100vh - 160px)!important;
|
|
3912
|
+
min-height: calc(100vh - 160px) !important;
|
|
3794
3913
|
}
|
|
3795
3914
|
|
|
3796
3915
|
&--smallDisplay {
|
|
@@ -3801,296 +3920,192 @@ $card-img-size-small: 140px;
|
|
|
3801
3920
|
}
|
|
3802
3921
|
}
|
|
3803
3922
|
|
|
3804
|
-
&--
|
|
3805
|
-
max-height:
|
|
3806
|
-
}
|
|
3807
|
-
|
|
3808
|
-
.ng-scroll-content {
|
|
3809
|
-
margin-left: 0 !important;
|
|
3810
|
-
margin-right: 0 !important;
|
|
3811
|
-
min-width: calc(100% - 1rem) !important;
|
|
3812
|
-
width: calc(100% - 1rem) !important;
|
|
3813
|
-
}
|
|
3814
|
-
}
|
|
3815
|
-
|
|
3816
|
-
.columns {
|
|
3817
|
-
margin-right: 0.8rem;
|
|
3818
|
-
margin-left: rem(12);
|
|
3819
|
-
margin-top: 12px;
|
|
3820
|
-
margin-bottom: 0;
|
|
3821
|
-
width: calc(100% + 11px);
|
|
3822
|
-
|
|
3823
|
-
.column {
|
|
3824
|
-
padding-top: 0;
|
|
3825
|
-
padding-bottom: 0px;
|
|
3826
|
-
}
|
|
3827
|
-
}
|
|
3828
|
-
|
|
3829
|
-
&__head-container {
|
|
3830
|
-
display: flex;
|
|
3831
|
-
justify-content: flex-end;
|
|
3832
|
-
align-items: center;
|
|
3833
|
-
margin: 30px 30px 20px 0;
|
|
3834
|
-
|
|
3835
|
-
&__btnGroup {
|
|
3836
|
-
margin-right: 13px;
|
|
3837
|
-
opacity: 0;
|
|
3838
|
-
visibility: hidden;
|
|
3839
|
-
transition: opacity .3s ease-in-out;
|
|
3840
|
-
|
|
3841
|
-
&__visible {
|
|
3842
|
-
opacity: 1;
|
|
3843
|
-
visibility: visible;
|
|
3844
|
-
}
|
|
3845
|
-
|
|
3846
|
-
&__removeBtn {
|
|
3847
|
-
margin-right: 13px;
|
|
3848
|
-
}
|
|
3923
|
+
&--smallUploadDisplay {
|
|
3924
|
+
max-height: 230px!important;
|
|
3849
3925
|
}
|
|
3850
3926
|
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
font-size: 14px;
|
|
3854
|
-
color: $img-grey-color;
|
|
3855
|
-
line-height: 40px;
|
|
3927
|
+
&--window {
|
|
3928
|
+
max-height: unset!important;
|
|
3856
3929
|
}
|
|
3857
|
-
}
|
|
3858
|
-
|
|
3859
|
-
&__container {
|
|
3860
|
-
padding: 0.75rem!important;
|
|
3861
|
-
display:flex;
|
|
3862
|
-
justify-content: center;
|
|
3863
|
-
align-items: center;
|
|
3864
|
-
background-color: $img-gray-background;
|
|
3865
|
-
margin: 0;
|
|
3866
|
-
transform: translateY(-16px);
|
|
3867
|
-
|
|
3868
|
-
&__toolsContainer {
|
|
3869
|
-
display: flex;
|
|
3870
|
-
justify-content: center;
|
|
3871
|
-
align-items: center;
|
|
3872
|
-
margin-bottom: 50px;
|
|
3873
3930
|
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
p {
|
|
3881
|
-
margin: 0!important;
|
|
3882
|
-
color: $img-main-text;
|
|
3883
|
-
font-size: rem(12);
|
|
3884
|
-
line-height: rem(14);
|
|
3885
|
-
}
|
|
3886
|
-
|
|
3887
|
-
i {
|
|
3888
|
-
font-size: rem(18);
|
|
3889
|
-
margin: 0 0 10px;
|
|
3890
|
-
}
|
|
3891
|
-
|
|
3892
|
-
&--button {
|
|
3893
|
-
background-color: $img-green-color;
|
|
3894
|
-
color: $img-white!important;
|
|
3895
|
-
padding: 10px;
|
|
3896
|
-
border-radius: 3px;
|
|
3897
|
-
transition: .3s ease;
|
|
3898
|
-
white-space: nowrap;
|
|
3899
|
-
display: flex;
|
|
3900
|
-
justify-content: center;
|
|
3901
|
-
align-items: center;
|
|
3902
|
-
position: absolute;
|
|
3903
|
-
top: 80px;
|
|
3904
|
-
left: 50%;
|
|
3905
|
-
transform: translateX(-50%);
|
|
3906
|
-
height: 35px;
|
|
3907
|
-
margin: 0;
|
|
3908
|
-
&:hover, &:focus {
|
|
3909
|
-
background-color: darken($img-green-color, 15%);
|
|
3910
|
-
color: $img-white!important;
|
|
3911
|
-
}
|
|
3912
|
-
p {
|
|
3913
|
-
color: $white!important;
|
|
3914
|
-
}
|
|
3915
|
-
i {
|
|
3916
|
-
margin: 0 5px 0 0;
|
|
3917
|
-
}
|
|
3918
|
-
}
|
|
3919
|
-
&:hover {
|
|
3920
|
-
color: $img-main-color;
|
|
3921
|
-
}
|
|
3922
|
-
|
|
3923
|
-
> * {
|
|
3924
|
-
-webkit-touch-callout: none; /* iOS Safari */
|
|
3925
|
-
-webkit-user-select: none; /* Safari */
|
|
3926
|
-
-khtml-user-select: none; /* Konqueror HTML */
|
|
3927
|
-
-moz-user-select: none; /* Old versions of Firefox */
|
|
3928
|
-
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
3929
|
-
user-select: none; /* Non-prefixed version, currently
|
|
3930
|
-
supported by Chrome, Edge, Opera and Firefox */
|
|
3931
|
+
&--hide {
|
|
3932
|
+
&--mosaic {
|
|
3933
|
+
min-height: 100px !important;
|
|
3934
|
+
&--small {
|
|
3935
|
+
min-height: unset !important;
|
|
3931
3936
|
}
|
|
3932
3937
|
}
|
|
3938
|
+
&--table {
|
|
3939
|
+
min-height: 170px !important;
|
|
3940
|
+
}
|
|
3933
3941
|
|
|
3934
|
-
|
|
3935
|
-
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
.ng-scroll-content {
|
|
3945
|
+
min-width: calc(100% - 1rem) !important;
|
|
3946
|
+
width: calc(100% - 1rem) !important;
|
|
3947
|
+
@include media('<tablet') {
|
|
3948
|
+
min-width: 100%!important;
|
|
3936
3949
|
}
|
|
3937
3950
|
}
|
|
3951
|
+
}
|
|
3938
3952
|
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3953
|
+
&__container {
|
|
3954
|
+
display: flex;
|
|
3955
|
+
justify-content: space-between;
|
|
3956
|
+
margin: 0 0 rem(20);
|
|
3957
|
+
|
|
3958
|
+
> div {
|
|
3959
|
+
display: flex;
|
|
3960
|
+
align-items: center;
|
|
3961
|
+
.mainColor {
|
|
3962
|
+
margin: 0;
|
|
3947
3963
|
}
|
|
3964
|
+
}
|
|
3948
3965
|
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
background-color: $img-primary-button;
|
|
3952
|
-
border-color: $img-primary-button-hover;
|
|
3953
|
-
color: #ffffff;
|
|
3966
|
+
&--window {
|
|
3967
|
+
margin: rem(30) 0 rem(20);
|
|
3954
3968
|
}
|
|
3955
|
-
}
|
|
3956
3969
|
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
padding-bottom: 30px;
|
|
3961
|
-
}
|
|
3970
|
+
&--uploadTab {
|
|
3971
|
+
margin: 0 0 rem(20);
|
|
3972
|
+
}
|
|
3962
3973
|
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3974
|
+
&__boxAction {
|
|
3975
|
+
width: 525px;
|
|
3976
|
+
overflow: visible;
|
|
3977
|
+
display: flex;
|
|
3978
|
+
position: relative;
|
|
3979
|
+
justify-content: flex-end;
|
|
3980
|
+
margin-right: 13px;
|
|
3981
|
+
height: 40px;
|
|
3982
|
+
align-items: center;
|
|
3983
|
+
transform: translate(-41px,-3px);
|
|
3968
3984
|
|
|
3969
|
-
|
|
3970
|
-
margin-bottom: 31px;
|
|
3971
|
-
p {
|
|
3972
|
-
margin-bottom: 12px;
|
|
3973
|
-
font-size: 14px;
|
|
3974
|
-
}
|
|
3975
|
-
input, button {
|
|
3976
|
-
width: 100%;
|
|
3977
|
-
height: 40px;
|
|
3978
|
-
border: 1px solid #DEE2ED;
|
|
3979
|
-
border-radius: 3px;
|
|
3980
|
-
color: $img-main-text;
|
|
3981
|
-
padding-left: 20px;
|
|
3982
|
-
padding-right: 20px;
|
|
3985
|
+
&__confirmSup {
|
|
3983
3986
|
display: flex;
|
|
3984
3987
|
justify-content: space-between;
|
|
3985
|
-
|
|
3988
|
+
align-items: center;
|
|
3989
|
+
border-left: solid 1px #d8d8d8;
|
|
3990
|
+
color: $img-grey-color;
|
|
3991
|
+
padding-left: 1rem;
|
|
3992
|
+
width: 0;
|
|
3993
|
+
position: absolute;
|
|
3994
|
+
opacity: 0;
|
|
3995
|
+
transition: 0s;
|
|
3996
|
+
visibility: hidden;
|
|
3997
|
+
z-index: 2;
|
|
3986
3998
|
|
|
3987
|
-
|
|
3988
|
-
|
|
3989
|
-
|
|
3999
|
+
&--visible {
|
|
4000
|
+
max-width: unset;
|
|
4001
|
+
width: auto;
|
|
4002
|
+
opacity: 1;
|
|
4003
|
+
transition: 0s;
|
|
4004
|
+
visibility: visible;
|
|
4005
|
+
|
|
4006
|
+
p {
|
|
4007
|
+
transition: left .3s ease-in-out;
|
|
4008
|
+
right: 100%;
|
|
4009
|
+
left: auto;
|
|
4010
|
+
white-space: nowrap;
|
|
4011
|
+
margin-right: 30px;
|
|
4012
|
+
}
|
|
3990
4013
|
}
|
|
3991
|
-
}
|
|
3992
4014
|
|
|
3993
|
-
|
|
3994
|
-
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
4015
|
+
&__cancel {
|
|
4016
|
+
margin-right: 14px;
|
|
4017
|
+
background-color: white;
|
|
4018
|
+
border-color: #dbdbdb;
|
|
4019
|
+
color: $img-main-text;
|
|
4020
|
+
}
|
|
3998
4021
|
|
|
3999
|
-
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4022
|
+
&__text {
|
|
4023
|
+
font-size: 14px;
|
|
4024
|
+
position: absolute;
|
|
4025
|
+
left: -126%;
|
|
4026
|
+
transition: font-size .3s ease-in-out, left .3s ease-in-out;
|
|
4027
|
+
}
|
|
4003
4028
|
}
|
|
4004
4029
|
|
|
4005
|
-
&
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
font-weight: 600;
|
|
4010
|
-
}
|
|
4030
|
+
&__delBtn {
|
|
4031
|
+
i {
|
|
4032
|
+
margin-right: 13px!important;
|
|
4033
|
+
}
|
|
4011
4034
|
}
|
|
4012
4035
|
|
|
4013
|
-
&
|
|
4014
|
-
margin-
|
|
4036
|
+
&__import {
|
|
4037
|
+
margin-right: 13px;
|
|
4038
|
+
i {
|
|
4039
|
+
margin-right: 13px!important;
|
|
4040
|
+
}
|
|
4015
4041
|
}
|
|
4016
4042
|
}
|
|
4017
4043
|
|
|
4018
|
-
&
|
|
4019
|
-
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
display: inline-block;
|
|
4025
|
-
}
|
|
4044
|
+
&__buttonBox {
|
|
4045
|
+
margin: 0;
|
|
4046
|
+
width: rem(40);
|
|
4047
|
+
height: rem(40);
|
|
4048
|
+
border: solid $img-light-white-color;
|
|
4049
|
+
border-width: 1px 0 1px 1px;
|
|
4026
4050
|
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
}
|
|
4051
|
+
border-radius: 3px 0 0 3px;
|
|
4052
|
+
outline: none!important;
|
|
4030
4053
|
|
|
4031
|
-
|
|
4032
|
-
margin: 0
|
|
4033
|
-
|
|
4054
|
+
> div {
|
|
4055
|
+
margin-top: 0;
|
|
4056
|
+
margin-bottom: 0;
|
|
4057
|
+
height: 40px;
|
|
4058
|
+
&:nth-child(2) {
|
|
4059
|
+
border: solid $img-light-white-color;
|
|
4060
|
+
border-width: 1px 1px 1px 0;
|
|
4061
|
+
transform: translateY(-1px);
|
|
4062
|
+
border-radius: 0 3px 3px 0;
|
|
4063
|
+
}
|
|
4064
|
+
div {
|
|
4065
|
+
height: 38px;
|
|
4066
|
+
margin: 0!important;
|
|
4067
|
+
}
|
|
4034
4068
|
}
|
|
4035
|
-
}
|
|
4036
|
-
|
|
4037
|
-
&__titleSEO {
|
|
4038
|
-
margin: 0 0 20px;
|
|
4039
|
-
|
|
4040
|
-
.mainColor {
|
|
4041
|
-
font-size: rem(18);
|
|
4042
|
-
font-weight: 500;
|
|
4043
|
-
}
|
|
4044
|
-
}
|
|
4045
4069
|
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
p {
|
|
4049
|
-
font-size: 14px;
|
|
4050
|
-
display: inline-block;
|
|
4051
|
-
margin: 0;
|
|
4070
|
+
.actifDisplayed {
|
|
4071
|
+
color:$img-main-color;
|
|
4052
4072
|
}
|
|
4053
4073
|
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
margin-left: 10px;
|
|
4057
|
-
color: $img-green-color;
|
|
4074
|
+
i {
|
|
4075
|
+
margin: 0;
|
|
4058
4076
|
}
|
|
4059
|
-
}
|
|
4060
|
-
}
|
|
4061
|
-
|
|
4062
|
-
&__divider {
|
|
4063
|
-
display: block;
|
|
4064
|
-
width: 100%;
|
|
4065
|
-
border-bottom: 2px dashed #EFF1F6;
|
|
4066
|
-
margin: 30px 0;
|
|
4067
4077
|
}
|
|
4068
4078
|
|
|
4069
|
-
&
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4079
|
+
&__cards {
|
|
4080
|
+
display: flex;
|
|
4081
|
+
justify-content: space-between;
|
|
4082
|
+
flex-wrap: wrap;
|
|
4083
|
+
align-items: center;
|
|
4084
|
+
padding-top: 30px;
|
|
4085
|
+
margin-right: calc(0.8rem - 20px);
|
|
4086
|
+
margin-left: 0.3rem;
|
|
4087
|
+
margin-bottom: 30px;
|
|
4078
4088
|
|
|
4079
|
-
&__save {
|
|
4080
|
-
padding: 8px 18px;
|
|
4081
|
-
margin: 0!important;
|
|
4082
|
-
&--disable {
|
|
4083
|
-
cursor: not-allowed;
|
|
4084
|
-
}
|
|
4085
|
-
}
|
|
4086
4089
|
}
|
|
4087
4090
|
}
|
|
4088
4091
|
|
|
4089
|
-
|
|
4090
|
-
|
|
4092
|
+
&--pexels {
|
|
4093
|
+
margin-top: -30px;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.subHeaderActions .button i {
|
|
4097
|
+
margin-right: 0;
|
|
4091
4098
|
}
|
|
4092
4099
|
}
|
|
4093
4100
|
|
|
4094
|
-
|
|
4095
|
-
|
|
4101
|
+
@media screen and (max-width: 768px) {
|
|
4102
|
+
.wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
|
|
4103
|
+
max-height: none!important;
|
|
4104
|
+
|
|
4105
|
+
.ng-scroll-content {
|
|
4106
|
+
margin: 0 !important;
|
|
4107
|
+
min-width: 100%!important;
|
|
4108
|
+
width: 100%!important;
|
|
4109
|
+
}
|
|
4110
|
+
}
|
|
4096
4111
|
}
|