vue-intergrall-plugins 0.0.503 → 0.0.504
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/dist/vue-intergrall-plugins.esm.js +75 -61
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +120 -106
- package/package.json +1 -1
- package/src/lib-components/Cards/Card.vue +129 -113
- package/src/lib-components/Chat/BtnDownloadAllFiles.vue +18 -14
- package/src/lib-components/Chat/BtnEmojis.vue +1 -1
- package/src/lib-components/Chat/BtnFiles.vue +330 -204
- package/src/lib-components/Chat/BtnScreenShare.vue +20 -16
- package/src/lib-components/Chat/ExpandTextarea.vue +3 -3
- package/src/lib-components/Chat/MultipleFilePreview.vue +4 -4
- package/src/lib-components/Chat/Picker.vue +1 -1
- package/src/lib-components/Chat/SingleFilePreview.vue +2 -2
- package/src/lib-components/Chat/TextFooter.vue +34 -79
- package/src/lib-components/Email/EmailItem.vue +2 -2
- package/src/lib-components/Messages/AnexoMensagem.vue +14 -30
- package/src/lib-components/Messages/CardMessages.vue +2 -2
- package/src/lib-components/Messages/ChatMessages.vue +10 -10
- package/src/lib-components/Messages/InteratividadeFormulario.vue +3 -3
- package/src/lib-components/Messages/InteratividadePopup.vue +1 -1
- package/src/lib-components/Messages/LinkPreview.vue +1 -1
- package/src/lib-components/Scroll/ScrollContent.vue +78 -62
- package/src/lib-components/Templates/TemplateGenerator.vue +3 -3
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
class="text-footer-actions--btn"
|
|
4
|
+
@click="$emit('toggle-standard-messages')"
|
|
5
|
+
:title="dictionary.title_screen_share"
|
|
6
|
+
>
|
|
3
7
|
<fa-icon :icon="['fas', 'desktop']" />
|
|
4
8
|
<fa-icon :icon="['fas', 'share']" />
|
|
5
9
|
</div>
|
|
6
10
|
</template>
|
|
7
11
|
|
|
8
12
|
<style scoped>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
.text-footer-actions--btn {
|
|
14
|
+
position: relative;
|
|
15
|
+
}
|
|
16
|
+
.text-footer-actions--btn > svg:nth-child(1) {
|
|
17
|
+
font-size: 19.2px;
|
|
18
|
+
}
|
|
19
|
+
.text-footer-actions--btn > svg:nth-child(2) {
|
|
20
|
+
font-size: 9.6px;
|
|
21
|
+
position: absolute;
|
|
22
|
+
transform: translateY(-2px);
|
|
23
|
+
}
|
|
20
24
|
</style>
|
|
21
25
|
|
|
22
26
|
<script>
|
|
@@ -25,8 +29,8 @@ export default {
|
|
|
25
29
|
dictionary: {
|
|
26
30
|
type: Object,
|
|
27
31
|
default: {},
|
|
28
|
-
required: false
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
+
required: false,
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
};
|
|
32
36
|
</script>
|
|
@@ -281,7 +281,7 @@ export default {
|
|
|
281
281
|
border-radius: 50%;
|
|
282
282
|
z-index: 1;
|
|
283
283
|
color: #E74C3C;
|
|
284
|
-
font-size:
|
|
284
|
+
font-size: 20.8px;
|
|
285
285
|
}
|
|
286
286
|
.sc-icone-fechar.sc-icone-fechar--externo {
|
|
287
287
|
top: -10px;
|
|
@@ -314,7 +314,7 @@ export default {
|
|
|
314
314
|
display: flex;
|
|
315
315
|
align-items: center;
|
|
316
316
|
width: 100%;
|
|
317
|
-
font-size:
|
|
317
|
+
font-size: 20.8px;
|
|
318
318
|
background-color: #222;
|
|
319
319
|
color: #FFF;
|
|
320
320
|
}
|
|
@@ -356,7 +356,7 @@ export default {
|
|
|
356
356
|
display: flex;
|
|
357
357
|
justify-content: center;
|
|
358
358
|
align-items: center;
|
|
359
|
-
font-size:
|
|
359
|
+
font-size: 20.8px;
|
|
360
360
|
cursor: pointer;
|
|
361
361
|
opacity: .9;
|
|
362
362
|
transition: all 300ms;
|
|
@@ -152,7 +152,7 @@ export default {
|
|
|
152
152
|
.text-footer-invalid-format h4 {
|
|
153
153
|
text-overflow: ellipsis;
|
|
154
154
|
overflow: hidden;
|
|
155
|
-
font-size: .
|
|
155
|
+
font-size: 14.4px;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
.text-footer-exclude-file {
|
|
@@ -163,8 +163,8 @@ export default {
|
|
|
163
163
|
display: flex;
|
|
164
164
|
justify-content: center;
|
|
165
165
|
align-items: center;
|
|
166
|
-
min-width:
|
|
167
|
-
min-height:
|
|
166
|
+
min-width: 16px;
|
|
167
|
+
min-height: 16px;
|
|
168
168
|
background-color: #FFF;
|
|
169
169
|
border-radius: 50%;
|
|
170
170
|
}
|
|
@@ -260,7 +260,7 @@ export default {
|
|
|
260
260
|
cursor: pointer;
|
|
261
261
|
}
|
|
262
262
|
.delete-file > svg {
|
|
263
|
-
font-size:
|
|
263
|
+
font-size: 16px;
|
|
264
264
|
color: #E74C3C;
|
|
265
265
|
}
|
|
266
266
|
</style>
|
|
@@ -71,10 +71,10 @@ export default {
|
|
|
71
71
|
font-weight: 500;
|
|
72
72
|
}
|
|
73
73
|
.text-footer-invalid-format h4 {
|
|
74
|
-
font-size: .
|
|
74
|
+
font-size: 14.4px;
|
|
75
75
|
}
|
|
76
76
|
.text-footer-preview-title {
|
|
77
|
-
font-size:
|
|
77
|
+
font-size: 16px;
|
|
78
78
|
padding: 10px 0 0 10px;
|
|
79
79
|
white-space: nowrap;
|
|
80
80
|
overflow: hidden;
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
<div
|
|
57
57
|
v-if="
|
|
58
58
|
buttons.hasFiles ||
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
59
|
+
buttons.hasAudio ||
|
|
60
|
+
buttons.hasExpand ||
|
|
61
|
+
formattedMessageSettings.hasStandardMessages ||
|
|
62
|
+
buttons.hasScreenShare ||
|
|
63
|
+
buttons.hasDownloadAll
|
|
64
64
|
"
|
|
65
65
|
class="text-footer-actions"
|
|
66
66
|
:class="{ 'outside-buttons': cssStyle.outsideButtons && !audioFile }"
|
|
@@ -328,10 +328,7 @@ export default {
|
|
|
328
328
|
this.$toasted.global.defaultInfo({
|
|
329
329
|
msg: this.dictionary.msg_erro_sem_msg_formatada,
|
|
330
330
|
});
|
|
331
|
-
} else if (
|
|
332
|
-
typeof event.data === "string" &&
|
|
333
|
-
this.showStandardMessages
|
|
334
|
-
) {
|
|
331
|
+
} else if (typeof event.data === "string" && this.showStandardMessages) {
|
|
335
332
|
this.message = event.data;
|
|
336
333
|
this.focusTextarea();
|
|
337
334
|
this.closeBlockerStandardMessage();
|
|
@@ -366,13 +363,9 @@ export default {
|
|
|
366
363
|
const cursorEnd = textarea.selectionEnd;
|
|
367
364
|
if (cursorEnd == textarea.value.length) {
|
|
368
365
|
this.message += emoji.finalEmoji;
|
|
369
|
-
textarea.setSelectionRange(
|
|
370
|
-
textarea.value.length,
|
|
371
|
-
textarea.value.length
|
|
372
|
-
);
|
|
366
|
+
textarea.setSelectionRange(textarea.value.length, textarea.value.length);
|
|
373
367
|
} else {
|
|
374
|
-
const initValue =
|
|
375
|
-
textarea.value.slice(0, cursorStart) + emoji.finalEmoji;
|
|
368
|
+
const initValue = textarea.value.slice(0, cursorStart) + emoji.finalEmoji;
|
|
376
369
|
const endValue = textarea.value.slice(cursorEnd);
|
|
377
370
|
this.message = initValue + endValue;
|
|
378
371
|
textarea.setSelectionRange(initValue.length, initValue.length);
|
|
@@ -395,11 +388,7 @@ export default {
|
|
|
395
388
|
}
|
|
396
389
|
}
|
|
397
390
|
|
|
398
|
-
if (
|
|
399
|
-
(!this.message || !this.message.trim()) &&
|
|
400
|
-
!this.hasAnyFile &&
|
|
401
|
-
!this.audioFile
|
|
402
|
-
)
|
|
391
|
+
if ((!this.message || !this.message.trim()) && !this.hasAnyFile && !this.audioFile)
|
|
403
392
|
return false;
|
|
404
393
|
|
|
405
394
|
if (this.textareaSettings.disabled) return false;
|
|
@@ -499,13 +488,7 @@ export default {
|
|
|
499
488
|
};
|
|
500
489
|
},
|
|
501
490
|
setFileVars(fileObj) {
|
|
502
|
-
const {
|
|
503
|
-
file,
|
|
504
|
-
imagePreview,
|
|
505
|
-
isDoc,
|
|
506
|
-
fileFormatError,
|
|
507
|
-
hasAnyFile,
|
|
508
|
-
} = fileObj;
|
|
491
|
+
const { file, imagePreview, isDoc, fileFormatError, hasAnyFile } = fileObj;
|
|
509
492
|
|
|
510
493
|
this.file = file;
|
|
511
494
|
this.imagePreview = imagePreview ? imagePreview : "";
|
|
@@ -535,21 +518,12 @@ export default {
|
|
|
535
518
|
this.audioSource = "";
|
|
536
519
|
},
|
|
537
520
|
returnFileType(file, stopAlert) {
|
|
538
|
-
if (
|
|
539
|
-
!this.fileSettings.imagesExtensions &&
|
|
540
|
-
!this.fileSettings.docsExtensions
|
|
541
|
-
)
|
|
521
|
+
if (!this.fileSettings.imagesExtensions && !this.fileSettings.docsExtensions)
|
|
542
522
|
return false;
|
|
543
|
-
const imgRegex = new RegExp(
|
|
544
|
-
"\.(" + this.fileSettings.imagesExtensions + ")",
|
|
545
|
-
"i"
|
|
546
|
-
);
|
|
523
|
+
const imgRegex = new RegExp("\.(" + this.fileSettings.imagesExtensions + ")", "i");
|
|
547
524
|
if (imgRegex.test(file.name)) return "img";
|
|
548
525
|
|
|
549
|
-
const docRegex = new RegExp(
|
|
550
|
-
"\.(" + this.fileSettings.docsExtensions + ")",
|
|
551
|
-
"i"
|
|
552
|
-
);
|
|
526
|
+
const docRegex = new RegExp("\.(" + this.fileSettings.docsExtensions + ")", "i");
|
|
553
527
|
if (docRegex.test(file.name)) return "doc";
|
|
554
528
|
|
|
555
529
|
if (!stopAlert) return false;
|
|
@@ -607,8 +581,7 @@ export default {
|
|
|
607
581
|
try {
|
|
608
582
|
e.stopPropagation();
|
|
609
583
|
e.preventDefault();
|
|
610
|
-
if (!this.buttons.hasFiles || this.fileSettings.handleFileClick)
|
|
611
|
-
return false;
|
|
584
|
+
if (!this.buttons.hasFiles || this.fileSettings.handleFileClick) return false;
|
|
612
585
|
const files = e.dataTransfer.files.length ? e.dataTransfer.files : "";
|
|
613
586
|
this.filesHandler(files);
|
|
614
587
|
} catch (e) {
|
|
@@ -713,7 +686,7 @@ ul {
|
|
|
713
686
|
height: 80px;
|
|
714
687
|
}
|
|
715
688
|
.text-footer-container.bigger .text-footer > textarea {
|
|
716
|
-
font-size:
|
|
689
|
+
font-size: 14px;
|
|
717
690
|
height: 75px;
|
|
718
691
|
max-height: 75px;
|
|
719
692
|
min-height: 75px;
|
|
@@ -725,7 +698,7 @@ ul {
|
|
|
725
698
|
resize: none;
|
|
726
699
|
min-height: 30px;
|
|
727
700
|
max-height: 60px;
|
|
728
|
-
font-size:
|
|
701
|
+
font-size: 14px;
|
|
729
702
|
font-family: inherit;
|
|
730
703
|
background: inherit;
|
|
731
704
|
}
|
|
@@ -733,7 +706,7 @@ ul {
|
|
|
733
706
|
outline: unset;
|
|
734
707
|
}
|
|
735
708
|
.text-footer-container textarea::placeholder {
|
|
736
|
-
font-size:
|
|
709
|
+
font-size: 12px;
|
|
737
710
|
}
|
|
738
711
|
.text-footer-container .text-footer-audio {
|
|
739
712
|
flex: 1;
|
|
@@ -754,7 +727,7 @@ ul {
|
|
|
754
727
|
color: #e74c3c;
|
|
755
728
|
transition: background 300ms;
|
|
756
729
|
border-radius: 50%;
|
|
757
|
-
font-size:
|
|
730
|
+
font-size: 16px;
|
|
758
731
|
padding: 10px;
|
|
759
732
|
cursor: pointer;
|
|
760
733
|
margin: 0 5px;
|
|
@@ -765,7 +738,7 @@ ul {
|
|
|
765
738
|
background-color: rgba(208, 0, 0, 0.2);
|
|
766
739
|
}
|
|
767
740
|
.text-footer-container .max-characters {
|
|
768
|
-
font-size:
|
|
741
|
+
font-size: 9.2px;
|
|
769
742
|
z-index: 1;
|
|
770
743
|
color: #444;
|
|
771
744
|
position: relative;
|
|
@@ -795,34 +768,26 @@ ul {
|
|
|
795
768
|
border-radius: 50%;
|
|
796
769
|
transition: background 300ms;
|
|
797
770
|
padding: 10px;
|
|
798
|
-
font-size:
|
|
771
|
+
font-size: 16px;
|
|
799
772
|
width: 36px;
|
|
800
773
|
height: 36px;
|
|
801
774
|
cursor: pointer;
|
|
802
775
|
margin-right: 2.5px;
|
|
803
776
|
}
|
|
804
|
-
.text-footer-container
|
|
805
|
-
.text-footer-actions
|
|
806
|
-
.text-footer-actions--btn:last-child {
|
|
777
|
+
.text-footer-container .text-footer-actions .text-footer-actions--btn:last-child {
|
|
807
778
|
margin-right: unset;
|
|
808
779
|
}
|
|
809
780
|
.text-footer-container .text-footer-actions .text-footer-actions--btn:hover {
|
|
810
781
|
background-color: rgba(0, 0, 0, 0.1);
|
|
811
782
|
}
|
|
812
|
-
.text-footer-container
|
|
813
|
-
.text-footer-actions
|
|
814
|
-
.text-footer-actions--btn.files-activated {
|
|
783
|
+
.text-footer-container .text-footer-actions .text-footer-actions--btn.files-activated {
|
|
815
784
|
background-color: rgba(0, 0, 0, 0.1);
|
|
816
785
|
}
|
|
817
|
-
.text-footer-container
|
|
818
|
-
.text-footer-actions
|
|
819
|
-
.text-footer-actions--btn.audio-activated {
|
|
786
|
+
.text-footer-container .text-footer-actions .text-footer-actions--btn.audio-activated {
|
|
820
787
|
background-color: rgba(208, 0, 0, 0.7);
|
|
821
788
|
color: #fff;
|
|
822
789
|
}
|
|
823
|
-
.text-footer-container
|
|
824
|
-
.text-footer-actions
|
|
825
|
-
.text-footer-actions--btn.left-button {
|
|
790
|
+
.text-footer-container .text-footer-actions .text-footer-actions--btn.left-button {
|
|
826
791
|
position: absolute;
|
|
827
792
|
left: 0;
|
|
828
793
|
}
|
|
@@ -896,7 +861,7 @@ ul {
|
|
|
896
861
|
.text-footer-select-03
|
|
897
862
|
.text-footer--btn-select-03
|
|
898
863
|
svg {
|
|
899
|
-
font-size:
|
|
864
|
+
font-size: 16px;
|
|
900
865
|
}
|
|
901
866
|
.text-footer-container .text-footer-files-container {
|
|
902
867
|
position: absolute;
|
|
@@ -926,7 +891,7 @@ ul {
|
|
|
926
891
|
padding: 3px;
|
|
927
892
|
width: 40px;
|
|
928
893
|
height: 40px;
|
|
929
|
-
font-size:
|
|
894
|
+
font-size: 16px;
|
|
930
895
|
color: #fff;
|
|
931
896
|
}
|
|
932
897
|
.text-footer-container .text-footer-files-container .files-btn:hover {
|
|
@@ -939,9 +904,7 @@ ul {
|
|
|
939
904
|
background-color: #9575cd;
|
|
940
905
|
margin-right: 5px;
|
|
941
906
|
}
|
|
942
|
-
.text-footer-container
|
|
943
|
-
.text-footer-files-container
|
|
944
|
-
.files-btn.images.margin-bottom {
|
|
907
|
+
.text-footer-container .text-footer-files-container .files-btn.images.margin-bottom {
|
|
945
908
|
margin-right: unset;
|
|
946
909
|
margin-bottom: 5px;
|
|
947
910
|
}
|
|
@@ -953,20 +916,14 @@ ul {
|
|
|
953
916
|
margin-left: 5px;
|
|
954
917
|
}
|
|
955
918
|
.text-footer-container .text-footer-files-container .files-btn.both {
|
|
956
|
-
font-size:
|
|
919
|
+
font-size: 15.2px;
|
|
957
920
|
background-color: rgb(85, 85, 236);
|
|
958
921
|
flex-direction: column;
|
|
959
922
|
}
|
|
960
|
-
.text-footer-container
|
|
961
|
-
.text-footer-files-container
|
|
962
|
-
.files-btn.both
|
|
963
|
-
svg:nth-child(1) {
|
|
923
|
+
.text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(1) {
|
|
964
924
|
transform: translateX(5px);
|
|
965
925
|
}
|
|
966
|
-
.text-footer-container
|
|
967
|
-
.text-footer-files-container
|
|
968
|
-
.files-btn.both
|
|
969
|
-
svg:nth-child(2) {
|
|
926
|
+
.text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(2) {
|
|
970
927
|
transform: translateX(-5px);
|
|
971
928
|
}
|
|
972
929
|
|
|
@@ -992,9 +949,7 @@ ul {
|
|
|
992
949
|
width: 100%;
|
|
993
950
|
height: 200px;
|
|
994
951
|
}
|
|
995
|
-
.text-footer-container
|
|
996
|
-
.text-footer-preview-container.isImg
|
|
997
|
-
.text-footer-image-preview {
|
|
952
|
+
.text-footer-container .text-footer-preview-container.isImg .text-footer-image-preview {
|
|
998
953
|
height: 170px;
|
|
999
954
|
}
|
|
1000
955
|
.text-footer-container .text-footer-preview-container.isError {
|
|
@@ -1012,7 +967,7 @@ ul {
|
|
|
1012
967
|
margin-top: 12px;
|
|
1013
968
|
}
|
|
1014
969
|
.text-footer-container .text-footer-alt .text-footer-sem-24h {
|
|
1015
|
-
font-size:
|
|
970
|
+
font-size: 12.8px;
|
|
1016
971
|
text-align: right;
|
|
1017
972
|
font-weight: 600;
|
|
1018
973
|
letter-spacing: -0.5px;
|
|
@@ -1023,7 +978,7 @@ ul {
|
|
|
1023
978
|
}
|
|
1024
979
|
.text-footer-container .text-footer-alt .sem-templates {
|
|
1025
980
|
margin-top: 10px;
|
|
1026
|
-
font-size:
|
|
981
|
+
font-size: 12.8px;
|
|
1027
982
|
text-align: right;
|
|
1028
983
|
font-weight: 600;
|
|
1029
984
|
letter-spacing: -0.5px;
|
|
@@ -1057,7 +1012,7 @@ ul {
|
|
|
1057
1012
|
}
|
|
1058
1013
|
|
|
1059
1014
|
.vs__dropdown-menu {
|
|
1060
|
-
font-size:
|
|
1015
|
+
font-size: 13.6px !important;
|
|
1061
1016
|
}
|
|
1062
1017
|
|
|
1063
1018
|
.emoji-mart-anchor,
|
|
@@ -12,37 +12,24 @@
|
|
|
12
12
|
<source :src="docURL" :type="fileType" />
|
|
13
13
|
Sem suporte para o elemento audio
|
|
14
14
|
</audio>
|
|
15
|
-
<audio-speed-control
|
|
16
|
-
@change-speed="changeAudioSpeed"
|
|
17
|
-
></audio-speed-control>
|
|
15
|
+
<audio-speed-control @change-speed="changeAudioSpeed"></audio-speed-control>
|
|
18
16
|
</div>
|
|
19
17
|
|
|
20
18
|
<video v-else-if="video" controls="controls">
|
|
21
19
|
<source :src="docURL" :type="fileType" />
|
|
22
20
|
Sem suporte para o elemento video
|
|
23
21
|
</video>
|
|
24
|
-
<span
|
|
25
|
-
v-else-if="docURL"
|
|
26
|
-
@click="openWindowFromURL(docURL)"
|
|
27
|
-
class="default-doc"
|
|
28
|
-
>
|
|
22
|
+
<span v-else-if="docURL" @click="openWindowFromURL(docURL)" class="default-doc">
|
|
29
23
|
<fa-icon :class="[iconClass]" :icon="icon" />
|
|
30
24
|
<p v-text="filename" :title="filename"></p>
|
|
31
25
|
</span>
|
|
32
26
|
<span v-else class="default-doc">
|
|
33
|
-
<fa-icon
|
|
34
|
-
:class="[iconClass ? iconClass : '']"
|
|
35
|
-
:icon="['fas', 'file-alt']"
|
|
36
|
-
/>
|
|
27
|
+
<fa-icon :class="[iconClass ? iconClass : '']" :icon="['fas', 'file-alt']" />
|
|
37
28
|
<p v-text="filename" :title="filename"></p>
|
|
38
29
|
</span>
|
|
39
30
|
<!-- Acoes -->
|
|
40
31
|
<div v-if="showControlFiles" class="file-actions">
|
|
41
|
-
<span
|
|
42
|
-
v-if="imageURL"
|
|
43
|
-
class="file-action-button"
|
|
44
|
-
@click="showImage(imageURL)"
|
|
45
|
-
>
|
|
32
|
+
<span v-if="imageURL" class="file-action-button" @click="showImage(imageURL)">
|
|
46
33
|
<fa-icon
|
|
47
34
|
:icon="['fas', 'search-plus']"
|
|
48
35
|
v-tippy
|
|
@@ -87,9 +74,7 @@
|
|
|
87
74
|
|
|
88
75
|
<div class="tippy-confirmation">
|
|
89
76
|
<p>Deseja fazer download de todos anexos da tela?</p>
|
|
90
|
-
<button class="cancel box-shadow" @click="closeTippy">
|
|
91
|
-
Cancelar
|
|
92
|
-
</button>
|
|
77
|
+
<button class="cancel box-shadow" @click="closeTippy">Cancelar</button>
|
|
93
78
|
<button
|
|
94
79
|
class="confirm box-shadow"
|
|
95
80
|
@click="downloadAllFilesHandler(referenceSelector)"
|
|
@@ -118,8 +103,8 @@
|
|
|
118
103
|
0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
119
104
|
-moz-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
120
105
|
0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
121
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
122
|
-
0px
|
|
106
|
+
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
107
|
+
0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
123
108
|
}
|
|
124
109
|
|
|
125
110
|
.tippy-confirmation p {
|
|
@@ -132,7 +117,7 @@
|
|
|
132
117
|
border-radius: 3px;
|
|
133
118
|
padding: 5px 8px;
|
|
134
119
|
cursor: pointer;
|
|
135
|
-
font-size:
|
|
120
|
+
font-size: 12px;
|
|
136
121
|
}
|
|
137
122
|
|
|
138
123
|
.tippy-confirmation button.cancel {
|
|
@@ -255,7 +240,7 @@ export default {
|
|
|
255
240
|
}
|
|
256
241
|
|
|
257
242
|
.default-doc svg {
|
|
258
|
-
font-size:
|
|
243
|
+
font-size: 19.2px;
|
|
259
244
|
margin-right: 5px;
|
|
260
245
|
}
|
|
261
246
|
|
|
@@ -351,25 +336,24 @@ export default {
|
|
|
351
336
|
.anexo-container .arquivo-erro {
|
|
352
337
|
margin: 0;
|
|
353
338
|
margin-left: 15px;
|
|
354
|
-
font-size:
|
|
339
|
+
font-size: 14.4px;
|
|
355
340
|
}
|
|
356
341
|
|
|
357
342
|
.anexo-container svg {
|
|
358
|
-
font-size:
|
|
343
|
+
font-size: 32px;
|
|
359
344
|
}
|
|
360
345
|
|
|
361
346
|
.anexo-mensagem audio .divAudioPai {
|
|
362
347
|
outline: none;
|
|
363
348
|
width: 100%;
|
|
364
349
|
margin-bottom: 5px;
|
|
365
|
-
|
|
366
350
|
}
|
|
367
351
|
.audioStyle {
|
|
368
352
|
width: 370px;
|
|
369
353
|
}
|
|
370
354
|
|
|
371
355
|
.divAudioPai {
|
|
372
|
-
display: flex;
|
|
356
|
+
display: flex;
|
|
373
357
|
/* justify-content: space-between; */
|
|
374
358
|
background-color: #f1f3f4;
|
|
375
359
|
border-radius: 50%;
|
|
@@ -436,10 +420,10 @@ display: flex;
|
|
|
436
420
|
|
|
437
421
|
.alert {
|
|
438
422
|
position: relative;
|
|
439
|
-
padding:
|
|
423
|
+
padding: 10.4px 19.2px;
|
|
440
424
|
margin: 5px 0;
|
|
441
425
|
border: 1px solid transparent;
|
|
442
|
-
border-radius:
|
|
426
|
+
border-radius: 4px;
|
|
443
427
|
text-align: center;
|
|
444
428
|
}
|
|
445
429
|
|
|
@@ -411,7 +411,7 @@ export default {
|
|
|
411
411
|
padding: 10px 5px;
|
|
412
412
|
}
|
|
413
413
|
.card-header svg {
|
|
414
|
-
font-size:
|
|
414
|
+
font-size: 16px;
|
|
415
415
|
}
|
|
416
416
|
|
|
417
417
|
.card-canal {
|
|
@@ -489,7 +489,7 @@ export default {
|
|
|
489
489
|
}
|
|
490
490
|
|
|
491
491
|
.card-chip {
|
|
492
|
-
font-size:
|
|
492
|
+
font-size: 12.8px;
|
|
493
493
|
width: fit-content;
|
|
494
494
|
border-radius: 15px;
|
|
495
495
|
transition: all 150ms ease-in-out;
|
|
@@ -656,7 +656,7 @@ export default {
|
|
|
656
656
|
|
|
657
657
|
.mensagem-reply {
|
|
658
658
|
padding: 5px 10px;
|
|
659
|
-
font-size:
|
|
659
|
+
font-size: 12px;
|
|
660
660
|
color: #666;
|
|
661
661
|
transition: background-color 150ms ease-in-out;
|
|
662
662
|
border-radius: 5px;
|
|
@@ -706,7 +706,7 @@ export default {
|
|
|
706
706
|
position: relative;
|
|
707
707
|
max-width: 80%;
|
|
708
708
|
margin-bottom: 10px;
|
|
709
|
-
font-size:
|
|
709
|
+
font-size: 12px;
|
|
710
710
|
word-break: break-word;
|
|
711
711
|
|
|
712
712
|
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
@@ -754,10 +754,10 @@ export default {
|
|
|
754
754
|
position: absolute;
|
|
755
755
|
right: 53px;
|
|
756
756
|
bottom: 5px;
|
|
757
|
-
font-size:
|
|
757
|
+
font-size: 9.6px;
|
|
758
758
|
color: #67a332;
|
|
759
|
-
width:
|
|
760
|
-
height:
|
|
759
|
+
width: 14.4px;
|
|
760
|
+
height: 14.4px;
|
|
761
761
|
display: flex;
|
|
762
762
|
justify-content: center;
|
|
763
763
|
align-items: center;
|
|
@@ -777,7 +777,7 @@ export default {
|
|
|
777
777
|
position: absolute;
|
|
778
778
|
right: 10px;
|
|
779
779
|
bottom: 2px;
|
|
780
|
-
font-size:
|
|
780
|
+
font-size: 11.2px;
|
|
781
781
|
}
|
|
782
782
|
.check.visualizado,
|
|
783
783
|
.check.visualizado svg {
|
|
@@ -804,7 +804,7 @@ export default {
|
|
|
804
804
|
position: absolute;
|
|
805
805
|
right: 30px;
|
|
806
806
|
bottom: 2px;
|
|
807
|
-
font-size:
|
|
807
|
+
font-size: 6.4px;
|
|
808
808
|
width: 11.2px;
|
|
809
809
|
}
|
|
810
810
|
.default-stick-size {
|
|
@@ -813,7 +813,7 @@ export default {
|
|
|
813
813
|
}
|
|
814
814
|
.horario-envio {
|
|
815
815
|
margin-right: 15px;
|
|
816
|
-
font-size:
|
|
816
|
+
font-size: 11.2px;
|
|
817
817
|
position: absolute;
|
|
818
818
|
left: 10px;
|
|
819
819
|
bottom: 2px;
|
|
@@ -821,7 +821,7 @@ export default {
|
|
|
821
821
|
|
|
822
822
|
.autor-mensagem {
|
|
823
823
|
position: absolute;
|
|
824
|
-
font-size:
|
|
824
|
+
font-size: 9.6px;
|
|
825
825
|
white-space: nowrap;
|
|
826
826
|
text-overflow: ellipsis;
|
|
827
827
|
overflow: hidden;
|
|
@@ -835,7 +835,7 @@ export default {
|
|
|
835
835
|
opacity: 0;
|
|
836
836
|
transition: opacity 150ms ease-in-out;
|
|
837
837
|
position: absolute;
|
|
838
|
-
font-size:
|
|
838
|
+
font-size: 11.2px;
|
|
839
839
|
top: 3px;
|
|
840
840
|
display: flex;
|
|
841
841
|
gap: 5px;
|
|
@@ -216,7 +216,7 @@ export default {
|
|
|
216
216
|
display: flex;
|
|
217
217
|
color: #333;
|
|
218
218
|
font-weight: 700;
|
|
219
|
-
font-size: .
|
|
219
|
+
font-size: 14.4px;
|
|
220
220
|
}
|
|
221
221
|
.interatividade-form-body{
|
|
222
222
|
padding: 0px 10px;
|
|
@@ -292,7 +292,7 @@ export default {
|
|
|
292
292
|
margin-left: 3px;
|
|
293
293
|
}
|
|
294
294
|
.fs-2 {
|
|
295
|
-
font-size:
|
|
295
|
+
font-size: 32px;
|
|
296
296
|
}
|
|
297
297
|
.flex-wrap {
|
|
298
298
|
flex-wrap: wrap;
|
|
@@ -365,7 +365,7 @@ export default {
|
|
|
365
365
|
align-items: center;
|
|
366
366
|
}
|
|
367
367
|
.fs-_85 {
|
|
368
|
-
font-size: .
|
|
368
|
+
font-size: 13.6px;
|
|
369
369
|
}
|
|
370
370
|
.text-ellipsis {
|
|
371
371
|
text-overflow: ellipsis;
|