vue-intergrall-plugins 0.0.295 → 0.0.297
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 +10 -28
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +36 -34
- package/package.json +1 -1
- package/src/lib-components/Chat/BtnEmojis.vue +50 -44
- package/src/lib-components/Chat/Picker.vue +184 -147
- package/src/lib-components/Messages/CardMessages.vue +39 -15
- package/src/lib-components/Messages/ChatMessages.vue +31 -4
|
@@ -1000,13 +1000,36 @@ export default {
|
|
|
1000
1000
|
.emoji-message-container {
|
|
1001
1001
|
position: absolute;
|
|
1002
1002
|
top: 0;
|
|
1003
|
-
|
|
1004
|
-
|
|
1003
|
+
z-index: 1;
|
|
1004
|
+
width: 300px;
|
|
1005
|
+
height: 250px;
|
|
1006
|
+
}
|
|
1007
|
+
/* .emoji-message-container {
|
|
1008
|
+
z-index: 1;
|
|
1009
|
+
overflow: hidden;
|
|
1010
|
+
width: 300px;
|
|
1011
|
+
height: 250px;
|
|
1012
|
+
|
|
1013
|
+
>.sm-emoji-picker {
|
|
1014
|
+
position: relative;
|
|
1015
|
+
width: 300px;
|
|
1016
|
+
height: 250px;
|
|
1017
|
+
}
|
|
1005
1018
|
}
|
|
1006
1019
|
|
|
1020
|
+
.mensagem .reaction {
|
|
1021
|
+
$size: 1.8em;
|
|
1022
|
+
width: $size;
|
|
1023
|
+
height: $size;
|
|
1024
|
+
min-width: $size;
|
|
1025
|
+
min-height: $size;
|
|
1026
|
+
max-width: $size;
|
|
1027
|
+
max-height: $size;
|
|
1028
|
+
} */
|
|
1029
|
+
|
|
1007
1030
|
.emoji-message-container .sm-emoji-picker {
|
|
1008
|
-
|
|
1009
|
-
|
|
1031
|
+
width: 300px;
|
|
1032
|
+
height: 250px;
|
|
1010
1033
|
}
|
|
1011
1034
|
.emoji-message-container .sm-emoji-picker .sm-emoji-header {
|
|
1012
1035
|
overflow-x: auto;
|
|
@@ -1023,6 +1046,10 @@ export default {
|
|
|
1023
1046
|
background-color: rgba(100, 100, 100, 0.4);
|
|
1024
1047
|
padding: 5px;
|
|
1025
1048
|
font-size: 1.3em;
|
|
1049
|
+
min-width: 1.8em;
|
|
1050
|
+
min-height: 1.8em;
|
|
1051
|
+
max-width: 1.8em;
|
|
1052
|
+
max-height: 1.8em;
|
|
1026
1053
|
}
|
|
1027
1054
|
|
|
1028
1055
|
.reaction > span {
|