2025-02-18 19:34:54 +08:00
|
|
|
.markdownContentWrapper {
|
|
|
|
|
:global(section.think) {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
color: #8b8b8b;
|
|
|
|
|
border-left: 2px solid #d5d3d3;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2025-02-20 12:19:53 +08:00
|
|
|
:global(blockquote) {
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
border-left: 4px solid #ccc;
|
|
|
|
|
}
|
2025-02-18 19:34:54 +08:00
|
|
|
}
|
|
|
|
|
|
2024-04-18 19:27:53 +08:00
|
|
|
.referencePopoverWrapper {
|
|
|
|
|
max-width: 50vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.referenceChunkImage {
|
2025-05-20 10:40:53 +08:00
|
|
|
width: 10vw;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.referenceInnerChunkImage {
|
2025-05-13 19:30:17 +08:00
|
|
|
display: block;
|
2024-04-18 19:27:53 +08:00
|
|
|
object-fit: contain;
|
2025-05-13 19:30:17 +08:00
|
|
|
max-width: 100%;
|
2025-12-19 19:13:18 +08:00
|
|
|
max-height: 10vh;
|
2024-04-18 19:27:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.referenceImagePreview {
|
|
|
|
|
max-width: 45vw;
|
|
|
|
|
max-height: 45vh;
|
|
|
|
|
}
|
|
|
|
|
.chunkContentText {
|
|
|
|
|
.chunkText;
|
|
|
|
|
max-height: 45vh;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
.documentLink {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.referenceIcon {
|
|
|
|
|
padding: 0 6px;
|
|
|
|
|
}
|
2024-05-16 20:15:02 +08:00
|
|
|
|
|
|
|
|
.cursor {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
background-color: black;
|
|
|
|
|
animation: blink 0.6s infinite;
|
|
|
|
|
vertical-align: text-top;
|
|
|
|
|
@keyframes blink {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-10-18 17:21:12 +08:00
|
|
|
|
|
|
|
|
.fileThumbnail {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
max-width: 40px;
|
|
|
|
|
}
|