@webinex/chatify 1.0.2-rc3 → 1.0.3-rc3

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.
Files changed (40) hide show
  1. package/dist/css/chatify.css +249 -143
  2. package/dist/esm/index.js +1 -1
  3. package/dist/esm/index.js.map +1 -1
  4. package/dist/esm/types/core/action.d.ts +1 -0
  5. package/dist/esm/types/core/useAddChatMutation.d.ts +1 -1
  6. package/dist/esm/types/ui/ChatList/ChatListItemLastMessageSentAt.d.ts +3 -0
  7. package/dist/esm/types/ui/ChatList/index.d.ts +1 -0
  8. package/dist/esm/types/ui/Chatify.d.ts +2 -1
  9. package/dist/esm/types/ui/Icon.d.ts +6 -5
  10. package/dist/esm/types/ui/localizer.d.ts +2 -0
  11. package/dist/index.d.ts +13 -6
  12. package/package.json +1 -1
  13. package/src/core/action.tsx +11 -1
  14. package/src/core/useAddChatMutation.tsx +9 -3
  15. package/src/core/useGetChatQuery.tsx +1 -1
  16. package/src/styles/aside.scss +59 -21
  17. package/src/styles/chat.scss +81 -92
  18. package/src/styles/index.scss +34 -5
  19. package/src/styles/input.scss +72 -0
  20. package/src/styles/variables.scss +4 -4
  21. package/src/ui/AddChatButton.tsx +5 -3
  22. package/src/ui/ChatList/ChatListItemLastMessage.tsx +2 -0
  23. package/src/ui/ChatList/ChatListItemLastMessageSentAt.tsx +22 -0
  24. package/src/ui/ChatList/index.ts +1 -0
  25. package/src/ui/ChatPanel/ChatHeader.tsx +3 -5
  26. package/src/ui/ChatPanel/ChatHeaderMembers.tsx +6 -4
  27. package/src/ui/ChatPanel/ChatHeaderName.tsx +17 -15
  28. package/src/ui/ChatPanel/ChatMembersButton.tsx +1 -1
  29. package/src/ui/ChatPanel/ChatMembersPanel.tsx +8 -4
  30. package/src/ui/Chatify.tsx +11 -5
  31. package/src/ui/CreateChatPanel/CreateChatPanel.tsx +20 -4
  32. package/src/ui/Icon.tsx +7 -5
  33. package/src/ui/InputBox/InputTextBox.tsx +2 -1
  34. package/src/ui/Layout/Aside.tsx +2 -0
  35. package/src/ui/Layout/Header.tsx +1 -6
  36. package/src/ui/Message/MessageContent.tsx +0 -2
  37. package/src/ui/Message/MessageInfoBox.tsx +1 -0
  38. package/src/ui/Message/MessageRow.tsx +5 -1
  39. package/src/ui/localizer.tsx +4 -0
  40. package/src/styles/settings.scss +0 -5
@@ -12,15 +12,32 @@
12
12
  }
13
13
  .wxchtf-aside {
14
14
  flex: none;
15
- width: 300px;
16
- border-right: 1px solid #ddd;
17
15
  display: flex;
18
16
  flex-flow: column nowrap;
17
+ background: #ffffff;
18
+ border-top-left-radius: 24px;
19
+ border-bottom-left-radius: 24px;
20
+ padding-top: 15px;
21
+ width: 320px;
22
+ position: relative;
23
+ overflow: hidden;
24
+ }
25
+ .wxchtf-aside::before {
26
+ position: absolute;
27
+ content: "";
28
+ left: 0;
29
+ bottom: 0;
30
+ width: calc(100% - 10px);
31
+ height: 20px;
32
+ z-index: 1;
33
+ background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
19
34
  }
20
35
  .wxchtf-aside .wxchtf-chat-list.ant-menu {
21
36
  flex: 1 1 auto;
22
37
  height: 100px;
23
38
  overflow-y: auto;
39
+ border-inline-end: none;
40
+ padding-bottom: 2rem;
24
41
  }
25
42
  .wxchtf-aside .wxchtf-chat-list.ant-menu::-webkit-scrollbar {
26
43
  width: 8px;
@@ -32,47 +49,58 @@
32
49
  .wxchtf-aside .wxchtf-chat-list.ant-menu::-webkit-scrollbar-thumb {
33
50
  background-color: #dfdfdf;
34
51
  }
52
+ .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item + .ant-menu-item {
53
+ margin-top: 8px;
54
+ }
35
55
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item {
36
56
  padding: 0;
37
57
  height: unset;
38
58
  margin: 0;
39
- width: 100%;
40
- border-radius: 0;
59
+ margin-left: 8px;
60
+ width: calc(100% - 16px);
61
+ border-radius: 8px;
41
62
  line-height: 1.5;
42
- border-top: 1px solid #ddd;
43
63
  }
44
- .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item:first-child {
45
- border-top: none;
64
+ .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item.ant-menu-item-selected {
65
+ background-color: #e4f7f7;
46
66
  }
47
67
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item.ant-menu-item-selected .wxchtf-chat-name {
48
68
  font-weight: 600;
49
69
  }
50
70
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat {
51
- padding: 0.5rem 1rem;
71
+ padding-inline: 10px;
72
+ padding-block: 8.5px;
52
73
  position: relative;
53
74
  }
54
75
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat.--unread .wxchtf-chat-last {
55
76
  font-weight: bold;
56
77
  }
57
- .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat .wxchtf-chat-name {
78
+ .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat.--unread .wxchtf-chat-name {
58
79
  font-weight: bold;
80
+ max-width: 100%;
81
+ }
82
+ .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat .wxchtf-chat-name {
59
83
  display: inline-block;
84
+ font-weight: 500;
60
85
  }
61
86
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat .wxchtf-unread-count {
62
- display: inline-block;
63
- padding: 0.2rem;
64
- min-width: 1rem;
65
- height: 1.2rem;
66
- line-height: 0.7rem;
67
- margin-left: 0.5rem;
87
+ background-color: #ff4d4f;
68
88
  border-radius: 50%;
89
+ width: 16px;
90
+ height: 16px;
91
+ padding: 0;
92
+ font-size: 10px;
93
+ position: absolute;
94
+ top: 32px;
95
+ right: 13px;
96
+ color: white;
97
+ line-height: 16px;
98
+ font-weight: bold;
69
99
  text-align: center;
70
- font-size: 0.7rem;
71
- background: #ffa726;
72
100
  }
73
101
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat .wxchtf-chat-last {
102
+ color: rgba(14, 15, 23, 0.6);
74
103
  font-style: italic;
75
- opacity: 0.75;
76
104
  overflow: hidden;
77
105
  text-overflow: ellipsis;
78
106
  white-space: nowrap;
@@ -96,9 +124,11 @@
96
124
  .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat .wxchtf-chat-last .wxchtf-chat-last-message {
97
125
  display: inline;
98
126
  }
99
-
100
- .wxchtf-chatify .wxchtf-chat-settings {
101
- padding-inline: 1rem;
127
+ .wxchtf-aside .wxchtf-chat-list.ant-menu .ant-menu-item .wxchtf-chat .wxchtf-chat-last .wxchtf-chat-last-sent-at {
128
+ position: absolute;
129
+ top: 7px;
130
+ right: 13px;
131
+ font-size: 0.8em;
102
132
  }
103
133
 
104
134
  .wxchtf-chatify .wxchtf-chat-panel {
@@ -112,24 +142,33 @@
112
142
  flex-flow: column nowrap;
113
143
  }
114
144
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-header {
115
- border-bottom: 1px solid #ddd;
116
- padding: 0.5rem 1rem;
145
+ padding: 15px 20px;
146
+ line-height: 24px;
147
+ z-index: 1;
148
+ box-shadow: 0px 2px 4px 0px rgba(88, 99, 107, 0.04), 0px 1px 9px -1px rgba(88, 99, 107, 0.04), 0px 1px 2px 0px rgba(88, 99, 107, 0.06);
117
149
  }
118
150
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-header .wxchtf-chat-name {
119
151
  font-weight: 600;
152
+ font-size: 16px;
120
153
  flex: none;
121
154
  }
122
155
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-header .wxchtf-chat-name.--editable {
123
156
  cursor: pointer;
124
157
  }
158
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-header .wxchtf-chat-members {
159
+ display: inline-flex;
160
+ gap: 6px;
161
+ }
125
162
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body {
126
163
  flex: 1 1 auto;
127
164
  height: 100px;
128
165
  overflow-y: auto;
129
- background: #f5f5f5;
166
+ background: white;
130
167
  padding: 2rem 1rem;
168
+ padding-right: 1rem;
131
169
  display: flex;
132
170
  flex-flow: column-reverse nowrap;
171
+ align-items: center;
133
172
  }
134
173
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body::-webkit-scrollbar {
135
174
  width: 8px;
@@ -141,17 +180,31 @@
141
180
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body::-webkit-scrollbar-thumb {
142
181
  background-color: #dfdfdf;
143
182
  }
144
- @media only screen and (min-width: 1120px) {
145
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body {
146
- padding-right: 30%;
147
- }
183
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message,
184
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message,
185
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message,
186
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message-skeleton {
187
+ margin-bottom: 8px;
188
+ max-width: 1110px;
189
+ width: 100%;
190
+ }
191
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message:first-child,
192
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message:first-child,
193
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message:first-child,
194
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message-skeleton:first-child {
195
+ margin-bottom: 0;
148
196
  }
149
197
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message,
150
198
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message {
151
199
  display: flex;
152
200
  flex-flow: row nowrap;
153
- width: 100%;
154
- align-items: flex-end;
201
+ align-items: flex-start;
202
+ }
203
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message:not(.--my) .wxchtf-message-content,
204
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message:not(.--my) .wxchtf-sending-message-content,
205
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message:not(.--my) .wxchtf-message-content,
206
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message:not(.--my) .wxchtf-sending-message-content {
207
+ border-bottom-left-radius: 0;
155
208
  }
156
209
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message.--my,
157
210
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message.--my {
@@ -160,17 +213,19 @@
160
213
  }
161
214
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message.--my .wxchtf-message-author,
162
215
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message.--my .wxchtf-message-author {
163
- margin-right: 0;
164
- margin-left: 15px;
216
+ display: none;
165
217
  }
166
218
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message.--my .wxchtf-message-content,
167
219
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message.--my .wxchtf-sending-message-content,
168
220
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message.--my .wxchtf-message-content,
169
221
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message.--my .wxchtf-sending-message-content {
170
222
  direction: ltr;
171
- border-bottom-left-radius: 10px;
172
223
  border-bottom-right-radius: 0;
173
- background-color: #b9f6ca;
224
+ background-color: #e4f7f7;
225
+ }
226
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message.--my .wxchtf-message-info-box,
227
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message.--my .wxchtf-message-info-box {
228
+ text-align: right;
174
229
  }
175
230
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-author,
176
231
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-author {
@@ -181,107 +236,96 @@
181
236
  width: 40px;
182
237
  height: 40px;
183
238
  line-height: 38px;
184
- box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
239
+ }
240
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box,
241
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box,
242
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box,
243
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box {
244
+ text-align: left;
245
+ margin-bottom: 3px;
246
+ }
247
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-message-author-name,
248
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-message-sent-at,
249
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-message-read-box,
250
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
251
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-message-author-name,
252
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
253
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-message-read-box,
254
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
255
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-message-author-name,
256
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-message-sent-at,
257
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-message-read-box,
258
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
259
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-message-author-name,
260
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
261
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-message-read-box,
262
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box {
263
+ display: inline-block;
264
+ font-size: 0.85em;
265
+ opacity: 0.5;
266
+ }
267
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-message-sent-at,
268
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-message-read-box,
269
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
270
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
271
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-message-read-box,
272
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
273
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-message-sent-at,
274
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-message-read-box,
275
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
276
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
277
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-message-read-box,
278
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box {
279
+ margin-left: 5px;
185
280
  }
186
281
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content,
187
282
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content,
188
283
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content,
189
284
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content {
285
+ width: fit-content;
190
286
  min-width: 300px;
191
287
  max-width: 70%;
192
- border-radius: 10px;
193
- padding: 0.75rem 1rem;
288
+ padding: 12px 19px;
194
289
  background: white;
195
- border-bottom-left-radius: 0;
196
- background-color: #e1f5fe;
197
- box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
290
+ background-color: #f5f5f5;
198
291
  display: block;
199
292
  white-space: pre-wrap;
200
293
  overflow-wrap: break-word;
294
+ border-radius: 24px;
201
295
  }
202
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-info-box,
203
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-sending-message-info-box,
204
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-info-box,
205
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box,
206
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-info-box,
207
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-sending-message-info-box,
208
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-info-box,
209
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box {
210
- text-align: right;
211
- }
212
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-message-sent-at,
213
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
214
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
215
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
216
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
217
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
218
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-message-sent-at,
219
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
220
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
221
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
222
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
223
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
224
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-message-sent-at,
225
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
226
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
227
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
228
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
229
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
230
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-message-sent-at,
231
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
232
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
233
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-message-sent-at,
234
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
235
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box {
236
- display: inline-block;
237
- font-style: italic;
238
- font-size: 0.75em;
239
- margin-top: 0.5rem;
240
- opacity: 0.5;
241
- }
242
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
243
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
244
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
245
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
246
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
247
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
248
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
249
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
250
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
251
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
252
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
253
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box,
254
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-message-read-box,
255
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-info-box .wxchtf-sending-message-sending-box,
256
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-message-read-box,
257
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-sending-message-info-box .wxchtf-sending-message-sending-box {
258
- margin-left: 5px;
296
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-message-content .wxchtf-message-text,
297
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message .wxchtf-sending-message-content .wxchtf-message-text,
298
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-message-content .wxchtf-message-text,
299
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message .wxchtf-sending-message-content .wxchtf-message-text {
300
+ line-height: 21px;
259
301
  }
260
302
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message {
261
303
  font-style: italic;
262
304
  position: relative;
263
305
  text-align: center;
306
+ color: rgba(14, 15, 23, 0.6);
264
307
  }
265
308
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message .wxchtf-text,
266
309
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message .wxchtf-timestamp {
310
+ position: relative;
311
+ z-index: 1;
312
+ padding-inline: 8px;
267
313
  display: inline-block;
268
- opacity: 0.9;
269
314
  font-size: 0.85em;
315
+ background-color: white;
270
316
  }
271
317
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message .wxchtf-timestamp {
272
- margin-left: 1rem;
273
- }
274
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message,
275
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message,
276
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message,
277
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message-skeleton {
278
- margin-bottom: 2rem;
318
+ padding-left: 10px;
279
319
  }
280
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message:first-child,
281
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-sending-message:first-child,
282
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message:first-child,
283
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message-skeleton:first-child {
284
- margin-bottom: 0;
320
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-system-message::after {
321
+ content: "";
322
+ position: absolute;
323
+ height: 1px;
324
+ width: 100%;
325
+ left: 0;
326
+ top: 50%;
327
+ z-index: 0;
328
+ background-color: rgba(0, 0, 0, 0.0588235294);
285
329
  }
286
330
  .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-chat-body .wxchtf-message-skeleton {
287
331
  display: flex;
@@ -302,74 +346,99 @@
302
346
  border-radius: 10px;
303
347
  border-bottom-left-radius: 0;
304
348
  }
305
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form {
349
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-members-panel {
350
+ min-width: 300px;
351
+ box-shadow: -4px 0px 20px -5px rgba(12, 217, 226, 0.0784313725), -2px 1px 12px rgba(0, 110, 114, 0.0588235294);
352
+ }
353
+ .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-members-panel .wxchtf-chat-members-list .wxchtf-chat-members-list-item {
354
+ padding-inline: 1rem;
355
+ border-block-end: none;
356
+ }
357
+
358
+ .wxchtf-input-form {
306
359
  flex: none;
307
360
  max-height: 300px;
308
361
  display: flex;
309
362
  flex-flow: column nowrap;
363
+ padding: 12px 20px 20px 20px;
310
364
  }
311
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box {
365
+ .wxchtf-input-form .wxchtf-input-box {
312
366
  flex: none;
313
367
  display: flex;
314
368
  flex-flow: row nowrap;
315
- padding: 1rem 0;
316
- border-top: 1px solid #ddd;
369
+ padding: 8px;
370
+ max-width: 1110px;
371
+ width: 100%;
372
+ margin: auto;
373
+ background: rgb(245, 245, 245);
374
+ border-radius: 40px;
375
+ }
376
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box,
377
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box {
378
+ align-items: center;
317
379
  }
318
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box {
380
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box button,
381
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box button {
382
+ width: unset;
383
+ }
384
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box svg,
385
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box svg {
386
+ font-size: 18px;
387
+ color: rgba(14, 15, 23, 0.25);
388
+ }
389
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box {
319
390
  flex: none;
320
391
  display: flex;
321
392
  padding: 0 1rem;
322
393
  align-items: flex-end;
323
394
  }
324
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box .ant-btn.ant-btn-icon-only .anticon {
395
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-add-files-box .ant-btn.ant-btn-icon-only .anticon {
325
396
  font-size: 1.5rem;
326
397
  }
327
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box {
398
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box {
328
399
  flex: auto;
400
+ margin-left: 16px;
401
+ margin-right: 16px;
329
402
  }
330
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea {
403
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea {
331
404
  resize: none;
332
405
  border: none;
333
406
  outline: none;
334
407
  box-shadow: none;
408
+ background: transparent;
409
+ padding-inline: 0;
410
+ font-size: 13px;
411
+ line-height: 26px;
335
412
  }
336
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea::-webkit-scrollbar {
413
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea::-webkit-scrollbar {
337
414
  width: 8px;
338
415
  height: 8px;
339
416
  }
340
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea::-webkit-scrollbar-track {
417
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea::-webkit-scrollbar-track {
341
418
  background-color: #f1f1f1;
342
419
  }
343
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea::-webkit-scrollbar-thumb {
420
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-text-input-box textarea::-webkit-scrollbar-thumb {
344
421
  background-color: #dfdfdf;
345
422
  }
346
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box {
423
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box {
347
424
  flex: none;
348
425
  display: flex;
349
426
  padding: 0 1rem;
350
427
  align-items: flex-end;
428
+ margin-left: 1rem;
351
429
  }
352
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-main .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box .ant-btn.ant-btn-icon-only .anticon {
430
+ .wxchtf-input-form .wxchtf-input-box .wxchtf-submit-btn-box .ant-btn.ant-btn-icon-only .anticon {
353
431
  font-size: 1.5rem;
354
432
  }
355
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-members-panel {
356
- min-width: 300px;
357
- border-left: 1px solid #ddd;
358
- }
359
- .wxchtf-chatify .wxchtf-chat-panel .wxchtf-chat-members-panel .wxchtf-chat-members-list .wxchtf-chat-members-list-item {
360
- padding-inline: 1rem;
361
- }
362
433
 
363
434
  .wxchtf-chatify {
364
- border: 1px solid #ddd;
365
435
  display: flex;
366
436
  flex-flow: column nowrap;
367
437
  background: white;
368
- border-radius: 4px;
438
+ border-radius: 24px;
369
439
  }
370
440
  .wxchtf-chatify .wxchtf-header {
371
441
  min-height: 2rem;
372
- border-bottom: 1px solid #ddd;
373
442
  }
374
443
  .wxchtf-chatify .wxchtf-body {
375
444
  flex: 1 0;
@@ -378,45 +447,82 @@
378
447
  }
379
448
  .wxchtf-chatify .wxchtf-footer {
380
449
  min-height: 2rem;
381
- border-top: 1px solid #ddd;
450
+ }
451
+ .wxchtf-chatify .wxchtf-add-btn-wrapper {
452
+ width: 100%;
453
+ text-align: right;
454
+ padding-inline: 0.5rem;
455
+ margin-bottom: 1rem;
456
+ }
457
+ .wxchtf-chatify .wxchtf-add-btn-wrapper .wxchtf-add-btn {
458
+ border: none;
459
+ background-color: #e4f7f7;
460
+ height: 50px;
461
+ padding: 0;
462
+ line-height: 50px;
463
+ min-width: 150px;
464
+ border-radius: 50px;
465
+ font-weight: 600;
466
+ opacity: 0.9;
467
+ box-shadow: none;
382
468
  }
383
469
 
384
470
  .wxchtf-main {
385
471
  flex: auto;
386
472
  display: flex;
387
473
  flex-flow: column nowrap;
474
+ border-top-right-radius: 24px;
475
+ border-bottom-right-radius: 24px;
476
+ box-shadow: 0px 6px 30px 0px rgba(12, 217, 226, 0.0784313725), 0px 1px 12px 0px rgba(0, 110, 114, 0.0588235294);
477
+ z-index: 2;
388
478
  }
389
- .wxchtf-main .wxchtf-create-chat {
479
+ .wxchtf-main .wxchtf-create-chat-panel {
390
480
  display: flex;
391
481
  flex-flow: column nowrap;
392
482
  justify-content: center;
393
483
  align-items: center;
394
484
  height: 100%;
485
+ position: relative;
486
+ }
487
+ .wxchtf-main .wxchtf-create-chat-panel .wxchtf-create-chat-panel-close {
488
+ position: absolute;
489
+ right: 25px;
490
+ top: 25px;
395
491
  }
396
- .wxchtf-main .wxchtf-create-chat form {
492
+ .wxchtf-main .wxchtf-create-chat-panel form {
397
493
  padding: 2rem;
398
494
  max-width: 700px;
399
495
  width: 100%;
400
496
  }
401
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list {
497
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list {
402
498
  max-height: 15rem;
403
499
  overflow-y: auto;
404
500
  }
405
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list .ant-list-item {
501
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list::-webkit-scrollbar {
502
+ width: 8px;
503
+ height: 8px;
504
+ }
505
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list::-webkit-scrollbar-track {
506
+ background-color: #f1f1f1;
507
+ }
508
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list::-webkit-scrollbar-thumb {
509
+ background-color: #dfdfdf;
510
+ }
511
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list .ant-list-item {
406
512
  padding-inline: 0.5rem;
407
513
  }
408
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list .ant-list-item.--selected {
514
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list .ant-list-item.--selected {
409
515
  background-color: #e6f4ff;
410
516
  }
411
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper {
517
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper {
412
518
  width: 100%;
413
519
  }
414
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper > span:last-child {
520
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper > span:last-child {
415
521
  flex: 1;
416
522
  }
417
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper > span:last-child .ant-list-item-meta {
523
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper > span:last-child .ant-list-item-meta {
418
524
  align-items: center;
419
525
  }
420
- .wxchtf-main .wxchtf-create-chat form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper > span:last-child .ant-list-item-meta .ant-list-item-meta-content h4 {
526
+ .wxchtf-main .wxchtf-create-chat-panel form .wxchtf-create-chat-member-input-list .ant-list-item .ant-checkbox-wrapper > span:last-child .ant-list-item-meta .ant-list-item-meta-content h4 {
421
527
  margin-bottom: 0;
422
528
  }