@capillarytech/creatives-library 8.0.138 → 8.0.139-alpha.1
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/package.json +1 -1
- package/v2Components/CapImageUpload/index.js +1 -1
- package/v2Containers/Line/Container/_lineCreate.scss +2 -2
- package/v2Containers/MobilePushNew/components/MediaUploaders.js +118 -83
- package/v2Containers/MobilePushNew/components/PlatformContentFields.js +1 -1
- package/v2Containers/MobilePushNew/index.js +458 -590
- package/v2Containers/MobilePushNew/index.scss +6 -1
- package/v2Containers/MobilePushNew/messages.js +1 -1
- package/v2Containers/Templates/index.js +1 -1
|
@@ -264,6 +264,11 @@
|
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
.cap-custom-image-upload {
|
|
267
|
+
img {
|
|
268
|
+
max-width: 18.75rem !important;
|
|
269
|
+
max-height: 9.375rem !important;
|
|
270
|
+
display: block !important;
|
|
271
|
+
}
|
|
267
272
|
.dragger-button.re-upload {
|
|
268
273
|
top: -9.375rem;
|
|
269
274
|
position: relative;
|
|
@@ -294,7 +299,7 @@
|
|
|
294
299
|
.image-container {
|
|
295
300
|
img {
|
|
296
301
|
object-fit: cover !important;
|
|
297
|
-
max-width: 18.75rem;
|
|
302
|
+
max-width: 18.75rem !important;
|
|
298
303
|
max-height: 9.375rem !important;
|
|
299
304
|
display: block !important;
|
|
300
305
|
}
|
|
@@ -233,7 +233,7 @@ export default defineMessages({
|
|
|
233
233
|
},
|
|
234
234
|
sameContentForBothChannels: {
|
|
235
235
|
id: `${scope}.sameContentForBothChannels`,
|
|
236
|
-
defaultMessage: 'Same content for both
|
|
236
|
+
defaultMessage: 'Same content for both platforms',
|
|
237
237
|
},
|
|
238
238
|
sameContentNote: {
|
|
239
239
|
id: `${scope}.sameContentNote`,
|
|
@@ -1300,7 +1300,7 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
1300
1300
|
)}
|
|
1301
1301
|
{style === VIDEO && (
|
|
1302
1302
|
<div className="video-preview">
|
|
1303
|
-
<video>
|
|
1303
|
+
<video aria-label="Template video preview" controls={false} tabIndex="0">
|
|
1304
1304
|
<source src={url} type="video/mp4" />
|
|
1305
1305
|
</video>
|
|
1306
1306
|
<div className="icon-position">
|