2024-06-06 19:29:36 +08:00
|
|
|
.messageItem {
|
|
|
|
|
padding: 24px 0;
|
|
|
|
|
.messageItemSection {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.messageItemSectionLeft {
|
2024-07-04 19:18:02 +08:00
|
|
|
width: 80%;
|
2024-06-06 19:29:36 +08:00
|
|
|
}
|
|
|
|
|
.messageItemContent {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
gap: 20px;
|
2026-02-05 13:28:55 +05:30
|
|
|
width: 100%;
|
|
|
|
|
min-width: 0;
|
2024-06-06 19:29:36 +08:00
|
|
|
}
|
|
|
|
|
.messageItemContentReverse {
|
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
}
|
2025-02-13 15:59:42 +08:00
|
|
|
|
2024-07-17 14:49:11 +08:00
|
|
|
.messageTextBase() {
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
& > p {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.messageText {
|
|
|
|
|
.chunkText();
|
|
|
|
|
.messageTextBase();
|
2025-08-19 09:40:01 +08:00
|
|
|
// background-color: #e6f4ff;
|
2025-02-07 09:35:49 +07:00
|
|
|
word-break: break-word;
|
2024-07-17 14:49:11 +08:00
|
|
|
}
|
2024-12-10 10:42:04 +07:00
|
|
|
.messageTextDark {
|
|
|
|
|
.chunkText();
|
|
|
|
|
.messageTextBase();
|
2025-02-07 09:35:49 +07:00
|
|
|
word-break: break-word;
|
2025-02-13 15:59:42 +08:00
|
|
|
:global(section.think) {
|
|
|
|
|
color: rgb(166, 166, 166);
|
|
|
|
|
border-left-color: rgb(78, 78, 86);
|
|
|
|
|
}
|
2024-12-10 10:42:04 +07:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 14:49:11 +08:00
|
|
|
.messageUserText {
|
|
|
|
|
.chunkText();
|
|
|
|
|
.messageTextBase();
|
2024-12-10 10:42:04 +07:00
|
|
|
background-color: rgba(255, 255, 255, 0.3);
|
2025-02-07 09:35:49 +07:00
|
|
|
word-break: break-word;
|
2024-07-17 14:49:11 +08:00
|
|
|
text-align: justify;
|
|
|
|
|
}
|
2024-06-06 19:29:36 +08:00
|
|
|
.messageEmpty {
|
|
|
|
|
width: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.thumbnailImg {
|
|
|
|
|
max-width: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.messageItemLeft {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.messageItemRight {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|