优化全能创作部分优化脚本

This commit is contained in:
Azmat@qq.com
2026-09-10 18:59:08 +08:00
parent 0d56fdb299
commit 43f80a4d90
12 changed files with 1223 additions and 95 deletions
+71
View File
@@ -1528,6 +1528,35 @@
display: none;
}
.omni-chat-bubble.is-reasoning {
display: flex;
flex-direction: column;
align-items: stretch;
gap: 8px;
color: #5c6570;
}
.omni-think-head {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: #5c6570;
}
.omni-think-text {
margin: 0;
font-size: 12px;
line-height: 1.65;
color: #8a93a0;
white-space: pre-wrap;
word-break: break-word;
max-height: 168px;
overflow-y: auto;
border-left: 1px solid rgba(15, 23, 42, 0.08);
padding-left: 10px;
}
@keyframes omniShimmer {
0% { background-position: 100% 0; }
100% { background-position: -100% 0; }
@@ -1672,3 +1701,45 @@
white-space: pre-wrap;
word-break: break-word;
}
.omni-gate-bubble {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
max-width: min(520px, calc(100% - 44px));
}
.omni-gate-actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.omni-gate-actions button {
padding: 8px 14px;
border: 1px solid rgba(34, 42, 54, .12);
border-radius: 999px;
background: #fff;
color: #575d66;
font-size: 13px;
cursor: pointer;
}
.omni-gate-actions button.primary {
border-color: var(--klein);
background: var(--klein);
color: #fff;
}
.omni-gate-actions button:disabled {
opacity: .55;
cursor: not-allowed;
}
.omni-gate-answered {
margin: 0;
font-size: 12px;
color: #8a93a0;
}