@wizishop/img-manager 0.2.86 → 0.2.89

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.
@@ -1070,12 +1070,9 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
1070
1070
  font-weight: 500;
1071
1071
  }
1072
1072
  }
1073
- .img-editor__infoSection__propertySEO__tooltips {
1074
- i {
1075
- font-size: rem(16);
1076
- color: $main-text;
1077
- }
1078
- }.wz-selector {
1073
+ image-cropper {
1074
+ max-height: 60vh;
1075
+ }.wz-selector {
1079
1076
  &__default {
1080
1077
  position: relative;
1081
1078
  &__base {
@@ -1146,231 +1143,178 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
1146
1143
  }
1147
1144
  }
1148
1145
  }
1149
- .mosaic {
1150
- width: 100%;
1151
- display: flex;
1152
- flex-wrap: wrap;
1153
- position: relative;
1154
- min-height: rem(512);
1146
+ //.wz-img-manager useful to keep the css priority
1147
+ .wz-img-manager .table-view {
1155
1148
 
1156
- &--displayPexelsImg {
1157
- min-height: unset;
1158
- }
1159
1149
 
1160
- &:not(.fullSize) {
1161
- width: calc(100% + 24px);
1162
- transform: translateX(-12px);
1163
- .mosaic__container__cards {
1164
- padding-bottom: 40px;
1165
- > * {
1166
- width: calc(25% - 24px);
1167
- margin: 0 12px rem(24) 12px;
1168
- @include media('>=desktop','<1300px') {
1169
- width: calc(33.33% - 24px);
1170
- margin: 0 12px rem(24) 12px;
1150
+ &__row {
1151
+ td {
1152
+ vertical-align: middle;
1171
1153
  }
1172
- }
1173
- }
1174
- &.small {
1175
- min-height: 0;
1176
- .mosaic__container__loader {
1177
- top: 0;
1178
- transform: translateX(-50%);
1179
- max-height: 200px;
1180
- }
1181
- .mosaic {
1182
1154
  &__container {
1183
- &__cards {
1184
- padding-bottom: 40px;
1185
- > * {
1186
- width: calc(12.5% - 24px);
1187
- margin: 0 12px rem(24) 12px;
1188
- @include media('>=1400px','<1600px') {
1189
- width: calc(14% - 24px);
1190
- margin: 0 12px rem(24) 12px;
1191
- }
1192
- @include media('>=1200px','<1400px') {
1193
- width: calc(16.66% - 24px);
1194
- margin: 0 12px rem(24) 12px;
1195
- }
1196
- @include media('>=desktop','<1200px') {
1197
- width: calc(20% - 24px);
1198
- margin: 0 12px rem(24) 12px;
1199
- }
1155
+ display: flex;
1156
+ align-items: center;
1157
+ width: 100%;
1158
+
1159
+ &__imgContainer {
1160
+ margin-right: 20px;
1161
+ position: relative;
1162
+ display: block;
1163
+ min-width: 60px;
1164
+ cursor: pointer;
1165
+
1166
+ &::before {
1167
+ content: '';
1168
+ display: block;
1169
+ padding-top: 100%;
1170
+ }
1171
+
1172
+ &__img {
1173
+ margin: 0!important;
1174
+ position: absolute;
1175
+ top: 50%;
1176
+ left: 50%;
1177
+ max-width: 100%;
1178
+ max-height:100%;
1179
+ width: auto;
1180
+ height: auto;
1181
+ transform: translate(-50%, -50%);
1182
+ object-fit: contain;
1183
+ }
1184
+
1185
+ &.imgSelected {
1186
+
1187
+ &:after {
1188
+ z-index: 1000;
1189
+ content: '';
1190
+ display: block;
1191
+ position: absolute;
1192
+ width: 100%;
1193
+ height: 4px;
1194
+ background-color: $img-main-color;
1195
+ bottom: 0;
1196
+ left: 0;
1197
+ transform: translateZ(0);
1198
+ }
1199
+ }
1200
+
1201
+ &__overlay {
1202
+ position: absolute;
1203
+ top: 25%;
1204
+ left: 25%;
1205
+ height: 100%;
1206
+ width: 100%;
1207
+
1208
+ i {
1209
+ font-size: 30px;
1210
+ color: grey;
1211
+ }
1212
+ }
1213
+ }
1214
+
1215
+ &__name {
1216
+ display: inline-block;
1217
+ background-color: transparent;
1218
+ white-space: nowrap;
1219
+ overflow: hidden;
1220
+ text-overflow: ellipsis;
1221
+ color: $main-text;
1222
+ font-size: 14px;
1223
+ cursor: initial;
1224
+ }
1225
+ }
1226
+ }
1227
+
1228
+ &__dropdown-options {
1229
+ &__label {
1230
+ &--disable {
1231
+ cursor: not-allowed;
1232
+ i {
1233
+ cursor: not-allowed;
1234
+ }
1200
1235
  }
1201
- }
1202
1236
  }
1203
- }
1204
1237
  }
1238
+ }
1239
+
1240
+ .wz-img-manager .table-view .checked {
1241
+ color: $img-main-color;
1242
+ }
1243
+
1244
+ .wz-img-manager .table-view .checked.disabled {
1245
+ color: grey;
1246
+ }
1247
+
1248
+
1249
+ .wz-img-manager .table-view .disabled {
1250
+ cursor: not-allowed;
1251
+ }
1252
+
1253
+
1254
+ .wz-img-manager .is-wizi-hoverable .dropdown-trigger:before {
1255
+ width: 5rem;
1256
+ }
1257
+
1258
+ .table-view .wzImgMngInput {
1259
+ border-radius: 3px;
1260
+ }
1261
+
1262
+ .table-view .wzImgMngInput:active.desabled, .table-view .wzImgMngInput:focus.desabled {
1263
+ border: solid transparent 1px;
1264
+ }
1265
+
1266
+ .wz-img-manager .table-view .dropdown-menu {
1267
+ left: -165px;
1268
+ }
1269
+
1270
+ .grey {
1271
+ color: $img-grey-color;
1272
+ }
1273
+ .wz-img-manager {
1274
+
1275
+ &__selectionHandler {
1276
+ margin-top: -50px;
1205
1277
  }
1206
- &.fullSize {
1207
- width: calc(100% + 24px);
1208
- transform: translateX(-12px);
1209
- @include media('<420px') {
1278
+
1279
+ &__module {
1280
+ position: fixed;
1281
+ bottom: 0;
1282
+ left: 0;
1283
+ width: 100%;
1284
+ height: 0;
1285
+ transition: height .3s ease;
1286
+ z-index: 2147483647; // snackbar 10
1287
+ transform: translateZ(0);
1288
+
1289
+ &:before {
1290
+ content: '';
1291
+ display: block;
1292
+ position: absolute;
1293
+ top: 0;
1294
+ left: 0;
1210
1295
  width: 100%;
1211
- transform: none;
1296
+ height: 3px;
1297
+ background-color: $img-main-color;
1298
+ z-index: 999;
1212
1299
  }
1213
- .mosaic__container__cards {
1214
- > * {
1215
- width: calc(16.66% - 24px);
1216
- margin: 0 12px rem(24) 12px;
1217
- @include media('>=1400px','<1600px') {
1218
- width: calc(20% - 24px);
1219
- margin: 0 12px rem(24) 12px;
1220
- }
1221
- @include media('>=desktop','<1400px') {
1222
- width: calc(25% - 24px);
1223
- margin: 0 12px rem(24) 12px;
1224
- }
1225
- @include media('>=tablet','<desktop') {
1226
- width: calc(33.33% - 24px);
1227
- margin: 0 12px rem(24) 12px;
1228
- }
1229
- @include media('>=400px','<tablet') {
1230
- width: calc(50% - 24px);
1231
- margin: 0 12px rem(24) 12px;
1232
- }
1233
- @include media('<420px') {
1234
- width: 100%;
1235
- margin: 0 0 15px;
1236
- }
1300
+
1301
+ &--closed {
1302
+ height: 0;
1303
+ }
1304
+
1305
+ // .wz-img-manager__module--small
1306
+ &--small {
1307
+ height: 320px;
1308
+ @include media('<tablet') {
1309
+ height: calc(100vh - 35px);
1237
1310
  }
1238
1311
  }
1239
- &.small {
1240
- .mosaic__container__loader {
1241
- top: 0;
1242
- transform: translateX(-50%);
1243
- max-height: 200px;
1244
- }
1245
- .mosaic {
1246
- &__search {
1247
- display: none;
1248
- @include media('<tablet') {
1249
- display: block;
1250
- margin: 0 0 20px;
1251
- padding: 0;
1252
- width: 100%;
1253
- }
1254
- }
1255
- &__container {
1256
- &__cards {
1257
- > * {
1258
- width: calc(10% - 24px);
1259
- margin: 0 12px rem(24) 12px;
1260
- @include media('>=1400px','<1600px') {
1261
- width: calc(11.11% - 24px);
1262
- margin: 0 12px rem(24) 12px;
1263
- }
1264
- @include media('>=desktop','<1400px') {
1265
- width: calc(12.5% - 24px);
1266
- margin: 0 12px rem(24) 12px;
1267
- }
1268
- @include media('>=tablet','<desktop') {
1269
- width: calc(20% - 24px);
1270
- margin: 0 12px rem(24) 12px;
1271
- }
1272
- @include media('>=500px','<tablet') {
1273
- width: calc(33.33% - 24px);
1274
- margin: 0 12px rem(24) 12px;
1275
- }
1276
- @include media('<500px') {
1277
- width: calc(50% - 24px);
1278
- margin: 0 12px rem(24) 12px;
1279
- }
1280
- }
1281
- }
1282
- }
1283
- }
1284
- }
1285
- }
1286
- &__search {
1287
- width: calc(100% - 24px);
1288
- margin: 0 auto rem(20);
1289
- }
1290
- &__pagination {
1291
- width: 100%;
1292
- }
1293
- &__container {
1294
- &__loader {
1295
- position: absolute;
1296
- top: 50%;
1297
- left: 50%;
1298
- transform: translate(-50%,-50%);
1299
- max-width: 300px;
1300
- max-height: 300px;
1301
- display: flex;
1302
- flex-wrap: wrap;
1303
- flex-direction: column;
1304
- justify-content: center;
1305
- align-items: center;
1306
- }
1307
- &__cards {
1308
- width: 100%;
1309
- display: flex;
1310
- flex-wrap: wrap;
1311
- &--padding {
1312
- padding-right: 20px;
1313
- @include media('<tablet') {
1314
- width: calc(100% + 24px);
1315
- padding: 0;
1316
- }
1317
- }
1318
- }
1319
- }
1320
- }
1321
-
1322
- .mosaic__container__cards {
1323
- z-index: 1;
1324
- & + .mosaic__pagination {
1325
- position: relative;
1326
- z-index: 2;
1327
- }
1328
- }
1329
- .wz-img-manager {
1330
-
1331
- &__selectionHandler {
1332
- margin-top: -50px;
1333
- }
1334
-
1335
- &__module {
1336
- position: fixed;
1337
- bottom: 0;
1338
- left: 0;
1339
- width: 100%;
1340
- height: 0;
1341
- transition: height .3s ease;
1342
- z-index: 2147483647; // snackbar 10
1343
- transform: translateZ(0);
1344
-
1345
- &:before {
1346
- content: '';
1347
- display: block;
1348
- position: absolute;
1349
- top: 0;
1350
- left: 0;
1351
- width: 100%;
1352
- height: 3px;
1353
- background-color: $img-main-color;
1354
- z-index: 999;
1355
- }
1356
-
1357
- &--closed {
1358
- height: 0;
1359
- }
1360
-
1361
- // .wz-img-manager__module--small
1362
- &--small {
1363
- height: 320px;
1364
- @include media('<tablet') {
1365
- height: calc(100vh - 35px);
1366
- }
1367
- }
1368
-
1369
- // .wz-img-manager__module--full
1370
- &--full {
1371
- height: calc(100vh - 50px);
1372
- @include media('<tablet') {
1373
- height: calc(100vh - 35px);
1312
+
1313
+ // .wz-img-manager__module--full
1314
+ &--full {
1315
+ height: calc(100vh - 50px);
1316
+ @include media('<tablet') {
1317
+ height: calc(100vh - 35px);
1374
1318
  }
1375
1319
  }
1376
1320
 
@@ -1491,443 +1435,226 @@ $base-font: 'Work Sans', helvetica !default;@mixin simple_transition($type: null
1491
1435
  }
1492
1436
 
1493
1437
 
1494
- //.wz-img-manager useful to keep the css priority
1495
- .wz-img-manager .table-view {
1496
-
1497
-
1498
- &__row {
1499
- td {
1500
- vertical-align: middle;
1501
- }
1502
- &__container {
1503
- display: flex;
1504
- align-items: center;
1505
- width: 100%;
1438
+ .img-editor__infoSection__propertySEO__tooltips {
1439
+ i {
1440
+ font-size: rem(16);
1441
+ color: $main-text;
1442
+ }
1443
+ }.wz-img-manager .images-view {
1444
+ text-align: left;
1506
1445
 
1507
- &__imgContainer {
1508
- margin-right: 20px;
1509
- position: relative;
1510
- display: block;
1511
- min-width: 60px;
1512
- cursor: pointer;
1446
+ &.fullSize {
1447
+ & + .images-view__scroll {
1448
+ max-height: 1160px;
1449
+ }
1450
+ }
1513
1451
 
1514
- &::before {
1515
- content: '';
1516
- display: block;
1517
- padding-top: 100%;
1518
- }
1452
+ &__scroll {
1453
+ position: relative;
1454
+ height: 100%;
1455
+ z-index: 1;
1519
1456
 
1520
- &__img {
1521
- margin: 0!important;
1522
- position: absolute;
1523
- top: 50%;
1524
- left: 50%;
1525
- max-width: 100%;
1526
- max-height:100%;
1527
- width: auto;
1528
- height: auto;
1529
- transform: translate(-50%, -50%);
1530
- object-fit: contain;
1531
- }
1457
+ &--full {
1458
+ max-height: calc(100vh - 160px)!important;
1459
+ min-height: calc(100vh - 160px) !important;
1460
+ }
1532
1461
 
1533
- &.imgSelected {
1462
+ &--smallDisplay {
1463
+ max-height: 275px!important;
1464
+ @include media('<tablet') {
1465
+ max-height: calc(100vh - 90px)!important;
1466
+ min-height: calc(100vh - 90px) !important;
1467
+ }
1468
+ }
1534
1469
 
1535
- &:after {
1536
- z-index: 1000;
1537
- content: '';
1538
- display: block;
1539
- position: absolute;
1540
- width: 100%;
1541
- height: 4px;
1542
- background-color: $img-main-color;
1543
- bottom: 0;
1544
- left: 0;
1545
- transform: translateZ(0);
1546
- }
1547
- }
1470
+ &--smallUploadDisplay {
1471
+ max-height: 230px!important;
1472
+ }
1548
1473
 
1549
- &__overlay {
1550
- position: absolute;
1551
- top: 25%;
1552
- left: 25%;
1553
- height: 100%;
1554
- width: 100%;
1474
+ &--window {
1475
+ max-height: unset!important;
1476
+ }
1555
1477
 
1556
- i {
1557
- font-size: 30px;
1558
- color: grey;
1559
- }
1478
+ &--hide {
1479
+ &--mosaic {
1480
+ min-height: 100px !important;
1481
+ &--small {
1482
+ min-height: unset !important;
1560
1483
  }
1561
1484
  }
1562
-
1563
- &__name {
1564
- display: inline-block;
1565
- background-color: transparent;
1566
- white-space: nowrap;
1567
- overflow: hidden;
1568
- text-overflow: ellipsis;
1569
- color: $main-text;
1570
- font-size: 14px;
1571
- cursor: initial;
1485
+ &--table {
1486
+ min-height: 170px !important;
1572
1487
  }
1488
+
1573
1489
  }
1574
- }
1575
1490
 
1576
- &__dropdown-options {
1577
- &__label {
1578
- &--disable {
1579
- cursor: not-allowed;
1580
- i {
1581
- cursor: not-allowed;
1582
- }
1491
+ .ng-scroll-content {
1492
+ min-width: calc(100% - 1rem) !important;
1493
+ width: calc(100% - 1rem) !important;
1494
+ @include media('<tablet') {
1495
+ min-width: 100%!important;
1583
1496
  }
1584
1497
  }
1585
1498
  }
1586
- }
1587
1499
 
1588
- .wz-img-manager .table-view .checked {
1589
- color: $img-main-color;
1590
- }
1500
+ &__container {
1501
+ display: flex;
1502
+ justify-content: space-between;
1503
+ margin: 0 0 rem(20);
1591
1504
 
1592
- .wz-img-manager .table-view .checked.disabled {
1593
- color: grey;
1594
- }
1595
-
1596
-
1597
- .wz-img-manager .table-view .disabled {
1598
- cursor: not-allowed;
1599
- }
1600
-
1601
-
1602
- .wz-img-manager .is-wizi-hoverable .dropdown-trigger:before {
1603
- width: 5rem;
1604
- }
1605
-
1606
- .table-view .wzImgMngInput {
1607
- border-radius: 3px;
1608
- }
1609
-
1610
- .table-view .wzImgMngInput:active.desabled, .table-view .wzImgMngInput:focus.desabled {
1611
- border: solid transparent 1px;
1612
- }
1613
-
1614
- .wz-img-manager .table-view .dropdown-menu {
1615
- left: -165px;
1616
- }
1617
-
1618
- .grey {
1619
- color: $img-grey-color;
1620
- }
1621
- .wz-img-manager .img-editor {
1622
- &__scroll {
1623
- position: relative;
1624
- height: 100%;
1625
-
1626
- &--full {
1627
- max-height: calc(100vh - 90px)!important;
1628
- min-height: calc(100vh - 90px) !important;
1629
- }
1630
-
1631
- &--smallDisplay {
1632
- max-height: 275px!important;
1633
- @include media('<tablet') {
1634
- max-height: calc(100vh - 90px)!important;
1635
- min-height: calc(100vh - 90px) !important;
1636
- }
1637
- }
1638
-
1639
- &--window {
1640
- max-height: none;
1641
- }
1642
-
1643
- .ng-scroll-content {
1644
- margin-left: 0 !important;
1645
- margin-right: 0 !important;
1646
- min-width: calc(100% - 1rem) !important;
1647
- width: calc(100% - 1rem) !important;
1648
- }
1649
- }
1650
-
1651
- .columns {
1652
- margin-right: 0.8rem;
1653
- margin-left: rem(12);
1654
- margin-top: 12px;
1655
- margin-bottom: 0;
1656
- width: calc(100% + 11px);
1657
-
1658
- .column {
1659
- padding-top: 0;
1660
- padding-bottom: 0px;
1661
- }
1662
- }
1663
-
1664
- &__head-container {
1505
+ > div {
1665
1506
  display: flex;
1666
- justify-content: flex-end;
1667
1507
  align-items: center;
1668
- margin: 30px 30px 20px 0;
1669
-
1670
- &__btnGroup {
1671
- margin-right: 13px;
1672
- opacity: 0;
1673
- visibility: hidden;
1674
- transition: opacity .3s ease-in-out;
1675
-
1676
- &__visible {
1677
- opacity: 1;
1678
- visibility: visible;
1679
- }
1680
-
1681
- &__removeBtn {
1682
- margin-right: 13px;
1683
- }
1508
+ .mainColor {
1509
+ margin: 0;
1684
1510
  }
1511
+ }
1685
1512
 
1686
- &__close {
1687
- cursor: pointer;
1688
- font-size: 14px;
1689
- color: $img-grey-color;
1690
- line-height: 40px;
1513
+ &--window {
1514
+ margin: rem(30) 0 rem(20);
1691
1515
  }
1692
- }
1693
1516
 
1694
- &__container {
1695
- padding: 0.75rem!important;
1696
- display:flex;
1697
- justify-content: center;
1698
- align-items: center;
1699
- background-color: $img-gray-background;
1700
- margin: 0;
1701
- transform: translateY(-16px);
1517
+ &--uploadTab {
1518
+ margin: 0 0 rem(20);
1519
+ }
1702
1520
 
1703
- &__toolsContainer {
1521
+ &__boxAction {
1522
+ width: 525px;
1523
+ overflow: visible;
1704
1524
  display: flex;
1705
- justify-content: center;
1525
+ position: relative;
1526
+ justify-content: flex-end;
1527
+ margin-right: 13px;
1528
+ height: 40px;
1706
1529
  align-items: center;
1707
- margin-bottom: 50px;
1708
-
1709
- &__tool {
1710
- color: $img-second-color;
1711
- margin-right: 30px;
1712
- text-align: center;
1713
- cursor: pointer;
1530
+ transform: translate(-41px,-3px);
1714
1531
 
1715
- p {
1716
- margin: 0!important;
1717
- color: $img-main-text;
1718
- font-size: rem(12);
1719
- line-height: rem(14);
1720
- }
1532
+ &__confirmSup {
1533
+ display: flex;
1534
+ justify-content: space-between;
1535
+ align-items: center;
1536
+ border-left: solid 1px #d8d8d8;
1537
+ color: $img-grey-color;
1538
+ padding-left: 1rem;
1539
+ width: 0;
1540
+ position: absolute;
1541
+ opacity: 0;
1542
+ transition: 0s;
1543
+ visibility: hidden;
1544
+ z-index: 2;
1721
1545
 
1722
- i {
1723
- font-size: rem(18);
1724
- margin: 0 0 10px;
1725
- }
1546
+ &--visible {
1547
+ max-width: unset;
1548
+ width: auto;
1549
+ opacity: 1;
1550
+ transition: 0s;
1551
+ visibility: visible;
1726
1552
 
1727
- &--button {
1728
- background-color: $img-green-color;
1729
- color: $img-white!important;
1730
- padding: 10px;
1731
- border-radius: 3px;
1732
- transition: .3s ease;
1733
- white-space: nowrap;
1734
- display: flex;
1735
- justify-content: center;
1736
- align-items: center;
1737
- position: absolute;
1738
- top: 80px;
1739
- left: 50%;
1740
- transform: translateX(-50%);
1741
- height: 35px;
1742
- margin: 0;
1743
- &:hover, &:focus {
1744
- background-color: darken($img-green-color, 15%);
1745
- color: $img-white!important;
1746
- }
1747
- p {
1748
- color: $white!important;
1749
- }
1750
- i {
1751
- margin: 0 5px 0 0;
1752
- }
1553
+ p {
1554
+ transition: left .3s ease-in-out;
1555
+ right: 100%;
1556
+ left: auto;
1557
+ white-space: nowrap;
1558
+ margin-right: 30px;
1559
+ }
1753
1560
  }
1754
- &:hover {
1755
- color: $img-main-color;
1561
+
1562
+ &__cancel {
1563
+ margin-right: 14px;
1564
+ background-color: white;
1565
+ border-color: #dbdbdb;
1566
+ color: $img-main-text;
1756
1567
  }
1757
1568
 
1758
- > * {
1759
- -webkit-touch-callout: none; /* iOS Safari */
1760
- -webkit-user-select: none; /* Safari */
1761
- -khtml-user-select: none; /* Konqueror HTML */
1762
- -moz-user-select: none; /* Old versions of Firefox */
1763
- -ms-user-select: none; /* Internet Explorer/Edge */
1764
- user-select: none; /* Non-prefixed version, currently
1765
- supported by Chrome, Edge, Opera and Firefox */
1569
+ &__text {
1570
+ font-size: 14px;
1571
+ position: absolute;
1572
+ left: -126%;
1573
+ transition: font-size .3s ease-in-out, left .3s ease-in-out;
1766
1574
  }
1767
1575
  }
1768
1576
 
1769
- &__RotationDropdown {
1770
- min-width: 16rem;
1577
+ &__delBtn {
1578
+ i {
1579
+ margin-right: 13px!important;
1580
+ }
1771
1581
  }
1772
- }
1773
1582
 
1774
- &__name {
1775
- font-size: 16px;
1776
- max-width: 50%;
1777
- color: $img-grey-color;
1778
- text-align: center;
1779
- white-space: nowrap;
1780
- overflow: hidden;
1781
- text-overflow: ellipsis;
1782
- }
1783
-
1784
- .button {
1785
- min-height: 35px;
1786
- background-color: $img-primary-button;
1787
- border-color: $img-primary-button-hover;
1788
- color: #ffffff;
1583
+ &__import {
1584
+ margin-right: 13px;
1585
+ i {
1586
+ margin-right: 13px!important;
1587
+ }
1588
+ }
1789
1589
  }
1790
- }
1791
1590
 
1792
- &__image-cropper {
1793
- --cropper-overlay-color: #f5f8fa;
1794
- //--cropper-outline-color: #a5a5a573;
1795
- padding-bottom: 30px;
1796
- }
1591
+ &__buttonBox {
1592
+ margin: 0;
1593
+ width: rem(40);
1594
+ height: rem(40);
1595
+ border: solid $img-light-white-color;
1596
+ border-width: 1px 0 1px 1px;
1797
1597
 
1798
- &__infoSection {
1799
- font-size: 14px;
1800
- max-width: 360px;
1801
- padding: 0;
1802
- margin: 0 rem(30) 0 0;
1598
+ border-radius: 3px 0 0 3px;
1599
+ outline: none!important;
1803
1600
 
1804
- &__propertyEditable {
1805
- margin-bottom: 31px;
1806
- p {
1807
- margin-bottom: 12px;
1808
- font-size: 14px;
1809
- }
1810
- input, button {
1811
- width: 100%;
1601
+ > div {
1602
+ margin-top: 0;
1603
+ margin-bottom: 0;
1812
1604
  height: 40px;
1813
- border: 1px solid #DEE2ED;
1814
- border-radius: 3px;
1815
- color: $img-main-text;
1816
- padding-left: 20px;
1817
- padding-right: 20px;
1818
- display: flex;
1819
- justify-content: space-between;
1820
- font-size: 14px;
1821
-
1822
- &:hover {
1823
- color: $img-main-color;
1824
- border-color: $img-main-color;
1605
+ &:nth-child(2) {
1606
+ border: solid $img-light-white-color;
1607
+ border-width: 1px 1px 1px 0;
1608
+ transform: translateY(-1px);
1609
+ border-radius: 0 3px 3px 0;
1825
1610
  }
1826
- }
1827
-
1828
- button {
1829
- align-items: center;
1830
- background-color: transparent;
1831
- cursor: pointer;
1832
- }
1833
-
1834
- &__span, &__input {
1835
- text-overflow: ellipsis;
1836
- overflow: hidden;
1837
- white-space: nowrap;
1838
- }
1839
-
1840
- &__span {
1841
- color: $img-bleu-color;
1842
- & + i {
1843
- color: $img-bleu-color;
1844
- font-weight: 600;
1611
+ div {
1612
+ height: 38px;
1613
+ margin: 0!important;
1845
1614
  }
1846
1615
  }
1847
1616
 
1848
- &__tooltips {
1849
- margin-left: 10px;
1850
- }
1851
- }
1852
-
1853
- &__property {
1854
- &:nth-child(3), &:nth-child(4) {
1855
- margin: 0;
1856
- }
1857
- p {
1858
- font-size: 14px;
1859
- display: inline-block;
1860
- }
1861
-
1862
- .mainColor {
1863
- margin: 0!important;
1864
- }
1865
-
1866
- p:last-child {
1867
- margin: 0 0 0 10px;
1868
- color: #526384;
1869
- }
1870
- }
1871
-
1872
- &__titleSEO {
1873
- margin: 0 0 20px;
1874
-
1875
- .mainColor {
1876
- font-size: rem(18);
1877
- font-weight: 500;
1878
- }
1879
- }
1880
-
1881
- &__propertySEO {
1882
- margin-bottom: 12px;
1883
- p {
1884
- font-size: 14px;
1885
- display: inline-block;
1886
- margin: 0;
1887
- }
1888
-
1889
- .mainColor {
1890
- & ~ p {
1891
- margin-left: 10px;
1892
- color: $img-green-color;
1617
+ .actifDisplayed {
1618
+ color:$img-main-color;
1893
1619
  }
1894
- }
1895
- }
1896
1620
 
1897
- &__divider {
1898
- display: block;
1899
- width: 100%;
1900
- border-bottom: 2px dashed #EFF1F6;
1901
- margin: 30px 0;
1902
- }
1903
-
1904
- &__actions {
1905
- height: 35px;
1906
-
1907
- &__cancel {
1908
- margin-right: 19px;
1909
- background-color: white;
1910
- border-color: #dbdbdb;
1911
- color: $img-main-text;
1621
+ i {
1622
+ margin: 0;
1912
1623
  }
1624
+ }
1625
+
1626
+ &__cards {
1627
+ display: flex;
1628
+ justify-content: space-between;
1629
+ flex-wrap: wrap;
1630
+ align-items: center;
1631
+ padding-top: 30px;
1632
+ margin-right: calc(0.8rem - 20px);
1633
+ margin-left: 0.3rem;
1634
+ margin-bottom: 30px;
1913
1635
 
1914
- &__save {
1915
- padding: 8px 18px;
1916
- margin: 0!important;
1917
- &--disable {
1918
- cursor: not-allowed;
1919
- }
1920
- }
1921
1636
  }
1922
1637
  }
1923
1638
 
1924
- .dropdown-menu {
1925
- left: -50%;
1639
+ &--pexels {
1640
+ margin-top: -30px;
1641
+ }
1642
+
1643
+ .subHeaderActions .button i {
1644
+ margin-right: 0;
1926
1645
  }
1927
1646
  }
1928
1647
 
1929
- .wz-img-manager .marginBottom {
1930
- margin-bottom: 20px;
1648
+ @media screen and (max-width: 768px) {
1649
+ .wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
1650
+ max-height: none!important;
1651
+
1652
+ .ng-scroll-content {
1653
+ margin: 0 !important;
1654
+ min-width: 100%!important;
1655
+ width: 100%!important;
1656
+ }
1657
+ }
1931
1658
  }
1932
1659
  $default-color-p-alert: #1e5568;
1933
1660
  $success-color-p-alert: #11552e;
@@ -2492,6 +2219,15 @@ $green-color: #2ecc71;
2492
2219
  &--smallDisplay {
2493
2220
  margin-top: 10px;
2494
2221
  }
2222
+
2223
+ @include media('<tablet') {
2224
+ wz-input-search {
2225
+ display: block;
2226
+ width: 100%;
2227
+ max-width: 100%;
2228
+ padding-right: 6px;
2229
+ }
2230
+ }
2495
2231
  }
2496
2232
 
2497
2233
  // .pexels-lib__wrapper
@@ -2651,98 +2387,278 @@ $green-color: #2ecc71;
2651
2387
  }
2652
2388
  }
2653
2389
  }
2654
-
2655
- &__alert {
2656
- margin-right: 0.8rem;
2657
- margin-left: 0.3rem;
2658
- margin-top: 10px;
2659
- }
2660
- }
2661
-
2662
- .wz-img-manager .pexels-lib .dropdown .dropdown-menu{
2663
- min-width: 0;
2664
- width: 100%;
2665
- .dropdown-item:hover {
2666
- background-color: #fafafa;
2667
- cursor: pointer;
2668
- }
2669
- }
2670
- .wz-img-manager .input-search.field {
2671
- padding: 10px 20px;
2672
- background-color: $gray-background;
2673
- @include media('<tablet') {
2674
- padding: 0!important;
2675
- background-color: $white;
2390
+
2391
+ &__alert {
2392
+ margin-right: 0.8rem;
2393
+ margin-left: 0.3rem;
2394
+ margin-top: 10px;
2395
+ }
2396
+ }
2397
+
2398
+ .wz-img-manager .pexels-lib .dropdown .dropdown-menu{
2399
+ min-width: 0;
2400
+ width: 100%;
2401
+ .dropdown-item:hover {
2402
+ background-color: #fafafa;
2403
+ cursor: pointer;
2404
+ }
2405
+ }
2406
+ .wz-img-manager .input-search.field {
2407
+ padding: 10px 20px;
2408
+ background-color: $gray-background;
2409
+ @include media('<tablet') {
2410
+ padding: 0!important;
2411
+ background-color: $white;
2412
+ }
2413
+ &.small-padding {
2414
+ padding: 10px 20px;
2415
+ }
2416
+ .input,
2417
+ .input:focus,
2418
+ .input.is-focused,
2419
+ .input:active,
2420
+ .input.is-active {
2421
+ font-size: rem(14);
2422
+ color: $main-text;
2423
+ border: rem(1) solid $input-border-search;
2424
+ box-shadow: none;
2425
+ padding: rem(13.5) rem(20) rem(13.5) rem(48);
2426
+ border-radius: rem(3);
2427
+ margin: 0;
2428
+ height: auto;
2429
+ min-height: unset;
2430
+
2431
+ &::placeholder {
2432
+ color: $placeholder-color;
2433
+ font-weight: normal;
2434
+ }
2435
+ }
2436
+
2437
+ .input:focus,
2438
+ .input.is-focused,
2439
+ .input:active,
2440
+ .input.is-active {
2441
+ border-color: $wizishop-blue;
2442
+ }
2443
+
2444
+ .icon {
2445
+ position: absolute;
2446
+ top: 50%;
2447
+ left: 20px;
2448
+ font-size: rem(18);
2449
+ transform: translateY(-50%);
2450
+ pointer-events: none;
2451
+ font-weight: 400;
2452
+ color: $placeholder-color;
2453
+ margin: 0;
2454
+ width: rem(18);
2455
+ height: rem(18);
2456
+ }
2457
+ }
2458
+
2459
+ .wz-img-manager .wz-img-manager__module:not(.wz-img-manager__module--window) .pexels-lib__search .input-search.field {
2460
+ padding: 0;
2461
+ background-color: transparent;
2462
+ }
2463
+ .mosaic {
2464
+ width: 100%;
2465
+ display: flex;
2466
+ flex-wrap: wrap;
2467
+ position: relative;
2468
+ min-height: rem(512);
2469
+
2470
+ &--displayPexelsImg {
2471
+ min-height: unset;
2472
+ }
2473
+
2474
+ &:not(.fullSize) {
2475
+ width: calc(100% + 24px);
2476
+ transform: translateX(-12px);
2477
+ .mosaic__container__cards {
2478
+ padding-bottom: 40px;
2479
+ > * {
2480
+ width: calc(25% - 24px);
2481
+ margin: 0 12px rem(24) 12px;
2482
+ @include media('>=desktop','<1300px') {
2483
+ width: calc(33.33% - 24px);
2484
+ margin: 0 12px rem(24) 12px;
2485
+ }
2486
+ }
2487
+ }
2488
+ &.small {
2489
+ min-height: 0;
2490
+ .mosaic__container__loader {
2491
+ top: 0;
2492
+ transform: translateX(-50%);
2493
+ max-height: 200px;
2494
+ }
2495
+ .mosaic {
2496
+ &__container {
2497
+ &__cards {
2498
+ padding-bottom: 40px;
2499
+ > * {
2500
+ width: calc(12.5% - 24px);
2501
+ margin: 0 12px rem(24) 12px;
2502
+ @include media('>=1400px','<1600px') {
2503
+ width: calc(14% - 24px);
2504
+ margin: 0 12px rem(24) 12px;
2505
+ }
2506
+ @include media('>=1200px','<1400px') {
2507
+ width: calc(16.66% - 24px);
2508
+ margin: 0 12px rem(24) 12px;
2509
+ }
2510
+ @include media('>=desktop','<1200px') {
2511
+ width: calc(20% - 24px);
2512
+ margin: 0 12px rem(24) 12px;
2513
+ }
2514
+ }
2515
+ }
2516
+ }
2517
+ }
2518
+ }
2519
+ }
2520
+ &.fullSize {
2521
+ width: calc(100% + 24px);
2522
+ transform: translateX(-12px);
2523
+ @include media('<420px') {
2524
+ width: 100%;
2525
+ transform: none;
2526
+ }
2527
+ .mosaic__container__cards {
2528
+ > * {
2529
+ width: calc(16.66% - 24px);
2530
+ margin: 0 12px rem(24) 12px;
2531
+ @include media('>=1400px','<1600px') {
2532
+ width: calc(20% - 24px);
2533
+ margin: 0 12px rem(24) 12px;
2534
+ }
2535
+ @include media('>=desktop','<1400px') {
2536
+ width: calc(25% - 24px);
2537
+ margin: 0 12px rem(24) 12px;
2538
+ }
2539
+ @include media('>=tablet','<desktop') {
2540
+ width: calc(33.33% - 24px);
2541
+ margin: 0 12px rem(24) 12px;
2542
+ }
2543
+ @include media('>=400px','<tablet') {
2544
+ width: calc(50% - 24px);
2545
+ margin: 0 12px rem(24) 12px;
2546
+ }
2547
+ @include media('<420px') {
2548
+ width: 100%;
2549
+ margin: 0 0 15px;
2550
+ }
2551
+ }
2552
+ }
2553
+ &.small {
2554
+ .mosaic__container__loader {
2555
+ top: 0;
2556
+ transform: translateX(-50%);
2557
+ max-height: 200px;
2558
+ }
2559
+ .mosaic {
2560
+ &__search {
2561
+ display: none;
2562
+ @include media('<tablet') {
2563
+ display: block;
2564
+ margin: 0 0 20px;
2565
+ padding: 0;
2566
+ width: 100%;
2567
+ wz-input-search {
2568
+ display: block;
2569
+ width: 100%;
2570
+ max-width: 100%;
2571
+ padding-right: 6px;
2572
+ }
2573
+ }
2574
+ }
2575
+ &__container {
2576
+ &__cards {
2577
+ > * {
2578
+ width: calc(10% - 24px);
2579
+ margin: 0 12px rem(24) 12px;
2580
+ @include media('>=1400px','<1600px') {
2581
+ width: calc(11.11% - 24px);
2582
+ margin: 0 12px rem(24) 12px;
2583
+ }
2584
+ @include media('>=desktop','<1400px') {
2585
+ width: calc(12.5% - 24px);
2586
+ margin: 0 12px rem(24) 12px;
2587
+ }
2588
+ @include media('>=tablet','<desktop') {
2589
+ width: calc(20% - 24px);
2590
+ margin: 0 12px rem(24) 12px;
2591
+ }
2592
+ @include media('>=500px','<tablet') {
2593
+ width: calc(33.33% - 24px);
2594
+ margin: 0 12px rem(24) 12px;
2595
+ }
2596
+ @include media('<500px') {
2597
+ width: calc(50% - 24px);
2598
+ margin: 0 12px rem(24) 12px;
2599
+ }
2600
+ }
2601
+ }
2602
+ }
2603
+ }
2604
+ }
2605
+ }
2606
+ &__search {
2607
+ width: calc(100% - 24px);
2608
+ margin: 0 auto rem(20);
2676
2609
  }
2677
- &.small-padding {
2678
- padding: 10px 20px;
2610
+ &__pagination {
2611
+ width: 100%;
2679
2612
  }
2680
- .input,
2681
- .input:focus,
2682
- .input.is-focused,
2683
- .input:active,
2684
- .input.is-active {
2685
- font-size: rem(14);
2686
- color: $main-text;
2687
- border: rem(1) solid $input-border-search;
2688
- box-shadow: none;
2689
- padding: rem(13.5) rem(20) rem(13.5) rem(48);
2690
- border-radius: rem(3);
2691
- margin: 0;
2692
- height: auto;
2693
- min-height: unset;
2613
+ &__container {
2614
+ &__loader {
2615
+ position: absolute;
2616
+ top: 50%;
2617
+ left: 50%;
2618
+ transform: translate(-50%,-50%);
2619
+ max-width: 300px;
2620
+ max-height: 300px;
2621
+ display: flex;
2622
+ flex-wrap: wrap;
2623
+ flex-direction: column;
2624
+ justify-content: center;
2625
+ align-items: center;
2694
2626
 
2695
- &::placeholder {
2696
- color: $placeholder-color;
2697
- font-weight: normal;
2627
+ @include media('<=tablet') {
2628
+ width: 100%;
2629
+ max-width: unset;
2630
+ }
2631
+ }
2632
+ &__cards {
2633
+ width: 100%;
2634
+ display: flex;
2635
+ flex-wrap: wrap;
2636
+ &--padding {
2637
+ padding-right: 20px;
2638
+ @include media('<tablet') {
2639
+ width: calc(100% + 24px);
2640
+ padding: 0;
2641
+ }
2642
+ }
2698
2643
  }
2699
- }
2700
-
2701
- .input:focus,
2702
- .input.is-focused,
2703
- .input:active,
2704
- .input.is-active {
2705
- border-color: $wizishop-blue;
2706
- }
2707
-
2708
- .icon {
2709
- position: absolute;
2710
- top: 50%;
2711
- left: 20px;
2712
- font-size: rem(18);
2713
- transform: translateY(-50%);
2714
- pointer-events: none;
2715
- font-weight: 400;
2716
- color: $placeholder-color;
2717
- margin: 0;
2718
- width: rem(18);
2719
- height: rem(18);
2720
2644
  }
2721
2645
  }
2722
2646
 
2723
- .wz-img-manager .wz-img-manager__module:not(.wz-img-manager__module--window) .pexels-lib__search .input-search.field {
2724
- padding: 0;
2725
- background-color: transparent;
2647
+ .mosaic__container__cards {
2648
+ z-index: 1;
2649
+ & + .mosaic__pagination {
2650
+ position: relative;
2651
+ z-index: 2;
2652
+ }
2726
2653
  }
2727
- image-cropper {
2728
- max-height: 60vh;
2729
- }.wz-img-manager .images-view {
2730
- text-align: left;
2731
-
2732
- &.fullSize {
2733
- & + .images-view__scroll {
2734
- max-height: 1160px;
2735
- }
2736
- }
2737
-
2654
+ .wz-img-manager .img-editor {
2738
2655
  &__scroll {
2739
2656
  position: relative;
2740
2657
  height: 100%;
2741
- z-index: 1;
2742
2658
 
2743
2659
  &--full {
2744
- max-height: calc(100vh - 160px)!important;
2745
- min-height: calc(100vh - 160px) !important;
2660
+ max-height: calc(100vh - 90px)!important;
2661
+ min-height: calc(100vh - 90px) !important;
2746
2662
  }
2747
2663
 
2748
2664
  &--smallDisplay {
@@ -2753,194 +2669,298 @@ image-cropper {
2753
2669
  }
2754
2670
  }
2755
2671
 
2756
- &--smallUploadDisplay {
2757
- max-height: 230px!important;
2672
+ &--window {
2673
+ max-height: none;
2758
2674
  }
2759
2675
 
2760
- &--window {
2761
- max-height: unset!important;
2676
+ .ng-scroll-content {
2677
+ margin-left: 0 !important;
2678
+ margin-right: 0 !important;
2679
+ min-width: calc(100% - 1rem) !important;
2680
+ width: calc(100% - 1rem) !important;
2762
2681
  }
2682
+ }
2763
2683
 
2764
- &--hide {
2765
- &--mosaic {
2766
- min-height: 100px !important;
2767
- &--small {
2768
- min-height: unset !important;
2769
- }
2684
+ .columns {
2685
+ margin-right: 0.8rem;
2686
+ margin-left: rem(12);
2687
+ margin-top: 12px;
2688
+ margin-bottom: 0;
2689
+ width: calc(100% + 11px);
2690
+
2691
+ .column {
2692
+ padding-top: 0;
2693
+ padding-bottom: 0px;
2694
+ }
2695
+ }
2696
+
2697
+ &__head-container {
2698
+ display: flex;
2699
+ justify-content: flex-end;
2700
+ align-items: center;
2701
+ margin: 30px 30px 20px 0;
2702
+
2703
+ &__btnGroup {
2704
+ margin-right: 13px;
2705
+ opacity: 0;
2706
+ visibility: hidden;
2707
+ transition: opacity .3s ease-in-out;
2708
+
2709
+ &__visible {
2710
+ opacity: 1;
2711
+ visibility: visible;
2770
2712
  }
2771
- &--table {
2772
- min-height: 170px !important;
2713
+
2714
+ &__removeBtn {
2715
+ margin-right: 13px;
2716
+ }
2717
+ }
2718
+
2719
+ &__close {
2720
+ cursor: pointer;
2721
+ font-size: 14px;
2722
+ color: $img-grey-color;
2723
+ line-height: 40px;
2724
+ }
2725
+ }
2726
+
2727
+ &__container {
2728
+ padding: 0.75rem!important;
2729
+ display:flex;
2730
+ justify-content: center;
2731
+ align-items: center;
2732
+ background-color: $img-gray-background;
2733
+ margin: 0;
2734
+ transform: translateY(-16px);
2735
+
2736
+ &__toolsContainer {
2737
+ display: flex;
2738
+ justify-content: center;
2739
+ align-items: center;
2740
+ margin-bottom: 50px;
2741
+
2742
+ &__tool {
2743
+ color: $img-second-color;
2744
+ margin-right: 30px;
2745
+ text-align: center;
2746
+ cursor: pointer;
2747
+
2748
+ p {
2749
+ margin: 0!important;
2750
+ color: $img-main-text;
2751
+ font-size: rem(12);
2752
+ line-height: rem(14);
2753
+ }
2754
+
2755
+ i {
2756
+ font-size: rem(18);
2757
+ margin: 0 0 10px;
2758
+ }
2759
+
2760
+ &--button {
2761
+ background-color: $img-green-color;
2762
+ color: $img-white!important;
2763
+ padding: 10px;
2764
+ border-radius: 3px;
2765
+ transition: .3s ease;
2766
+ white-space: nowrap;
2767
+ display: flex;
2768
+ justify-content: center;
2769
+ align-items: center;
2770
+ position: absolute;
2771
+ top: 80px;
2772
+ left: 50%;
2773
+ transform: translateX(-50%);
2774
+ height: 35px;
2775
+ margin: 0;
2776
+ &:hover, &:focus {
2777
+ background-color: darken($img-green-color, 15%);
2778
+ color: $img-white!important;
2779
+ }
2780
+ p {
2781
+ color: $white!important;
2782
+ }
2783
+ i {
2784
+ margin: 0 5px 0 0;
2785
+ }
2786
+ }
2787
+ &:hover {
2788
+ color: $img-main-color;
2789
+ }
2790
+
2791
+ > * {
2792
+ -webkit-touch-callout: none; /* iOS Safari */
2793
+ -webkit-user-select: none; /* Safari */
2794
+ -khtml-user-select: none; /* Konqueror HTML */
2795
+ -moz-user-select: none; /* Old versions of Firefox */
2796
+ -ms-user-select: none; /* Internet Explorer/Edge */
2797
+ user-select: none; /* Non-prefixed version, currently
2798
+ supported by Chrome, Edge, Opera and Firefox */
2799
+ }
2773
2800
  }
2774
2801
 
2775
- }
2776
-
2777
- .ng-scroll-content {
2778
- min-width: calc(100% - 1rem) !important;
2779
- width: calc(100% - 1rem) !important;
2780
- @include media('<tablet') {
2781
- min-width: 100%!important;
2802
+ &__RotationDropdown {
2803
+ min-width: 16rem;
2782
2804
  }
2783
2805
  }
2784
- }
2785
-
2786
- &__container {
2787
- display: flex;
2788
- justify-content: space-between;
2789
- margin: 0 0 rem(20);
2790
2806
 
2791
- > div {
2792
- display: flex;
2793
- align-items: center;
2794
- .mainColor {
2795
- margin: 0;
2807
+ &__name {
2808
+ font-size: 16px;
2809
+ max-width: 50%;
2810
+ color: $img-grey-color;
2811
+ text-align: center;
2812
+ white-space: nowrap;
2813
+ overflow: hidden;
2814
+ text-overflow: ellipsis;
2796
2815
  }
2797
- }
2798
2816
 
2799
- &--window {
2800
- margin: rem(30) 0 rem(20);
2817
+ .button {
2818
+ min-height: 35px;
2819
+ background-color: $img-primary-button;
2820
+ border-color: $img-primary-button-hover;
2821
+ color: #ffffff;
2801
2822
  }
2823
+ }
2802
2824
 
2803
- &--uploadTab {
2804
- margin: 0 0 rem(20);
2805
- }
2825
+ &__image-cropper {
2826
+ --cropper-overlay-color: #f5f8fa;
2827
+ //--cropper-outline-color: #a5a5a573;
2828
+ padding-bottom: 30px;
2829
+ }
2806
2830
 
2807
- &__boxAction {
2808
- width: 525px;
2809
- overflow: visible;
2810
- display: flex;
2811
- position: relative;
2812
- justify-content: flex-end;
2813
- margin-right: 13px;
2814
- height: 40px;
2815
- align-items: center;
2816
- transform: translate(-41px,-3px);
2831
+ &__infoSection {
2832
+ font-size: 14px;
2833
+ max-width: 360px;
2834
+ padding: 0;
2835
+ margin: 0 rem(30) 0 0;
2817
2836
 
2818
- &__confirmSup {
2837
+ &__propertyEditable {
2838
+ margin-bottom: 31px;
2839
+ p {
2840
+ margin-bottom: 12px;
2841
+ font-size: 14px;
2842
+ }
2843
+ input, button {
2844
+ width: 100%;
2845
+ height: 40px;
2846
+ border: 1px solid #DEE2ED;
2847
+ border-radius: 3px;
2848
+ color: $img-main-text;
2849
+ padding-left: 20px;
2850
+ padding-right: 20px;
2819
2851
  display: flex;
2820
2852
  justify-content: space-between;
2821
- align-items: center;
2822
- border-left: solid 1px #d8d8d8;
2823
- color: $img-grey-color;
2824
- padding-left: 1rem;
2825
- width: 0;
2826
- position: absolute;
2827
- opacity: 0;
2828
- transition: 0s;
2829
- visibility: hidden;
2830
- z-index: 2;
2831
-
2832
- &--visible {
2833
- max-width: unset;
2834
- width: auto;
2835
- opacity: 1;
2836
- transition: 0s;
2837
- visibility: visible;
2853
+ font-size: 14px;
2838
2854
 
2839
- p {
2840
- transition: left .3s ease-in-out;
2841
- right: 100%;
2842
- left: auto;
2843
- white-space: nowrap;
2844
- margin-right: 30px;
2845
- }
2855
+ &:hover {
2856
+ color: $img-main-color;
2857
+ border-color: $img-main-color;
2846
2858
  }
2859
+ }
2847
2860
 
2848
- &__cancel {
2849
- margin-right: 14px;
2850
- background-color: white;
2851
- border-color: #dbdbdb;
2852
- color: $img-main-text;
2853
- }
2861
+ button {
2862
+ align-items: center;
2863
+ background-color: transparent;
2864
+ cursor: pointer;
2865
+ }
2854
2866
 
2855
- &__text {
2856
- font-size: 14px;
2857
- position: absolute;
2858
- left: -126%;
2859
- transition: font-size .3s ease-in-out, left .3s ease-in-out;
2860
- }
2867
+ &__span, &__input {
2868
+ text-overflow: ellipsis;
2869
+ overflow: hidden;
2870
+ white-space: nowrap;
2861
2871
  }
2862
2872
 
2863
- &__delBtn {
2864
- i {
2865
- margin-right: 13px!important;
2866
- }
2873
+ &__span {
2874
+ color: $img-bleu-color;
2875
+ & + i {
2876
+ color: $img-bleu-color;
2877
+ font-weight: 600;
2878
+ }
2867
2879
  }
2868
2880
 
2869
- &__import {
2870
- margin-right: 13px;
2871
- i {
2872
- margin-right: 13px!important;
2873
- }
2881
+ &__tooltips {
2882
+ margin-left: 10px;
2874
2883
  }
2875
2884
  }
2876
2885
 
2877
- &__buttonBox {
2878
- margin: 0;
2879
- width: rem(40);
2880
- height: rem(40);
2881
- border: solid $img-light-white-color;
2882
- border-width: 1px 0 1px 1px;
2886
+ &__property {
2887
+ &:nth-child(3), &:nth-child(4) {
2888
+ margin: 0;
2889
+ }
2890
+ p {
2891
+ font-size: 14px;
2892
+ display: inline-block;
2893
+ }
2883
2894
 
2884
- border-radius: 3px 0 0 3px;
2885
- outline: none!important;
2895
+ .mainColor {
2896
+ margin: 0!important;
2897
+ }
2886
2898
 
2887
- > div {
2888
- margin-top: 0;
2889
- margin-bottom: 0;
2890
- height: 40px;
2891
- &:nth-child(2) {
2892
- border: solid $img-light-white-color;
2893
- border-width: 1px 1px 1px 0;
2894
- transform: translateY(-1px);
2895
- border-radius: 0 3px 3px 0;
2896
- }
2897
- div {
2898
- height: 38px;
2899
- margin: 0!important;
2900
- }
2899
+ p:last-child {
2900
+ margin: 0 0 0 10px;
2901
+ color: #526384;
2901
2902
  }
2903
+ }
2902
2904
 
2903
- .actifDisplayed {
2904
- color:$img-main-color;
2905
- }
2905
+ &__titleSEO {
2906
+ margin: 0 0 20px;
2906
2907
 
2907
- i {
2908
+ .mainColor {
2909
+ font-size: rem(18);
2910
+ font-weight: 500;
2911
+ }
2912
+ }
2913
+
2914
+ &__propertySEO {
2915
+ margin-bottom: 12px;
2916
+ p {
2917
+ font-size: 14px;
2918
+ display: inline-block;
2908
2919
  margin: 0;
2909
2920
  }
2910
- }
2911
2921
 
2912
- &__cards {
2913
- display: flex;
2914
- justify-content: space-between;
2915
- flex-wrap: wrap;
2916
- align-items: center;
2917
- padding-top: 30px;
2918
- margin-right: calc(0.8rem - 20px);
2919
- margin-left: 0.3rem;
2920
- margin-bottom: 30px;
2922
+ .mainColor {
2923
+ & ~ p {
2924
+ margin-left: 10px;
2925
+ color: $img-green-color;
2926
+ }
2927
+ }
2928
+ }
2921
2929
 
2930
+ &__divider {
2931
+ display: block;
2932
+ width: 100%;
2933
+ border-bottom: 2px dashed #EFF1F6;
2934
+ margin: 30px 0;
2922
2935
  }
2923
- }
2924
2936
 
2925
- &--pexels {
2926
- margin-top: -30px;
2937
+ &__actions {
2938
+ height: 35px;
2939
+
2940
+ &__cancel {
2941
+ margin-right: 19px;
2942
+ background-color: white;
2943
+ border-color: #dbdbdb;
2944
+ color: $img-main-text;
2945
+ }
2946
+
2947
+ &__save {
2948
+ padding: 8px 18px;
2949
+ margin: 0!important;
2950
+ &--disable {
2951
+ cursor: not-allowed;
2952
+ }
2953
+ }
2954
+ }
2927
2955
  }
2928
2956
 
2929
- .subHeaderActions .button i {
2930
- margin-right: 0;
2957
+ .dropdown-menu {
2958
+ left: -50%;
2931
2959
  }
2932
2960
  }
2933
2961
 
2934
- @media screen and (max-width: 768px) {
2935
- .wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
2936
- max-height: none!important;
2937
-
2938
- .ng-scroll-content {
2939
- margin: 0 !important;
2940
- min-width: 100%!important;
2941
- width: 100%!important;
2942
- }
2943
- }
2962
+ .wz-img-manager .marginBottom {
2963
+ margin-bottom: 20px;
2944
2964
  }
2945
2965
  $card-img-size: 100%;
2946
2966
  $card-img-size-small: 140px;