@wizishop/img-manager 15.2.6 → 15.2.8
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/README.md +1 -0
- package/assets/i18n/en.json +1 -1
- package/assets/i18n/fr.json +1 -1
- package/esm2020/lib/components/images-view/images-view.component.mjs +11 -8
- package/esm2020/lib/components/img-selection/img-selection.component.mjs +9 -10
- package/esm2020/lib/services/api.service.mjs +1 -1
- package/esm2020/lib/services/img-manager.service.mjs +6 -9
- package/esm2020/lib/services/upload.service.mjs +5 -3
- package/esm2020/lib/wz-img-manager.component.mjs +14 -10
- package/fesm2015/wizishop-img-manager.mjs +37 -35
- package/fesm2015/wizishop-img-manager.mjs.map +1 -1
- package/fesm2020/wizishop-img-manager.mjs +35 -33
- package/fesm2020/wizishop-img-manager.mjs.map +1 -1
- package/lib/components/img-selection/img-selection.component.d.ts +7 -6
- package/lib/services/api.service.d.ts +4 -3
- package/lib/services/img-manager.service.d.ts +1 -1
- package/lib/services/upload.service.d.ts +5 -2
- package/lib/wz-img-manager.component.d.ts +5 -2
- package/package.json +1 -1
- package/wizishop-img-manager-15.2.8.tgz +0 -0
- package/wz-img-manager.scss +229 -229
- package/wizishop-img-manager-15.2.6.tgz +0 -0
|
@@ -1,25 +1,26 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ImgSelectionService } from '../../services/img-selection.service';
|
|
3
|
-
import { ImgPictureDTO } from '../../dto/img-manager.dto';
|
|
4
3
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
5
4
|
import { tabDisplayed } from '../../dto/export-dtos.api';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class ImgSelectionComponent
|
|
6
|
+
export declare class ImgSelectionComponent {
|
|
8
7
|
private imgSelectionService;
|
|
9
8
|
tabDisplayed: tabDisplayed;
|
|
10
9
|
imgManagerClosed: EventEmitter<any>;
|
|
11
|
-
imgSelectedList
|
|
10
|
+
imgSelectedList$: import("rxjs").BehaviorSubject<import("../../dto/img-manager.dto").ImgPictureDTO[]>;
|
|
12
11
|
removingAll: boolean;
|
|
13
12
|
cancellingAll: boolean;
|
|
14
13
|
importingAll: boolean;
|
|
15
14
|
dragStart: boolean;
|
|
16
15
|
isLoading$: import("rxjs").BehaviorSubject<boolean>;
|
|
16
|
+
vm$: import("rxjs").Observable<{
|
|
17
|
+
tableList: import("../../dto/img-manager.dto").ImgPictureDTO[];
|
|
18
|
+
isLoading: boolean;
|
|
19
|
+
}>;
|
|
17
20
|
trashPositionIndex: number;
|
|
18
21
|
trashPositionLeft: string;
|
|
19
22
|
constructor(imgSelectionService: ImgSelectionService);
|
|
20
|
-
ngOnInit(): void;
|
|
21
23
|
init(): void;
|
|
22
|
-
getImgSelected(): void;
|
|
23
24
|
removeImg(index: number): void;
|
|
24
25
|
drop(event: CdkDragDrop<string[]>): void;
|
|
25
26
|
removeImgFromSelection(event: CdkDragDrop<string[]>): void;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { ImgPictureDTO, ImgPicturesDTO
|
|
1
|
+
import { ImgPictureDTO, ImgPicturesDTO } from '../dto/img-manager.dto';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { ImgCDNConfigDTO } from '../dto/export-dtos.api';
|
|
4
|
+
import { HttpParams } from '@angular/common/http';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare abstract class ApiService {
|
|
6
7
|
abstract CONFIG: {
|
|
@@ -13,8 +14,8 @@ export declare abstract class ApiService {
|
|
|
13
14
|
};
|
|
14
15
|
abstract IMG_SIZE: ImgCDNConfigDTO;
|
|
15
16
|
abstract getShopCategory(): string;
|
|
16
|
-
abstract getShopImgList(params?:
|
|
17
|
-
abstract getShopTotalImgList(params?:
|
|
17
|
+
abstract getShopImgList(params?: HttpParams): Observable<ImgPicturesDTO>;
|
|
18
|
+
abstract getShopTotalImgList(params?: HttpParams): Observable<number>;
|
|
18
19
|
abstract getShopImg(idFile: string): Observable<ImgPictureDTO>;
|
|
19
20
|
abstract uploadFile(formData: FormData): Observable<ImgPictureDTO>;
|
|
20
21
|
abstract uploadFileByUrl(url: string, fileName?: string): Observable<ImgPictureDTO>;
|
|
@@ -18,7 +18,7 @@ export declare class ImgManagerService {
|
|
|
18
18
|
getShopImgList(params?: ParamsImgManagerDTO): Observable<ImgPicturesDTO>;
|
|
19
19
|
getShopTotalImgList(params?: ParamsImgManagerDTO): Observable<number>;
|
|
20
20
|
getShopImg(idFile: string): Observable<ImgPictureDTO>;
|
|
21
|
-
resetParams(params: ParamsImgManagerDTO):
|
|
21
|
+
resetParams(params: ParamsImgManagerDTO): HttpParams;
|
|
22
22
|
replaceImg(imageBase64: string, id_file: string): Observable<ImgPictureDTO>;
|
|
23
23
|
removeImg(id_file: string): Observable<ImgPictureDTO>;
|
|
24
24
|
removeMultipleImg(id_array: string[]): Observable<ImgPictureDTO[]>;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { ApiService } from './api.service';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import { ImgPictureDTO } from '../dto/img-manager.dto';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
export declare class UploadService {
|
|
6
|
+
imageUploaded$: Subject<ImgPictureDTO>;
|
|
4
7
|
apiService: ApiService;
|
|
5
|
-
uploadFile(formData: FormData): import("rxjs").Observable<
|
|
6
|
-
uploadFileByUrl(url: string, fileName?: string): import("rxjs").Observable<
|
|
8
|
+
uploadFile(formData: FormData): import("rxjs").Observable<ImgPictureDTO>;
|
|
9
|
+
uploadFileByUrl(url: string, fileName?: string): import("rxjs").Observable<ImgPictureDTO>;
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadService, never>;
|
|
8
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<UploadService>;
|
|
9
12
|
}
|
|
@@ -7,6 +7,7 @@ import { ImgEventService } from './services/img-event.service';
|
|
|
7
7
|
import { DomService } from './services/dom.service';
|
|
8
8
|
import { WiziBlockMediaDto } from './dto/wizi-block-media.dto';
|
|
9
9
|
import { stateDisplayed } from './dto/stateDisplayed.dto';
|
|
10
|
+
import { UploadService } from './services/upload.service';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class WzImgManagerComponent implements OnInit {
|
|
12
13
|
private imgSelectionService;
|
|
@@ -14,6 +15,7 @@ export declare class WzImgManagerComponent implements OnInit {
|
|
|
14
15
|
private canvaService;
|
|
15
16
|
private imgEventService;
|
|
16
17
|
private domService;
|
|
18
|
+
private uploadService;
|
|
17
19
|
stateDisplayed: stateDisplayed;
|
|
18
20
|
showSelection: boolean;
|
|
19
21
|
set forceToOpenCanva(forceToOpenCanva: boolean | WiziBlockMediaDto);
|
|
@@ -26,6 +28,7 @@ export declare class WzImgManagerComponent implements OnInit {
|
|
|
26
28
|
get showImgManagerModule(): boolean;
|
|
27
29
|
onKeydownHandler(event: KeyboardEvent): void;
|
|
28
30
|
imgSelectionChange: import("rxjs").BehaviorSubject<import("@wizishop/img-manager").ImgPictureDTO[]>;
|
|
31
|
+
imageUploaded: import("rxjs").Subject<import("@wizishop/img-manager").ImgPictureDTO>;
|
|
29
32
|
close: boolean;
|
|
30
33
|
selectImgEvent: Subscription;
|
|
31
34
|
listDisplayed: boolean;
|
|
@@ -33,7 +36,7 @@ export declare class WzImgManagerComponent implements OnInit {
|
|
|
33
36
|
hideTab: boolean;
|
|
34
37
|
private overflowHTML;
|
|
35
38
|
private bodyPadding;
|
|
36
|
-
constructor(imgSelectionService: ImgSelectionService, userSettingsService: UserSettingsService, canvaService: CanvaService, imgEventService: ImgEventService, domService: DomService);
|
|
39
|
+
constructor(imgSelectionService: ImgSelectionService, userSettingsService: UserSettingsService, canvaService: CanvaService, imgEventService: ImgEventService, domService: DomService, uploadService: UploadService);
|
|
37
40
|
ngOnInit(): void;
|
|
38
41
|
checkUserDisplayPreference(): void;
|
|
39
42
|
setCurrentTab(event: any): void;
|
|
@@ -53,5 +56,5 @@ export declare class WzImgManagerComponent implements OnInit {
|
|
|
53
56
|
changeDisplayTab(): void;
|
|
54
57
|
ngOnDestroy(): void;
|
|
55
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<WzImgManagerComponent, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WzImgManagerComponent, "wz-img-manager", never, { "stateDisplayed": "stateDisplayed"; "showSelection": "showSelection"; "forceToOpenCanva": "forceToOpenCanva"; "multipleImgMode": "multipleImgMode"; "showImgManagerModule": "showImgManagerModule"; }, { "imgManagerClosed": "imgManagerClosed"; "imgSelectionChange": "imgSelectionChange"; }, never, never, false, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WzImgManagerComponent, "wz-img-manager", never, { "stateDisplayed": "stateDisplayed"; "showSelection": "showSelection"; "forceToOpenCanva": "forceToOpenCanva"; "multipleImgMode": "multipleImgMode"; "showImgManagerModule": "showImgManagerModule"; }, { "imgManagerClosed": "imgManagerClosed"; "imgSelectionChange": "imgSelectionChange"; "imageUploaded": "imageUploaded"; }, never, never, false, never>;
|
|
57
60
|
}
|
package/package.json
CHANGED
|
Binary file
|
package/wz-img-manager.scss
CHANGED
|
@@ -925,6 +925,226 @@ $tag-radius: rem(20px)!default;
|
|
|
925
925
|
.noTooltip .tooltip.is-tooltip-left:hover::before, .noTooltip .tooltip.is-tooltip-left:hover:not(.is-loading)::after {
|
|
926
926
|
display: none;
|
|
927
927
|
}
|
|
928
|
+
.wz-img-manager .images-view {
|
|
929
|
+
text-align: left;
|
|
930
|
+
|
|
931
|
+
&.fullSize {
|
|
932
|
+
& + .images-view__scroll {
|
|
933
|
+
max-height: 1160px!important;
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
&__scroll {
|
|
938
|
+
position: relative;
|
|
939
|
+
height: 100%;
|
|
940
|
+
z-index: 1;
|
|
941
|
+
|
|
942
|
+
&--full {
|
|
943
|
+
max-height: calc(100vh - 160px)!important;
|
|
944
|
+
height: calc(100vh - 160px)!important;
|
|
945
|
+
min-height: calc(100vh - 160px) !important;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
&--smallDisplay {
|
|
949
|
+
max-height: 275px!important;
|
|
950
|
+
height: 275px!important;
|
|
951
|
+
@include media('<tablet') {
|
|
952
|
+
max-height: calc(100vh - 90px)!important;
|
|
953
|
+
height: calc(100vh - 90px)!important;
|
|
954
|
+
min-height: calc(100vh - 90px) !important;
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
&--smallUploadDisplay {
|
|
959
|
+
max-height: 230px!important;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
&--window {
|
|
963
|
+
max-height: unset!important;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
&--hide {
|
|
967
|
+
&--mosaic {
|
|
968
|
+
min-height: 100px !important;
|
|
969
|
+
&--small {
|
|
970
|
+
min-height: unset !important;
|
|
971
|
+
}
|
|
972
|
+
}
|
|
973
|
+
&--table {
|
|
974
|
+
min-height: 170px !important;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.ng-scroll-content {
|
|
980
|
+
min-width: calc(100% - 1rem) !important;
|
|
981
|
+
width: calc(100% - 1rem) !important;
|
|
982
|
+
@include media('<tablet') {
|
|
983
|
+
min-width: 100%!important;
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
&__container {
|
|
989
|
+
display: flex;
|
|
990
|
+
justify-content: space-between;
|
|
991
|
+
margin: 0 0 rem(20);
|
|
992
|
+
|
|
993
|
+
> div {
|
|
994
|
+
display: flex;
|
|
995
|
+
align-items: center;
|
|
996
|
+
.mainColor {
|
|
997
|
+
margin: 0;
|
|
998
|
+
}
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
&--window {
|
|
1002
|
+
margin: rem(30) 0 rem(20);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
&--uploadTab {
|
|
1006
|
+
margin: 0 0 rem(20);
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
&__boxAction {
|
|
1010
|
+
width: 525px;
|
|
1011
|
+
overflow: visible;
|
|
1012
|
+
display: flex;
|
|
1013
|
+
position: relative;
|
|
1014
|
+
justify-content: flex-end;
|
|
1015
|
+
margin-right: 13px;
|
|
1016
|
+
height: 40px;
|
|
1017
|
+
align-items: center;
|
|
1018
|
+
transform: translate(-41px,-3px);
|
|
1019
|
+
|
|
1020
|
+
&__confirmSup {
|
|
1021
|
+
display: flex;
|
|
1022
|
+
justify-content: space-between;
|
|
1023
|
+
align-items: center;
|
|
1024
|
+
border-left: solid 1px #d8d8d8;
|
|
1025
|
+
color: $img-grey-color;
|
|
1026
|
+
padding-left: 1rem;
|
|
1027
|
+
width: 0;
|
|
1028
|
+
position: absolute;
|
|
1029
|
+
opacity: 0;
|
|
1030
|
+
transition: 0s;
|
|
1031
|
+
visibility: hidden;
|
|
1032
|
+
z-index: 2;
|
|
1033
|
+
|
|
1034
|
+
&--visible {
|
|
1035
|
+
max-width: unset;
|
|
1036
|
+
width: auto;
|
|
1037
|
+
opacity: 1;
|
|
1038
|
+
transition: 0s;
|
|
1039
|
+
visibility: visible;
|
|
1040
|
+
|
|
1041
|
+
p {
|
|
1042
|
+
transition: left .3s ease-in-out;
|
|
1043
|
+
right: 100%;
|
|
1044
|
+
left: auto;
|
|
1045
|
+
white-space: nowrap;
|
|
1046
|
+
margin-right: 30px;
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
&__cancel {
|
|
1051
|
+
margin-right: 14px;
|
|
1052
|
+
background-color: white;
|
|
1053
|
+
border-color: #dbdbdb;
|
|
1054
|
+
color: $img-main-text;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
&__text {
|
|
1058
|
+
font-size: 14px;
|
|
1059
|
+
position: absolute;
|
|
1060
|
+
left: -126%;
|
|
1061
|
+
transition: font-size .3s ease-in-out, left .3s ease-in-out;
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
&__delBtn {
|
|
1066
|
+
i {
|
|
1067
|
+
margin-right: 13px!important;
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
&__import {
|
|
1072
|
+
margin-right: 13px;
|
|
1073
|
+
i {
|
|
1074
|
+
margin-right: 13px!important;
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
&__buttonBox {
|
|
1080
|
+
margin: 0;
|
|
1081
|
+
width: rem(40);
|
|
1082
|
+
height: rem(40);
|
|
1083
|
+
border: solid $img-light-white-color;
|
|
1084
|
+
border-width: 1px 0 1px 1px;
|
|
1085
|
+
|
|
1086
|
+
border-radius: 3px 0 0 3px;
|
|
1087
|
+
outline: none!important;
|
|
1088
|
+
|
|
1089
|
+
> div {
|
|
1090
|
+
margin-top: 0;
|
|
1091
|
+
margin-bottom: 0;
|
|
1092
|
+
height: 40px;
|
|
1093
|
+
&:nth-child(2) {
|
|
1094
|
+
border: solid $img-light-white-color;
|
|
1095
|
+
border-width: 1px 1px 1px 0;
|
|
1096
|
+
transform: translateY(-1px);
|
|
1097
|
+
border-radius: 0 3px 3px 0;
|
|
1098
|
+
}
|
|
1099
|
+
div {
|
|
1100
|
+
height: 38px;
|
|
1101
|
+
margin: 0!important;
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.actifDisplayed {
|
|
1106
|
+
color:$img-main-color;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
i {
|
|
1110
|
+
margin: 0;
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
&__cards {
|
|
1115
|
+
display: flex;
|
|
1116
|
+
justify-content: space-between;
|
|
1117
|
+
flex-wrap: wrap;
|
|
1118
|
+
align-items: center;
|
|
1119
|
+
padding-top: 30px;
|
|
1120
|
+
margin-right: calc(0.8rem - 20px);
|
|
1121
|
+
margin-left: 0.3rem;
|
|
1122
|
+
margin-bottom: 30px;
|
|
1123
|
+
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
&--pexels {
|
|
1128
|
+
margin-top: -30px;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.subHeaderActions .button i {
|
|
1132
|
+
margin-right: 0;
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
@media screen and (max-width: 768px) {
|
|
1137
|
+
.wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
|
|
1138
|
+
max-height: none!important;
|
|
1139
|
+
min-height: calc(100vh - 440px);
|
|
1140
|
+
|
|
1141
|
+
.ng-scroll-content {
|
|
1142
|
+
margin: 0 !important;
|
|
1143
|
+
min-width: 100%!important;
|
|
1144
|
+
width: 100%!important;
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
928
1148
|
.wz-img-manager .img-editor {
|
|
929
1149
|
&__scroll {
|
|
930
1150
|
position: relative;
|
|
@@ -1243,226 +1463,6 @@ $tag-radius: rem(20px)!default;
|
|
|
1243
1463
|
.wz-img-manager .marginBottom {
|
|
1244
1464
|
margin-bottom: 20px;
|
|
1245
1465
|
}
|
|
1246
|
-
.wz-img-manager .images-view {
|
|
1247
|
-
text-align: left;
|
|
1248
|
-
|
|
1249
|
-
&.fullSize {
|
|
1250
|
-
& + .images-view__scroll {
|
|
1251
|
-
max-height: 1160px!important;
|
|
1252
|
-
}
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
&__scroll {
|
|
1256
|
-
position: relative;
|
|
1257
|
-
height: 100%;
|
|
1258
|
-
z-index: 1;
|
|
1259
|
-
|
|
1260
|
-
&--full {
|
|
1261
|
-
max-height: calc(100vh - 160px)!important;
|
|
1262
|
-
height: calc(100vh - 160px)!important;
|
|
1263
|
-
min-height: calc(100vh - 160px) !important;
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
&--smallDisplay {
|
|
1267
|
-
max-height: 275px!important;
|
|
1268
|
-
height: 275px!important;
|
|
1269
|
-
@include media('<tablet') {
|
|
1270
|
-
max-height: calc(100vh - 90px)!important;
|
|
1271
|
-
height: calc(100vh - 90px)!important;
|
|
1272
|
-
min-height: calc(100vh - 90px) !important;
|
|
1273
|
-
}
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
&--smallUploadDisplay {
|
|
1277
|
-
max-height: 230px!important;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
&--window {
|
|
1281
|
-
max-height: unset!important;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
&--hide {
|
|
1285
|
-
&--mosaic {
|
|
1286
|
-
min-height: 100px !important;
|
|
1287
|
-
&--small {
|
|
1288
|
-
min-height: unset !important;
|
|
1289
|
-
}
|
|
1290
|
-
}
|
|
1291
|
-
&--table {
|
|
1292
|
-
min-height: 170px !important;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
}
|
|
1296
|
-
|
|
1297
|
-
.ng-scroll-content {
|
|
1298
|
-
min-width: calc(100% - 1rem) !important;
|
|
1299
|
-
width: calc(100% - 1rem) !important;
|
|
1300
|
-
@include media('<tablet') {
|
|
1301
|
-
min-width: 100%!important;
|
|
1302
|
-
}
|
|
1303
|
-
}
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
&__container {
|
|
1307
|
-
display: flex;
|
|
1308
|
-
justify-content: space-between;
|
|
1309
|
-
margin: 0 0 rem(20);
|
|
1310
|
-
|
|
1311
|
-
> div {
|
|
1312
|
-
display: flex;
|
|
1313
|
-
align-items: center;
|
|
1314
|
-
.mainColor {
|
|
1315
|
-
margin: 0;
|
|
1316
|
-
}
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
&--window {
|
|
1320
|
-
margin: rem(30) 0 rem(20);
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
&--uploadTab {
|
|
1324
|
-
margin: 0 0 rem(20);
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
&__boxAction {
|
|
1328
|
-
width: 525px;
|
|
1329
|
-
overflow: visible;
|
|
1330
|
-
display: flex;
|
|
1331
|
-
position: relative;
|
|
1332
|
-
justify-content: flex-end;
|
|
1333
|
-
margin-right: 13px;
|
|
1334
|
-
height: 40px;
|
|
1335
|
-
align-items: center;
|
|
1336
|
-
transform: translate(-41px,-3px);
|
|
1337
|
-
|
|
1338
|
-
&__confirmSup {
|
|
1339
|
-
display: flex;
|
|
1340
|
-
justify-content: space-between;
|
|
1341
|
-
align-items: center;
|
|
1342
|
-
border-left: solid 1px #d8d8d8;
|
|
1343
|
-
color: $img-grey-color;
|
|
1344
|
-
padding-left: 1rem;
|
|
1345
|
-
width: 0;
|
|
1346
|
-
position: absolute;
|
|
1347
|
-
opacity: 0;
|
|
1348
|
-
transition: 0s;
|
|
1349
|
-
visibility: hidden;
|
|
1350
|
-
z-index: 2;
|
|
1351
|
-
|
|
1352
|
-
&--visible {
|
|
1353
|
-
max-width: unset;
|
|
1354
|
-
width: auto;
|
|
1355
|
-
opacity: 1;
|
|
1356
|
-
transition: 0s;
|
|
1357
|
-
visibility: visible;
|
|
1358
|
-
|
|
1359
|
-
p {
|
|
1360
|
-
transition: left .3s ease-in-out;
|
|
1361
|
-
right: 100%;
|
|
1362
|
-
left: auto;
|
|
1363
|
-
white-space: nowrap;
|
|
1364
|
-
margin-right: 30px;
|
|
1365
|
-
}
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
&__cancel {
|
|
1369
|
-
margin-right: 14px;
|
|
1370
|
-
background-color: white;
|
|
1371
|
-
border-color: #dbdbdb;
|
|
1372
|
-
color: $img-main-text;
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
&__text {
|
|
1376
|
-
font-size: 14px;
|
|
1377
|
-
position: absolute;
|
|
1378
|
-
left: -126%;
|
|
1379
|
-
transition: font-size .3s ease-in-out, left .3s ease-in-out;
|
|
1380
|
-
}
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
&__delBtn {
|
|
1384
|
-
i {
|
|
1385
|
-
margin-right: 13px!important;
|
|
1386
|
-
}
|
|
1387
|
-
}
|
|
1388
|
-
|
|
1389
|
-
&__import {
|
|
1390
|
-
margin-right: 13px;
|
|
1391
|
-
i {
|
|
1392
|
-
margin-right: 13px!important;
|
|
1393
|
-
}
|
|
1394
|
-
}
|
|
1395
|
-
}
|
|
1396
|
-
|
|
1397
|
-
&__buttonBox {
|
|
1398
|
-
margin: 0;
|
|
1399
|
-
width: rem(40);
|
|
1400
|
-
height: rem(40);
|
|
1401
|
-
border: solid $img-light-white-color;
|
|
1402
|
-
border-width: 1px 0 1px 1px;
|
|
1403
|
-
|
|
1404
|
-
border-radius: 3px 0 0 3px;
|
|
1405
|
-
outline: none!important;
|
|
1406
|
-
|
|
1407
|
-
> div {
|
|
1408
|
-
margin-top: 0;
|
|
1409
|
-
margin-bottom: 0;
|
|
1410
|
-
height: 40px;
|
|
1411
|
-
&:nth-child(2) {
|
|
1412
|
-
border: solid $img-light-white-color;
|
|
1413
|
-
border-width: 1px 1px 1px 0;
|
|
1414
|
-
transform: translateY(-1px);
|
|
1415
|
-
border-radius: 0 3px 3px 0;
|
|
1416
|
-
}
|
|
1417
|
-
div {
|
|
1418
|
-
height: 38px;
|
|
1419
|
-
margin: 0!important;
|
|
1420
|
-
}
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1423
|
-
.actifDisplayed {
|
|
1424
|
-
color:$img-main-color;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
|
-
i {
|
|
1428
|
-
margin: 0;
|
|
1429
|
-
}
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
|
-
&__cards {
|
|
1433
|
-
display: flex;
|
|
1434
|
-
justify-content: space-between;
|
|
1435
|
-
flex-wrap: wrap;
|
|
1436
|
-
align-items: center;
|
|
1437
|
-
padding-top: 30px;
|
|
1438
|
-
margin-right: calc(0.8rem - 20px);
|
|
1439
|
-
margin-left: 0.3rem;
|
|
1440
|
-
margin-bottom: 30px;
|
|
1441
|
-
|
|
1442
|
-
}
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
|
-
&--pexels {
|
|
1446
|
-
margin-top: -30px;
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
.subHeaderActions .button i {
|
|
1450
|
-
margin-right: 0;
|
|
1451
|
-
}
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
@media screen and (max-width: 768px) {
|
|
1455
|
-
.wz-img-manager .img-tabs__tabsFirst .img-tabs__tabsFirst__list .images-view__scroll {
|
|
1456
|
-
max-height: none!important;
|
|
1457
|
-
min-height: calc(100vh - 440px);
|
|
1458
|
-
|
|
1459
|
-
.ng-scroll-content {
|
|
1460
|
-
margin: 0 !important;
|
|
1461
|
-
min-width: 100%!important;
|
|
1462
|
-
width: 100%!important;
|
|
1463
|
-
}
|
|
1464
|
-
}
|
|
1465
|
-
}
|
|
1466
1466
|
// Warning: in webcomponent (for wizishop-com project) the following style are added by styles-handler.js script (hard-coded)
|
|
1467
1467
|
.wz-img-manager .img-selection {
|
|
1468
1468
|
background-color: white;
|
|
@@ -2331,14 +2331,7 @@ $tag-radius: rem(20px)!default;
|
|
|
2331
2331
|
}
|
|
2332
2332
|
}
|
|
2333
2333
|
}
|
|
2334
|
-
|
|
2335
|
-
max-height: 60vh;
|
|
2336
|
-
}.img-editor__infoSection__propertySEO__tooltips {
|
|
2337
|
-
i {
|
|
2338
|
-
font-size: rem(16);
|
|
2339
|
-
color: $main-text;
|
|
2340
|
-
}
|
|
2341
|
-
}.mosaic {
|
|
2334
|
+
.mosaic {
|
|
2342
2335
|
width: 100%;
|
|
2343
2336
|
display: flex;
|
|
2344
2337
|
flex-wrap: wrap;
|
|
@@ -2659,7 +2652,14 @@ image-cropper {
|
|
|
2659
2652
|
.grey {
|
|
2660
2653
|
color: $img-grey-color;
|
|
2661
2654
|
}
|
|
2662
|
-
|
|
2655
|
+
image-cropper {
|
|
2656
|
+
max-height: 60vh;
|
|
2657
|
+
}.img-editor__infoSection__propertySEO__tooltips {
|
|
2658
|
+
i {
|
|
2659
|
+
font-size: rem(16);
|
|
2660
|
+
color: $main-text;
|
|
2661
|
+
}
|
|
2662
|
+
}$default-color-p-alert: #1e5568;
|
|
2663
2663
|
$success-color-p-alert: #11552e;
|
|
2664
2664
|
$warning-color-p-alert: #3a0505;
|
|
2665
2665
|
$primary-button: #e95656;
|
|
Binary file
|