mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Write the thinking style in the MarkdownContent layer #4930 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
64 lines
1.1 KiB
Plaintext
64 lines
1.1 KiB
Plaintext
.messageItem {
|
|
padding: 24px 0;
|
|
.messageItemSection {
|
|
display: inline-block;
|
|
}
|
|
.messageItemSectionLeft {
|
|
width: 80%;
|
|
}
|
|
.messageItemContent {
|
|
display: inline-flex;
|
|
gap: 20px;
|
|
}
|
|
.messageItemContentReverse {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.messageTextBase() {
|
|
padding: 6px 10px;
|
|
border-radius: 8px;
|
|
& > p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
.messageText {
|
|
.chunkText();
|
|
.messageTextBase();
|
|
background-color: #e6f4ff;
|
|
word-break: break-word;
|
|
}
|
|
.messageTextDark {
|
|
.chunkText();
|
|
.messageTextBase();
|
|
background-color: #1668dc;
|
|
word-break: break-word;
|
|
:global(section.think) {
|
|
color: rgb(166, 166, 166);
|
|
border-left-color: rgb(78, 78, 86);
|
|
}
|
|
}
|
|
|
|
.messageUserText {
|
|
.chunkText();
|
|
.messageTextBase();
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
word-break: break-word;
|
|
text-align: justify;
|
|
}
|
|
.messageEmpty {
|
|
width: 300px;
|
|
}
|
|
|
|
.thumbnailImg {
|
|
max-width: 20px;
|
|
}
|
|
}
|
|
|
|
.messageItemLeft {
|
|
text-align: left;
|
|
}
|
|
|
|
.messageItemRight {
|
|
text-align: right;
|
|
}
|