@capillarytech/creatives-library 8.0.136-alpha.4 → 8.0.136-beta.3
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/components/BreadCrumbs/index.js +65 -0
- package/components/BreadCrumbs/messages.js +13 -0
- package/components/CapTagList/index.js +235 -0
- package/components/CapTagList/messages.js +45 -0
- package/components/Card/_customCard.scss +40 -0
- package/components/Card/index.js +78 -0
- package/components/Card/tests/__snapshots__/index.test.js.snap +22 -0
- package/components/Card/tests/index.test.js +20 -0
- package/components/CardGrid/index.js +71 -0
- package/components/Ckeditor/index.js +238 -0
- package/components/Ckeditor/messages.js +13 -0
- package/components/Ckeditor/style.scss +3 -0
- package/components/Component/index.js +29 -0
- package/components/CustomPopOver/index.js +81 -0
- package/components/CustomPopOver/messages.js +17 -0
- package/components/DateFilter/index.js +349 -0
- package/components/DateFilter/messages.js +57 -0
- package/components/DateRange/index.js +114 -0
- package/components/DateRange/messages.js +25 -0
- package/components/Edmeditor/index.js +65 -0
- package/components/Edmeditor/messages.js +13 -0
- package/components/EmailPreview/_emailPreview.scss +119 -0
- package/components/EmailPreview/assets/images/iPad.svg +10 -0
- package/components/EmailPreview/assets/images/mobile.png +0 -0
- package/components/EmailPreview/index.js +107 -0
- package/components/EmailPreview/messages.js +33 -0
- package/components/Footer/index.js +27 -0
- package/components/Footer/messages.js +13 -0
- package/components/FormBuilder/_formBuilder.scss +83 -0
- package/components/FormBuilder/index.js +3279 -0
- package/components/FormBuilder/messages.js +61 -0
- package/components/Header/index.js +44 -0
- package/components/Header/messages.js +29 -0
- package/components/ImagePreview/_imagePreview.scss +63 -0
- package/components/ImagePreview/index.js +52 -0
- package/components/ImagePreview/messages.js +17 -0
- package/components/PageHeader/_pageHeader.scss +22 -0
- package/components/PageHeader/index.js +37 -0
- package/components/PageHeader/messages.js +13 -0
- package/components/Pagination/_pagination.scss +5 -0
- package/components/Pagination/index.js +49 -0
- package/components/PreviewSideBar/_previewsidebar.scss +28 -0
- package/components/PreviewSideBar/index.js +152 -0
- package/components/PreviewSideBar/messages.js +41 -0
- package/components/Sidebar/_sidebar.scss +115 -0
- package/components/Sidebar/index.js +214 -0
- package/components/Sidebar/messages.js +21 -0
- package/components/SlideBox/_slideBox.scss +63 -0
- package/components/SlideBox/index.js +47 -0
- package/components/SlideBox/tests/index.test.js +103 -0
- package/components/SmsEditor/index.js +55 -0
- package/components/SmsTest/index.js +117 -0
- package/components/SmsTest/messages.js +21 -0
- package/components/TemplatePreview/WechatRichmediaTemplatePreview/_wechatRichmediaTemplatePrev.scss +42 -0
- package/components/TemplatePreview/WechatRichmediaTemplatePreview/index.js +141 -0
- package/components/TemplatePreview/WechatRichmediaTemplatePreview/messages.js +21 -0
- package/components/TemplatePreview/_templatePreview.scss +642 -0
- package/components/TemplatePreview/assets/images/WECHAT_5x.png +0 -0
- package/components/TemplatePreview/assets/images/androidPushMessage.svg +45 -0
- package/components/TemplatePreview/assets/images/home-screen-android.svg +21 -0
- package/components/TemplatePreview/assets/images/home-screen-ios.svg +16 -0
- package/components/TemplatePreview/assets/images/iPhonePushMessage.svg +135 -0
- package/components/TemplatePreview/assets/images/mobile.svg +24 -0
- package/components/TemplatePreview/assets/images/sms-body.png +0 -0
- package/components/TemplatePreview/assets/images/sms-icon.png +0 -0
- package/components/TemplatePreview/assets/images/sms_mobile.png +0 -0
- package/components/TemplatePreview/assets/images/sms_mobile_android.svg +22 -0
- package/components/TemplatePreview/assets/images/sms_mobile_ios.svg +16 -0
- package/components/TemplatePreview/assets/images/user-icon.svg +19 -0
- package/components/TemplatePreview/assets/images/wechat-mobile.svg +78 -0
- package/components/TemplatePreview/assets/images/wechat_mobile_android.svg +20 -0
- package/components/TemplatePreview/index.js +617 -0
- package/components/TemplatePreview/messages.js +78 -0
- package/components/Toastr/index.js +60 -0
- package/components/Toastr/messages.js +13 -0
- package/components/ToastrMessage/index.js +113 -0
- package/components/ToastrMessage/messages.js +17 -0
- package/components/TopBar/_topbar.scss +46 -0
- package/components/TopBar/assets/images/capillary_logo.png +0 -0
- package/components/TopBar/assets/images/old_capillary_logo.png +0 -0
- package/components/TopBar/index.js +113 -0
- package/components/TopBar/messages.js +29 -0
- package/containers/App/actions.js +7 -0
- package/containers/App/constants.js +114 -0
- package/containers/App/index.js +52 -0
- package/containers/App/reducer.js +19 -0
- package/containers/App/sagas.js +31 -0
- package/containers/App/selectors.js +25 -0
- package/containers/App/test/saga.test.js +11 -0
- package/containers/Assets/Gallery/_gallery.scss +126 -0
- package/containers/Assets/Gallery/actions.js +37 -0
- package/containers/Assets/Gallery/constants.js +23 -0
- package/containers/Assets/Gallery/index.js +473 -0
- package/containers/Assets/Gallery/messages.js +93 -0
- package/containers/Assets/Gallery/reducer.js +81 -0
- package/containers/Assets/Gallery/sagas.js +80 -0
- package/containers/Assets/Gallery/selectors.js +25 -0
- package/containers/Assets/Gallery/tests/__snapshots__/reducer.test.js.snap +9 -0
- package/containers/Assets/Gallery/tests/actions.test.js +25 -0
- package/containers/Assets/Gallery/tests/reducer.test.js +96 -0
- package/containers/Assets/Gallery/tests/saga.test.js +157 -0
- package/containers/Cap/actions.js +66 -0
- package/containers/Cap/constants.js +25 -0
- package/containers/Cap/index.js +402 -0
- package/containers/Cap/messages.js +75 -0
- package/containers/Cap/reducer.js +113 -0
- package/containers/Cap/sagas.js +159 -0
- package/containers/Cap/selectors.js +75 -0
- package/containers/Cap/tests/__snapshots__/index.test.js.snap +2269 -0
- package/containers/Cap/tests/index.test.js +22 -0
- package/containers/Cap/tests/saga.test.js +284 -0
- package/containers/Dashboard/actions.js +15 -0
- package/containers/Dashboard/constants.js +7 -0
- package/containers/Dashboard/index.js +76 -0
- package/containers/Dashboard/messages.js +13 -0
- package/containers/Dashboard/reducer.js +21 -0
- package/containers/Dashboard/sagas.js +17 -0
- package/containers/Dashboard/selectors.js +25 -0
- package/containers/Dashboard/test/saga.test.js +9 -0
- package/containers/Ebill/_ebill.scss +5 -0
- package/containers/Ebill/actions.js +43 -0
- package/containers/Ebill/constants.js +20 -0
- package/containers/Ebill/index.js +1278 -0
- package/containers/Ebill/messages.js +77 -0
- package/containers/Ebill/reducer.js +72 -0
- package/containers/Ebill/sagas.js +74 -0
- package/containers/Ebill/selectors.js +25 -0
- package/containers/Ebill/test/saga.test.js +11 -0
- package/containers/Email/_email.scss +141 -0
- package/containers/Email/actions.js +81 -0
- package/containers/Email/constants.js +36 -0
- package/containers/Email/index.js +3325 -0
- package/containers/Email/messages.js +289 -0
- package/containers/Email/reducer.js +142 -0
- package/containers/Email/sagas.js +135 -0
- package/containers/Email/selectors.js +31 -0
- package/containers/Email/test/saga.test.js +671 -0
- package/containers/LanguageProvider/actions.js +17 -0
- package/containers/LanguageProvider/constants.js +8 -0
- package/containers/LanguageProvider/index.js +80 -0
- package/containers/LanguageProvider/reducer.js +30 -0
- package/containers/LanguageProvider/selectors.js +20 -0
- package/containers/LanguageProvider/tests/actions.test.js +19 -0
- package/containers/LanguageProvider/tests/index.test.js +78 -0
- package/containers/LanguageProvider/tests/reducer.test.js +20 -0
- package/containers/LanguageProvider/tests/selectors.test.js +15 -0
- package/containers/Line/Create/_lineCreate.scss +54 -0
- package/containers/Line/Create/actions.js +90 -0
- package/containers/Line/Create/constants.js +39 -0
- package/containers/Line/Create/index.js +836 -0
- package/containers/Line/Create/messages.js +189 -0
- package/containers/Line/Create/reducer.js +99 -0
- package/containers/Line/Create/sagas.js +121 -0
- package/containers/Line/Create/selectors.js +36 -0
- package/containers/Line/Create/tests/saga.test.js +202 -0
- package/containers/Line/Edit/_lineEdit.scss +35 -0
- package/containers/Line/Edit/actions.js +79 -0
- package/containers/Line/Edit/constants.js +27 -0
- package/containers/Line/Edit/index.js +1050 -0
- package/containers/Line/Edit/messages.js +177 -0
- package/containers/Line/Edit/reducer.js +83 -0
- package/containers/Line/Edit/sagas.js +80 -0
- package/containers/Line/Edit/selectors.js +29 -0
- package/containers/Line/Edit/test/saga.test.js +160 -0
- package/containers/Login/assets/images/capillary_logo.png +0 -0
- package/containers/Login/components/LoginForm/index.js +62 -0
- package/containers/Login/components/LoginForm/messages.js +33 -0
- package/containers/Login/index.js +130 -0
- package/containers/Login/messages.js +25 -0
- package/containers/Login/selectors.js +25 -0
- package/containers/MobilePush/Create/_mobilePushCreate.scss +39 -0
- package/containers/MobilePush/Create/actions.js +46 -0
- package/containers/MobilePush/Create/constants.js +23 -0
- package/containers/MobilePush/Create/index.js +2303 -0
- package/containers/MobilePush/Create/messages.js +269 -0
- package/containers/MobilePush/Create/reducer.js +70 -0
- package/containers/MobilePush/Create/sagas.js +74 -0
- package/containers/MobilePush/Create/selectors.js +28 -0
- package/containers/MobilePush/Create/test/saga.test.js +19 -0
- package/containers/MobilePush/Edit/_mobilePushCreate.scss +39 -0
- package/containers/MobilePush/Edit/actions.js +91 -0
- package/containers/MobilePush/Edit/constants.js +35 -0
- package/containers/MobilePush/Edit/index.js +2601 -0
- package/containers/MobilePush/Edit/messages.js +266 -0
- package/containers/MobilePush/Edit/reducer.js +112 -0
- package/containers/MobilePush/Edit/sagas.js +126 -0
- package/containers/MobilePush/Edit/selectors.js +29 -0
- package/containers/MobilePush/Edit/tests/saga.test.js +255 -0
- package/containers/NotFoundPage/index.js +25 -0
- package/containers/NotFoundPage/messages.js +13 -0
- package/containers/NotFoundPage/tests/index.test.js +17 -0
- package/containers/Sms/Create/_smsCreate.scss +42 -0
- package/containers/Sms/Create/actions.js +27 -0
- package/containers/Sms/Create/constants.js +16 -0
- package/containers/Sms/Create/index.js +1488 -0
- package/containers/Sms/Create/messages.js +109 -0
- package/containers/Sms/Create/reducer.js +41 -0
- package/containers/Sms/Create/sagas.js +40 -0
- package/containers/Sms/Create/selectors.js +28 -0
- package/containers/Sms/Create/test/saga.test.js +11 -0
- package/containers/Sms/Edit/actions.js +40 -0
- package/containers/Sms/Edit/constants.js +17 -0
- package/containers/Sms/Edit/index.js +1472 -0
- package/containers/Sms/Edit/messages.js +105 -0
- package/containers/Sms/Edit/reducer.js +50 -0
- package/containers/Sms/Edit/sagas.js +60 -0
- package/containers/Sms/Edit/selectors.js +32 -0
- package/containers/Sms/Edit/test/saga.test.js +13 -0
- package/containers/TagList/_tagList.scss +8 -0
- package/containers/TagList/actions.js +15 -0
- package/containers/TagList/constants.js +32 -0
- package/containers/TagList/index.js +236 -0
- package/containers/TagList/messages.js +13 -0
- package/containers/TagList/reducer.js +23 -0
- package/containers/TagList/sagas.js +11 -0
- package/containers/TagList/selectors.js +25 -0
- package/containers/Templates/_templates.scss +333 -0
- package/containers/Templates/actions.js +103 -0
- package/containers/Templates/constants.js +60 -0
- package/containers/Templates/index.js +1756 -0
- package/containers/Templates/messages.js +337 -0
- package/containers/Templates/reducer.js +142 -0
- package/containers/Templates/sagas.js +163 -0
- package/containers/Templates/selectors.js +28 -0
- package/containers/Templates/test/saga.test.js +241 -0
- package/containers/WeChat/MapTemplates/_mapTemplates.scss +8 -0
- package/containers/WeChat/MapTemplates/actions.js +52 -0
- package/containers/WeChat/MapTemplates/constants.js +28 -0
- package/containers/WeChat/MapTemplates/index.js +1610 -0
- package/containers/WeChat/MapTemplates/messages.js +157 -0
- package/containers/WeChat/MapTemplates/reducer.js +74 -0
- package/containers/WeChat/MapTemplates/sagas.js +84 -0
- package/containers/WeChat/MapTemplates/selectors.js +25 -0
- package/containers/WeChat/MapTemplates/test/saga.test.js +155 -0
- package/containers/WeChat/RichmediaTemplates/Create/_createRichmedia.scss +57 -0
- package/containers/WeChat/RichmediaTemplates/Create/actions.js +36 -0
- package/containers/WeChat/RichmediaTemplates/Create/constants.js +15 -0
- package/containers/WeChat/RichmediaTemplates/Create/index.js +1071 -0
- package/containers/WeChat/RichmediaTemplates/Create/messages.js +165 -0
- package/containers/WeChat/RichmediaTemplates/Create/reducer.js +60 -0
- package/containers/WeChat/RichmediaTemplates/Create/richmediaschema.js +497 -0
- package/containers/WeChat/RichmediaTemplates/Create/sagas.js +51 -0
- package/containers/WeChat/RichmediaTemplates/Create/selectors.js +37 -0
- package/containers/WeChat/RichmediaTemplates/Create/test/saga.test.js +13 -0
- package/containers/WeChat/RichmediaTemplates/Edit/actions.js +20 -0
- package/containers/WeChat/RichmediaTemplates/Edit/constants.js +10 -0
- package/containers/WeChat/RichmediaTemplates/Edit/index.js +136 -0
- package/containers/WeChat/RichmediaTemplates/Edit/messages.js +13 -0
- package/containers/WeChat/RichmediaTemplates/Edit/reducer.js +28 -0
- package/containers/WeChat/RichmediaTemplates/Edit/sagas.js +36 -0
- package/containers/WeChat/RichmediaTemplates/Edit/selectors.js +30 -0
- package/containers/WeChat/RichmediaTemplates/Edit/test/saga.test.js +12 -0
- package/containers/WeChat/RichmediaTemplates/View/actions.js +15 -0
- package/containers/WeChat/RichmediaTemplates/View/constants.js +7 -0
- package/containers/WeChat/RichmediaTemplates/View/index.js +47 -0
- package/containers/WeChat/RichmediaTemplates/View/messages.js +21 -0
- package/containers/WeChat/RichmediaTemplates/View/reducer.js +23 -0
- package/containers/WeChat/RichmediaTemplates/View/sagas.js +11 -0
- package/containers/WeChat/RichmediaTemplates/View/selectors.js +25 -0
- package/index.js +2 -4
- package/package.json +1 -1
- package/routes.js +202 -136
- package/services/getSchema.js +1 -1
- package/services/localStorageApi.js +0 -1
- package/tests/i18n.test.js +1 -1
- package/utils/asyncInjectors.js +78 -0
- package/utils/authWrapper.js +1 -1
- package/utils/callNativeEvent.js +16 -0
- package/utils/checkStore.js +21 -0
- package/utils/common.js +2 -2
- package/utils/customAuthWrapper.js +62 -0
- package/utils/customConnectedAuthWrapper.js +26 -0
- package/utils/tagValidations.js +1 -1
- package/utils/tests/checkStore.test.js +1 -1
- package/utils/tests/customAuth.test.js +1 -1
- package/utils/transformerUtils.js +195 -1
- package/v2Components/CapTagList/index.js +14 -9
- package/v2Components/Carousel/style.scss +1 -1
- package/v2Components/EmailMobilePreview/index.js +2 -2
- package/v2Components/FormBuilder/index.js +2 -2
- package/v2Components/TemplatePreview/index.js +1 -2
- package/v2Containers/Cap/tests/saga.test.js +1 -1
- package/v2Containers/Email/index.js +1 -1
- package/v2Containers/FTP/index.js +1 -1
- package/v2Containers/Line/Container/Text/index.js +6 -6
- package/v2Containers/Sms/Create/index.js +2 -2
- package/v2Containers/Sms/Edit/index.js +1 -1
- package/v2Containers/TagList/index.js +1 -1
- package/v2Containers/TagList/utils.js +1 -1
- package/v2Containers/Templates/index.js +1 -1
- package/v2Containers/Templates/sagas.js +1 -1
- package/constants/unified.js +0 -189
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
@import '~@capillarytech/cap-ui-library/styles/_variables.scss';
|
|
2
|
+
|
|
3
|
+
.shell-lock-screen-ios{
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-wrap: nowrap;
|
|
6
|
+
.lock-screen-preview{
|
|
7
|
+
margin: 0 20px 0 auto;
|
|
8
|
+
.action-text-reply{
|
|
9
|
+
position: absolute;
|
|
10
|
+
left: 34%;
|
|
11
|
+
top: 43% !important;
|
|
12
|
+
color: #3861ca;
|
|
13
|
+
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
14
|
+
}
|
|
15
|
+
.action-text-cancel{
|
|
16
|
+
position: absolute;
|
|
17
|
+
left: 33.5%;
|
|
18
|
+
top: 48% !important;
|
|
19
|
+
color: #3861ca;
|
|
20
|
+
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
.main-screen-preview{
|
|
24
|
+
margin: 0 auto 0 20px;
|
|
25
|
+
}
|
|
26
|
+
.lock-screen-preview .lock-msgContainer{
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 30% !important;
|
|
29
|
+
left: 25.9%;
|
|
30
|
+
width: 21.5%;
|
|
31
|
+
height: 60px;
|
|
32
|
+
display: -webkit-box;
|
|
33
|
+
display: -ms-flexbox;
|
|
34
|
+
display: flex;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
&.wechat{
|
|
37
|
+
width: 20.5%;
|
|
38
|
+
left: 25.5%;
|
|
39
|
+
}
|
|
40
|
+
.sender-id-text{
|
|
41
|
+
position: absolute;
|
|
42
|
+
top: 16%;
|
|
43
|
+
font-size: $FONT_SIZE_VS;
|
|
44
|
+
left: 11%;
|
|
45
|
+
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
46
|
+
}
|
|
47
|
+
.message-text-container{
|
|
48
|
+
width: 176px;
|
|
49
|
+
left: 11%;
|
|
50
|
+
top: 50%;
|
|
51
|
+
position: absolute;
|
|
52
|
+
text-align: left;
|
|
53
|
+
text-overflow: ellipsis;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.main-screen-preview .msgContainer{
|
|
57
|
+
position: absolute;
|
|
58
|
+
top: 30% !important;
|
|
59
|
+
left: 53%;
|
|
60
|
+
width: 42%;
|
|
61
|
+
height: 336px;
|
|
62
|
+
display: -webkit-box;
|
|
63
|
+
display: -ms-flexbox;
|
|
64
|
+
display: flex;
|
|
65
|
+
|
|
66
|
+
.sms-icon{
|
|
67
|
+
top: 0;
|
|
68
|
+
left: 2px;
|
|
69
|
+
width: 25px;
|
|
70
|
+
position: absolute;
|
|
71
|
+
}
|
|
72
|
+
&.sms{
|
|
73
|
+
height: 290px;
|
|
74
|
+
width: 21%;
|
|
75
|
+
.sms-icon{
|
|
76
|
+
width: 20px;
|
|
77
|
+
left: 14px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.message-pop{
|
|
82
|
+
.unicode-disabled{
|
|
83
|
+
font-size: $FONT_SIZE_L;
|
|
84
|
+
}
|
|
85
|
+
&.sms {
|
|
86
|
+
max-height: 100%;
|
|
87
|
+
position: absolute;
|
|
88
|
+
// width: initial;
|
|
89
|
+
overflow: auto;
|
|
90
|
+
top: 0;
|
|
91
|
+
white-space: pre-wrap;
|
|
92
|
+
word-break: break-word;
|
|
93
|
+
line-height: 14px;
|
|
94
|
+
padding: 0 8px 8px 8px;
|
|
95
|
+
font-size: $FONT_SIZE_VS;
|
|
96
|
+
width: 100%;
|
|
97
|
+
font-family: 'open-sans';
|
|
98
|
+
.message-pop-item{
|
|
99
|
+
padding: 4px;
|
|
100
|
+
background: #3F51B5;
|
|
101
|
+
color: $CAP_WHITE;
|
|
102
|
+
margin-top: 8px;
|
|
103
|
+
border-radius: 4px;
|
|
104
|
+
min-height: 26px;
|
|
105
|
+
&:first-child{
|
|
106
|
+
margin-top: 0;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
&.wechat{
|
|
111
|
+
padding: 4px;
|
|
112
|
+
background: #3F51B5;
|
|
113
|
+
position: absolute;
|
|
114
|
+
// width: initial;
|
|
115
|
+
overflow: auto;
|
|
116
|
+
top: 0;
|
|
117
|
+
left: 2%;
|
|
118
|
+
white-space: pre-wrap;
|
|
119
|
+
word-break: break-word;
|
|
120
|
+
border-radius: 4px;
|
|
121
|
+
max-height: 100%;
|
|
122
|
+
color: #FFFFFF;
|
|
123
|
+
width: 45%;
|
|
124
|
+
min-height: 26px;
|
|
125
|
+
line-height: 14px;
|
|
126
|
+
padding: 8px;
|
|
127
|
+
font-size: $FONT_SIZE_VS;
|
|
128
|
+
font-family: 'open-sans';
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.shell-lock-screen-android{
|
|
135
|
+
display: flex;
|
|
136
|
+
flex-wrap: nowrap;
|
|
137
|
+
.lock-screen-preview{
|
|
138
|
+
margin: 0 20px 0 auto;
|
|
139
|
+
.action-text{
|
|
140
|
+
position: absolute;
|
|
141
|
+
left: 28.5%;
|
|
142
|
+
top: 39% !important;
|
|
143
|
+
font-size: $FONT_SIZE_VS;
|
|
144
|
+
color: #3861ca;
|
|
145
|
+
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
.main-screen-preview{
|
|
149
|
+
margin: 0 auto 0 20px;
|
|
150
|
+
}
|
|
151
|
+
.lock-screen-preview .lock-msgContainer{
|
|
152
|
+
position: absolute;
|
|
153
|
+
top: 32% !important;
|
|
154
|
+
left: 26.9%;
|
|
155
|
+
width: 21.5%;
|
|
156
|
+
height: 52px;
|
|
157
|
+
display: -webkit-box;
|
|
158
|
+
display: -ms-flexbox;
|
|
159
|
+
display: flex;
|
|
160
|
+
overflow: hidden;
|
|
161
|
+
&.wechat{
|
|
162
|
+
width: 20.5%;
|
|
163
|
+
left: 25.5%;
|
|
164
|
+
}
|
|
165
|
+
.sender-id-text{
|
|
166
|
+
position: absolute;
|
|
167
|
+
top: 14%;
|
|
168
|
+
font-size: 10px;
|
|
169
|
+
left: 9%;
|
|
170
|
+
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
171
|
+
}
|
|
172
|
+
.message-text-container{
|
|
173
|
+
width: 176px;
|
|
174
|
+
left: 9%;
|
|
175
|
+
top: 43%;
|
|
176
|
+
position: absolute;
|
|
177
|
+
text-align: left;
|
|
178
|
+
text-overflow: ellipsis;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.main-screen-preview .msgContainer{
|
|
183
|
+
position: absolute;
|
|
184
|
+
top: 30% !important;
|
|
185
|
+
left: 53%;
|
|
186
|
+
width: 42%;
|
|
187
|
+
height: 336px;
|
|
188
|
+
display: -webkit-box;
|
|
189
|
+
display: -ms-flexbox;
|
|
190
|
+
display: flex;
|
|
191
|
+
|
|
192
|
+
.sms-icon{
|
|
193
|
+
top: 0;
|
|
194
|
+
left: 2px;
|
|
195
|
+
width: 25px;
|
|
196
|
+
position: absolute;
|
|
197
|
+
}
|
|
198
|
+
&.sms{
|
|
199
|
+
height: 290px;
|
|
200
|
+
width: 21%;
|
|
201
|
+
.sms-icon{
|
|
202
|
+
width: 20px;
|
|
203
|
+
left: 14px;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.message-pop{
|
|
208
|
+
.unicode-disabled{
|
|
209
|
+
font-size: $FONT_SIZE_L;
|
|
210
|
+
}
|
|
211
|
+
&.sms {
|
|
212
|
+
max-height: 100%;
|
|
213
|
+
position: absolute;
|
|
214
|
+
// width: initial;
|
|
215
|
+
overflow: auto;
|
|
216
|
+
top: 0;
|
|
217
|
+
white-space: pre-wrap;
|
|
218
|
+
word-break: break-word;
|
|
219
|
+
line-height: 14px;
|
|
220
|
+
padding: 0 8px 8px 8px;
|
|
221
|
+
font-size: $FONT_SIZE_VS;
|
|
222
|
+
width: 100%;
|
|
223
|
+
font-family: 'open-sans';
|
|
224
|
+
.message-pop-item{
|
|
225
|
+
padding: 4px;
|
|
226
|
+
background: #3F51B5;
|
|
227
|
+
color: $CAP_WHITE;
|
|
228
|
+
margin-top: 8px;
|
|
229
|
+
border-radius: 4px;
|
|
230
|
+
min-height: 26px;
|
|
231
|
+
&:first-child{
|
|
232
|
+
margin-top: 0;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
&:not(.sms){
|
|
237
|
+
padding: 4px;
|
|
238
|
+
background: #3F51B5;
|
|
239
|
+
position: absolute;
|
|
240
|
+
// width: initial;
|
|
241
|
+
overflow: auto;
|
|
242
|
+
top: 14px;
|
|
243
|
+
left: 2%;
|
|
244
|
+
white-space: pre-wrap;
|
|
245
|
+
word-break: break-word;
|
|
246
|
+
border-radius: 4px;
|
|
247
|
+
max-height: 100%;
|
|
248
|
+
color: $CAP_WHITE;
|
|
249
|
+
width: 45%;
|
|
250
|
+
min-height: 26px;
|
|
251
|
+
line-height: 14px;
|
|
252
|
+
padding: 8px;
|
|
253
|
+
font-size: $FONT_SIZE_VS;
|
|
254
|
+
font-family: 'open-sans';
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.shell {
|
|
261
|
+
position: relative;
|
|
262
|
+
-webkit-transform: translate(-50%);
|
|
263
|
+
transform: translate(-50%);
|
|
264
|
+
left: 50%;
|
|
265
|
+
padding: 0 10px;
|
|
266
|
+
width: 450px;
|
|
267
|
+
|
|
268
|
+
.preview-image {
|
|
269
|
+
width: 51%;
|
|
270
|
+
&.sms {
|
|
271
|
+
width: 45%;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.cap-carousel-v2 {
|
|
276
|
+
.line-preview {
|
|
277
|
+
.message-pop {
|
|
278
|
+
margin-top: -6px;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.msgContainer {
|
|
284
|
+
position: absolute;
|
|
285
|
+
top: 18%;
|
|
286
|
+
left: 28.8%;
|
|
287
|
+
width: 42%;
|
|
288
|
+
height: 336px;
|
|
289
|
+
display: -webkit-box;
|
|
290
|
+
display: -ms-flexbox;
|
|
291
|
+
display: flex;
|
|
292
|
+
|
|
293
|
+
.sms-icon{
|
|
294
|
+
top: 0;
|
|
295
|
+
left: 2px;
|
|
296
|
+
width: 25px;
|
|
297
|
+
position: absolute;
|
|
298
|
+
}
|
|
299
|
+
&.sms{
|
|
300
|
+
height: 290px;
|
|
301
|
+
width: 40%;
|
|
302
|
+
.sms-icon{
|
|
303
|
+
width: 20px;
|
|
304
|
+
left: 14px;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.message-pop{
|
|
309
|
+
.unicode-disabled{
|
|
310
|
+
font-size: $FONT_SIZE_L;
|
|
311
|
+
}
|
|
312
|
+
&.sms {
|
|
313
|
+
max-height: 100%;
|
|
314
|
+
position: absolute;
|
|
315
|
+
// width: initial;
|
|
316
|
+
overflow: auto;
|
|
317
|
+
top: 4px;
|
|
318
|
+
left: 3%;
|
|
319
|
+
white-space: pre-wrap;
|
|
320
|
+
word-break: break-word;
|
|
321
|
+
line-height: 14px;
|
|
322
|
+
padding: 0 8px 8px 8px;
|
|
323
|
+
font-size: $FONT_SIZE_VS;
|
|
324
|
+
width: 100%;
|
|
325
|
+
font-family: 'open-sans';
|
|
326
|
+
.message-pop-item{
|
|
327
|
+
padding: 4px;
|
|
328
|
+
background: #3F51B5;
|
|
329
|
+
color: $CAP_WHITE;
|
|
330
|
+
margin-top: 8px;
|
|
331
|
+
border-radius: 4px;
|
|
332
|
+
min-height: 26px;
|
|
333
|
+
&:first-child{
|
|
334
|
+
margin-top: 0;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
&:not(.sms){
|
|
339
|
+
padding: 4px;
|
|
340
|
+
background: #3F51B5;
|
|
341
|
+
position: absolute;
|
|
342
|
+
// width: initial;
|
|
343
|
+
overflow: auto;
|
|
344
|
+
top: 4px;
|
|
345
|
+
left: 0;
|
|
346
|
+
white-space: pre-wrap;
|
|
347
|
+
word-break: break-word;
|
|
348
|
+
border-radius: 4px;
|
|
349
|
+
max-height: 100%;
|
|
350
|
+
color: #FFFFFF;
|
|
351
|
+
width: 100%;
|
|
352
|
+
min-height: 26px;
|
|
353
|
+
line-height: 14px;
|
|
354
|
+
padding: 8px;
|
|
355
|
+
font-size: 10px;
|
|
356
|
+
font-family: 'open-sans';
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
.android-push-message-Container, .iphone-push-message-Container{
|
|
361
|
+
position: absolute;
|
|
362
|
+
top: 11%;
|
|
363
|
+
left: 28.8%;
|
|
364
|
+
width: 42%;
|
|
365
|
+
height: 336px;
|
|
366
|
+
overflow: auto;
|
|
367
|
+
display: -webkit-box;
|
|
368
|
+
display: -ms-flexbox;
|
|
369
|
+
display: flex;
|
|
370
|
+
.message-pop{
|
|
371
|
+
position: absolute;
|
|
372
|
+
// width: initial;
|
|
373
|
+
overflow: auto;
|
|
374
|
+
word-wrap: break-word;
|
|
375
|
+
white-space: pre-wrap;
|
|
376
|
+
border-top-left-radius: 4px;
|
|
377
|
+
border-top-right-radius: 4px;
|
|
378
|
+
max-height: 100%;
|
|
379
|
+
width: 100%;
|
|
380
|
+
min-height: 26px;
|
|
381
|
+
line-height: 15px;
|
|
382
|
+
font-size: $FONT_SIZE_VS;
|
|
383
|
+
.body-image{
|
|
384
|
+
img{
|
|
385
|
+
max-width: 100%;
|
|
386
|
+
max-height: 90px;
|
|
387
|
+
margin: auto;
|
|
388
|
+
display: block;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
.android-push-message-Container{
|
|
394
|
+
.title, .body-text, .body-image, .app-name{
|
|
395
|
+
background-color: $CAP_WHITE;
|
|
396
|
+
color: #333333;
|
|
397
|
+
}
|
|
398
|
+
.app-name{
|
|
399
|
+
color: #5D5D5D;
|
|
400
|
+
font-weight: 600;
|
|
401
|
+
padding: 8px 8px 4px 8px;
|
|
402
|
+
}
|
|
403
|
+
.title, .body-image{
|
|
404
|
+
padding: 0 8px 0 8px;
|
|
405
|
+
|
|
406
|
+
}
|
|
407
|
+
.body-text{
|
|
408
|
+
padding: 0 8px 4px 8px;
|
|
409
|
+
color: #5a5959;
|
|
410
|
+
}
|
|
411
|
+
.title{
|
|
412
|
+
overflow: hidden;
|
|
413
|
+
white-space: nowrap;
|
|
414
|
+
text-overflow: ellipsis;
|
|
415
|
+
}
|
|
416
|
+
.actions{
|
|
417
|
+
background-color: #EEEEEE;
|
|
418
|
+
height: 32px;
|
|
419
|
+
padding: 4px;
|
|
420
|
+
.action{
|
|
421
|
+
line-height: 24px;
|
|
422
|
+
font-size: $FONT_SIZE_VS;
|
|
423
|
+
font-weight: 600;
|
|
424
|
+
color: #1970DA;
|
|
425
|
+
height: 12px;
|
|
426
|
+
margin-left: 8px;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
.iphone-push-message-Container{
|
|
431
|
+
top: 8%;
|
|
432
|
+
.message-pop{
|
|
433
|
+
border-radius: 4px;
|
|
434
|
+
word-wrap: break-word;
|
|
435
|
+
}
|
|
436
|
+
.title, .body-text, .body-image, .app-name{
|
|
437
|
+
background-color: $CAP_WHITE;
|
|
438
|
+
color: #333333;
|
|
439
|
+
}
|
|
440
|
+
.body-image{
|
|
441
|
+
padding-top: 8px;
|
|
442
|
+
}
|
|
443
|
+
.title{
|
|
444
|
+
overflow: hidden;
|
|
445
|
+
white-space: nowrap;
|
|
446
|
+
text-overflow: ellipsis;
|
|
447
|
+
}
|
|
448
|
+
.app-name{
|
|
449
|
+
padding: 8px;
|
|
450
|
+
color: #5D5D5D;
|
|
451
|
+
border-bottom: solid 1px #D6D6D6;
|
|
452
|
+
.material-icons{
|
|
453
|
+
font-size: $FONT_SIZE_S;
|
|
454
|
+
float: right;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
.title, .body-text{
|
|
458
|
+
padding: 4px;
|
|
459
|
+
}
|
|
460
|
+
.title{
|
|
461
|
+
overflow: hidden;
|
|
462
|
+
white-space: nowrap;
|
|
463
|
+
text-overflow: ellipsis;
|
|
464
|
+
}
|
|
465
|
+
.body-text{
|
|
466
|
+
border-bottom-left-radius: 4px;
|
|
467
|
+
border-bottom-right-radius: 4px;
|
|
468
|
+
}
|
|
469
|
+
.actions{
|
|
470
|
+
background-color: #FFFFFF;
|
|
471
|
+
opacity: 0.8;
|
|
472
|
+
height: 32px;
|
|
473
|
+
line-height: 26px;
|
|
474
|
+
margin-top: 4px;
|
|
475
|
+
border-radius: 6px;
|
|
476
|
+
text-align: center;
|
|
477
|
+
padding: 4px;
|
|
478
|
+
.action{
|
|
479
|
+
font-size: 12px;
|
|
480
|
+
font-weight: 600;
|
|
481
|
+
color: #000000;
|
|
482
|
+
text-align: center;
|
|
483
|
+
margin-left: 8px;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.align-center {
|
|
490
|
+
text-align: center;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.align-left {
|
|
494
|
+
text-align: left;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.preview-container{
|
|
498
|
+
.preview-info {
|
|
499
|
+
font-family: 'proxima-nova';
|
|
500
|
+
font-weight: 600;
|
|
501
|
+
font-size: 16px;
|
|
502
|
+
text-align: center;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.preview-container.embedded-preview{
|
|
507
|
+
.preview-image {
|
|
508
|
+
width: 38% !important;
|
|
509
|
+
}
|
|
510
|
+
.message-pop{
|
|
511
|
+
left: 21% !important;
|
|
512
|
+
width: 67% !important;
|
|
513
|
+
}
|
|
514
|
+
.sms-icon{
|
|
515
|
+
left: 12% !important;
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
#slidebox-container {
|
|
522
|
+
left: 60vw;
|
|
523
|
+
width: 40vw;
|
|
524
|
+
|
|
525
|
+
.shell {
|
|
526
|
+
position: relative;
|
|
527
|
+
-webkit-transform: translate(-50%);
|
|
528
|
+
transform: translate(-50%);
|
|
529
|
+
left: 50%;
|
|
530
|
+
padding: 0 10px;
|
|
531
|
+
width: initial;
|
|
532
|
+
|
|
533
|
+
.preview-image {
|
|
534
|
+
&.sms{
|
|
535
|
+
width: 45%;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
.msgContainer {
|
|
541
|
+
position: absolute;
|
|
542
|
+
top: 20%;
|
|
543
|
+
left: 23%;
|
|
544
|
+
width: 42%;
|
|
545
|
+
height: 275px;
|
|
546
|
+
display: -webkit-box;
|
|
547
|
+
display: -ms-flexbox;
|
|
548
|
+
display: flex;
|
|
549
|
+
|
|
550
|
+
.sms-icon{
|
|
551
|
+
top: 6%;
|
|
552
|
+
left: 2%;
|
|
553
|
+
width: 12%;
|
|
554
|
+
position: absolute;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
&.sms{
|
|
558
|
+
height: 290px;
|
|
559
|
+
width: 40%;
|
|
560
|
+
top: 16%;
|
|
561
|
+
.sms-icon{
|
|
562
|
+
left: 7%;
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
.message-pop{
|
|
566
|
+
&.sms {
|
|
567
|
+
max-height: 100%;
|
|
568
|
+
position: absolute;
|
|
569
|
+
// width: initial;
|
|
570
|
+
overflow: auto;
|
|
571
|
+
top: 6%;
|
|
572
|
+
left: 17%;
|
|
573
|
+
width: 100%;
|
|
574
|
+
white-space: pre-wrap;
|
|
575
|
+
word-break: break-word;
|
|
576
|
+
line-height: 14px;
|
|
577
|
+
padding: 0 8px 8px 8px;
|
|
578
|
+
font-size: $FONT_SIZE_VS;
|
|
579
|
+
font-family: 'open-sans';
|
|
580
|
+
.message-pop-item{
|
|
581
|
+
padding: 8px;
|
|
582
|
+
background: #3F51B5;
|
|
583
|
+
color: $CAP_WHITE;
|
|
584
|
+
margin-top: 8px;
|
|
585
|
+
border-radius: 4px;
|
|
586
|
+
min-height: 26px;
|
|
587
|
+
&:first-child{
|
|
588
|
+
margin-top: 0;
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
&:not(.sms){
|
|
593
|
+
padding: 8px 8px;
|
|
594
|
+
background: #3F51B5;
|
|
595
|
+
position: absolute;
|
|
596
|
+
width: 65%;
|
|
597
|
+
top: 15%;
|
|
598
|
+
left: 19%;
|
|
599
|
+
word-break: break-all;
|
|
600
|
+
border-radius: 6px;
|
|
601
|
+
max-height: 100%;
|
|
602
|
+
overflow: auto;
|
|
603
|
+
color: #FFFFFF;
|
|
604
|
+
line-height: 14px;
|
|
605
|
+
font-family: "open-sans";
|
|
606
|
+
font-size: $FONT_SIZE_VS;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
.app-icon{
|
|
613
|
+
width: 10px;
|
|
614
|
+
height: 10px;
|
|
615
|
+
opacity: 1;
|
|
616
|
+
display: inline-block;
|
|
617
|
+
background-color: #333333;
|
|
618
|
+
margin-right: 4px;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.template-carousel.single-img {
|
|
622
|
+
.slick-track {
|
|
623
|
+
margin-left: 0;
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.ant-btn.cap-button-v2.flat-btn.preview-video-btn {
|
|
628
|
+
padding: 0;
|
|
629
|
+
background-color: transparent;
|
|
630
|
+
height: auto;
|
|
631
|
+
|
|
632
|
+
i {
|
|
633
|
+
vertical-align: middle;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
span {
|
|
637
|
+
font-size: $FONT_SIZE_VS;
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
.line-image-preview{
|
|
641
|
+
max-width: 8.57rem;;
|
|
642
|
+
}
|
|
Binary file
|