Files
wehub-resource-sync 555e282cc4
pi-agent-plugin checks / lint (push) Has been cancelled
pi-agent-plugin checks / test (20) (push) Has been cancelled
pi-agent-plugin checks / test (22) (push) Has been cancelled
pi-agent-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / check_changes (push) Has been cancelled
TypeScript SDK CI / changelog_check (push) Has been cancelled
ci / changelog_check (push) Has been cancelled
ci / check_changes (push) Has been cancelled
ci / build_mem0 (3.10) (push) Has been cancelled
ci / build_mem0 (3.11) (push) Has been cancelled
ci / build_mem0 (3.12) (push) Has been cancelled
CLI Node CI / lint (push) Has been cancelled
CLI Node CI / test (20) (push) Has been cancelled
CLI Node CI / test (22) (push) Has been cancelled
CLI Node CI / build (push) Has been cancelled
CLI Python CI / lint (push) Has been cancelled
CLI Python CI / test (3.10) (push) Has been cancelled
CLI Python CI / test (3.11) (push) Has been cancelled
CLI Python CI / test (3.12) (push) Has been cancelled
CLI Python CI / build (push) Has been cancelled
openclaw checks / lint (push) Has been cancelled
openclaw checks / test (20) (push) Has been cancelled
openclaw checks / test (22) (push) Has been cancelled
openclaw checks / build (push) Has been cancelled
opencode-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (22) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (22) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:45 +08:00

108 lines
2.1 KiB
CSS

.token {
word-break: break-word; /* Break long words */
overflow-wrap: break-word; /* Wrap text if it's too long */
width: 100%;
white-space: pre-wrap;
}
.prose li p {
margin-top: -19px;
}
@keyframes highlightSweep {
0% {
transform: scaleX(0);
opacity: 0;
}
100% {
transform: scaleX(1);
opacity: 1;
}
}
.highlight-text {
display: inline-block;
position: relative;
font-weight: normal;
padding: 0;
border-radius: 4px;
}
.highlight-text::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgb(233 213 255 / 0.7);
transform-origin: left;
transform: scaleX(0);
opacity: 0;
z-index: -1;
border-radius: inherit;
}
@keyframes fontWeightAnimation {
0% {
font-weight: normal;
padding: 0;
}
100% {
font-weight: 600;
padding: 0 4px;
}
}
@keyframes backgroundColorAnimation {
0% {
background-color: transparent;
}
100% {
background-color: rgba(180, 231, 255, 0.7);
}
}
.highlight-text.animate {
animation:
fontWeightAnimation 0.1s ease-out forwards,
backgroundColorAnimation 0.1s ease-out forwards;
animation-delay: 0.88s, 1.1s;
}
.highlight-text.dark {
background-color: rgba(213, 242, 255, 0.7);
color: #000;
}
.highlight-text.animate::before {
animation: highlightSweep 0.5s ease-out forwards;
animation-delay: 0.6s;
animation-fill-mode: forwards;
animation-iteration-count: 1;
}
:root[class~="dark"] .highlight-text::before {
background: rgb(88 28 135 / 0.5);
}
@keyframes blink {
0%, 100% { opacity: 0; }
50% { opacity: 1; }
}
.markdown-cursor {
display: inline-block;
animation: blink 0.8s ease-in-out infinite;
color: rgba(213, 242, 255, 0.7);
margin-left: 1px;
font-size: 1.2em;
line-height: 1;
vertical-align: baseline;
position: relative;
top: 2px;
}
:root[class~="dark"] .markdown-cursor {
color: #6366f1;
}