chore: rebuild release package
This commit is contained in:
112
public/style.css
112
public/style.css
@@ -19,6 +19,8 @@
|
||||
--accent-hover: #a84530; /* 深朱 deep vermillion */
|
||||
--accent-light: #f5ddd4; /* 薄朱 light vermillion */
|
||||
--success: #5d8a54; /* 抹茶 matcha */
|
||||
--plan-progress-complete: var(--success);
|
||||
--plan-progress-remaining: var(--accent);
|
||||
--danger: #c0553a;
|
||||
--info: #5b7ea1; /* 縹色 blue-gray */
|
||||
--note-accent: #5b7ea1;
|
||||
@@ -3103,6 +3105,85 @@ html[data-divider-time='hide'] .msg-bubble .agent-message-divider span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.tool-call-label-text {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.tool-call.codex-todo-list .tool-call-label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
}
|
||||
.plan-progress {
|
||||
display: inline-flex;
|
||||
flex: 0 0 auto;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.plan-progress-dots {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 3px;
|
||||
}
|
||||
.plan-progress-dot {
|
||||
display: block;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
margin-left: 8px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.plan-progress-dot.is-complete {
|
||||
background: var(--plan-progress-complete);
|
||||
}
|
||||
.plan-progress-dot.is-remaining {
|
||||
background: var(--plan-progress-remaining);
|
||||
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text-primary) 28%, transparent);
|
||||
transform-origin: center;
|
||||
animation: plan-progress-breathe 1.8s ease-in-out infinite;
|
||||
}
|
||||
@keyframes plan-progress-breathe {
|
||||
0%, 100% {
|
||||
opacity: 0.68;
|
||||
transform: scale(0.9);
|
||||
}
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.plan-progress-dot.is-remaining {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
.plan-progress-count {
|
||||
color: var(--text-muted);
|
||||
font-size: 9px;
|
||||
font-variant-numeric: tabular-nums;
|
||||
line-height: 1;
|
||||
}
|
||||
@media (max-width: 560px) {
|
||||
.tool-call.codex-todo-list .tool-call-label {
|
||||
gap: 5px;
|
||||
}
|
||||
.plan-progress {
|
||||
gap: 3px;
|
||||
}
|
||||
.plan-progress-dots {
|
||||
gap: 2px;
|
||||
}
|
||||
.plan-progress-dot {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
}
|
||||
.plan-progress-count {
|
||||
font-size: 8px;
|
||||
}
|
||||
}
|
||||
.tool-call-subtitle {
|
||||
display: block;
|
||||
width: 100%;
|
||||
@@ -8692,6 +8773,29 @@ html[data-theme='wasteland'] .tool-call summary::before {
|
||||
background: url('assets/themes/wasteland/icons/ui/terminal.png') center / 20px 18px no-repeat;
|
||||
}
|
||||
|
||||
html[data-theme='wasteland'] .plan-progress-dot {
|
||||
flex: 0 0 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-left: 6px;
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 20px 20px;
|
||||
box-shadow: none;
|
||||
filter: drop-shadow(0 0 3px rgba(223, 180, 108, 0.28));
|
||||
}
|
||||
|
||||
html[data-theme='wasteland'] .plan-progress-dot.is-complete {
|
||||
background-image: url('assets/themes/wasteland/icons/plan-progress/complete.png');
|
||||
}
|
||||
|
||||
html[data-theme='wasteland'] .plan-progress-dot.is-remaining {
|
||||
background-image: url('assets/themes/wasteland/icons/plan-progress/remaining.png');
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
html[data-theme='wasteland'] :is(
|
||||
.tool-call-content,
|
||||
.tool-call-content.reasoning,
|
||||
@@ -8963,6 +9067,14 @@ html[data-theme='wasteland'] .mode-select {
|
||||
height: 24px;
|
||||
background-size: 24px 24px;
|
||||
}
|
||||
|
||||
html[data-theme='wasteland'] .plan-progress-dot {
|
||||
flex-basis: 16px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-left: 3px;
|
||||
background-size: 16px 16px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 暗金荒野:暗场气泡用无黑底的亮度补偿磨砂,避免透明层视觉上仍像实心黑块。 */
|
||||
|
||||
Reference in New Issue
Block a user