chore: rebuild CentOS7 release package

This commit is contained in:
shiyue
2026-06-27 19:47:52 +08:00
parent 911dd84c35
commit cd37ecf10b
14 changed files with 3128 additions and 653 deletions

View File

@@ -1736,6 +1736,31 @@ body.session-loading-active {
display: inline-flex;
flex-shrink: 0;
}
.ccweb-prompt-outline-anchor {
position: relative;
display: inline-flex;
flex-shrink: 0;
}
.ccweb-prompt-outline-btn {
position: relative;
}
.ccweb-prompt-outline-btn[data-count]::after {
content: attr(data-count);
position: absolute;
top: -6px;
right: -7px;
min-width: 16px;
height: 16px;
padding: 0 4px;
border-radius: 999px;
background: var(--accent);
color: var(--accent-ink);
font-size: 10px;
font-weight: 900;
line-height: 16px;
text-align: center;
box-shadow: 0 0 0 2px var(--bg-primary);
}
.user-outline-btn:hover,
.reload-mcp-btn:hover:not(:disabled) {
background: rgba(91, 126, 161, 0.16);
@@ -3387,6 +3412,76 @@ html[data-divider-time='hide'] .msg-bubble .agent-message-divider span {
background: var(--note-border);
border-radius: 999px;
}
.pending-ccweb-prompt {
display: grid;
grid-template-columns: 10px minmax(0, 1fr) auto auto;
align-items: center;
gap: 8px;
width: 100%;
min-height: 36px;
padding: 6px 8px;
border: none;
border-radius: 10px;
background: transparent;
animation: fadeIn 0.2s ease;
}
.pending-ccweb-prompt:hover {
background: var(--accent-light);
}
.pending-ccweb-prompt-badge {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 0 3px rgba(192, 85, 58, 0.12);
}
.pending-ccweb-prompt-title {
color: var(--text-primary);
font-size: 13px;
font-weight: 800;
line-height: 1.35;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.pending-ccweb-prompt-action {
min-height: 26px;
padding: 3px 9px;
border: 1px solid rgba(192, 85, 58, 0.24);
border-radius: 999px;
background: rgba(255, 249, 242, 0.9);
color: var(--accent);
font: inherit;
font-size: 12px;
font-weight: 900;
cursor: pointer;
transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.pending-ccweb-prompt-action:hover {
border-color: var(--accent);
background: var(--bg-primary);
transform: translateY(-1px);
}
.pending-ccweb-prompt-dismiss {
min-height: 26px;
padding: 3px 8px;
border: 0;
border-radius: 999px;
background: transparent;
color: var(--text-muted);
font: inherit;
font-size: 12px;
font-weight: 900;
cursor: pointer;
}
.pending-ccweb-prompt-dismiss:hover {
background: rgba(139, 100, 32, 0.1);
color: var(--text-primary);
}
.pending-ccweb-prompt-dismiss:disabled {
opacity: 0.55;
cursor: wait;
}
.pending-note {
display: grid;
grid-template-columns: 28px minmax(0, 1fr);
@@ -3704,6 +3799,7 @@ html[data-divider-time='hide'] .msg-bubble .agent-message-divider span {
font-size: 11px;
}
.user-outline-btn,
.ccweb-prompt-outline-btn,
.reload-mcp-btn {
padding: 4px 8px;
font-size: 10px;
@@ -3747,9 +3843,13 @@ html[data-divider-time='hide'] .msg-bubble .agent-message-divider span {
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: stretch;
}
.ccweb-prompt-outline-anchor {
width: 100%;
}
.chat-cwd,
.mode-select,
.user-outline-btn,
.ccweb-prompt-outline-btn,
.reload-mcp-btn,
.chat-runtime-state {
width: 100%;
@@ -4719,6 +4819,474 @@ html[data-theme='coolvibe'] .settings-back:hover {
.codex-user-input-text:focus {
border-color: var(--accent);
}
.ccweb-prompt-card {
width: min(100%, 720px);
margin-top: 14px;
padding: 0;
border: 1px solid rgba(192, 85, 58, 0.18);
border-left: 4px solid var(--accent);
border-radius: 8px;
background:
linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(250, 246, 240, 0.94));
color: var(--text-primary);
box-shadow: 0 14px 34px rgba(45, 31, 20, 0.08);
overflow: hidden;
}
.ccweb-prompt-card.ccweb-prompt-focus {
animation: ccwebPromptFocus 1.4s ease;
}
@keyframes ccwebPromptFocus {
0% {
box-shadow: 0 0 0 0 rgba(192, 85, 58, 0.34), 0 14px 34px rgba(45, 31, 20, 0.08);
}
45% {
box-shadow: 0 0 0 5px rgba(192, 85, 58, 0.18), 0 18px 38px rgba(45, 31, 20, 0.12);
}
100% {
box-shadow: 0 0 0 0 rgba(192, 85, 58, 0), 0 14px 34px rgba(45, 31, 20, 0.08);
}
}
.ccweb-prompt-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
min-height: 46px;
padding: 9px 12px;
border-bottom: 1px solid rgba(221, 208, 192, 0.72);
}
.ccweb-prompt-title-wrap {
flex: 1 1 auto;
min-width: 0;
}
.ccweb-prompt-kicker {
color: var(--text-muted);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.ccweb-prompt-title {
color: var(--text-primary);
font-size: 15px;
font-weight: 800;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ccweb-prompt-header-actions {
display: inline-flex;
align-items: center;
gap: 7px;
flex: 0 0 auto;
}
.ccweb-prompt-status {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
padding: 0;
border: 1px solid rgba(192, 85, 58, 0.18);
border-radius: 999px;
background: rgba(245, 221, 212, 0.6);
color: var(--accent);
font-size: 10px;
font-weight: 800;
}
.ccweb-prompt-card[data-status='submitted'] .ccweb-prompt-status {
width: auto;
padding: 0 7px;
border-color: rgba(93, 138, 84, 0.28);
background: rgba(93, 138, 84, 0.12);
color: var(--success);
font-size: 11px;
}
.ccweb-prompt-desc {
margin: 0;
padding: 10px 12px 0;
color: var(--text-secondary);
font-size: 13px;
line-height: 1.55;
white-space: pre-wrap;
overflow-wrap: anywhere;
}
.ccweb-prompt-view-controls {
padding: 8px 12px 0;
}
.ccweb-prompt-view-switcher {
display: inline-flex;
width: max-content;
max-width: 100%;
padding: 1px;
border: 1px solid rgba(221, 208, 192, 0.94);
border-radius: 8px;
background: rgba(255, 255, 255, 0.48);
}
.ccweb-prompt-view-btn {
width: 26px;
height: 26px;
min-height: 26px;
padding: 0;
border: 0;
border-radius: 6px;
background: transparent;
color: var(--text-muted);
font: inherit;
font-size: 14px;
font-weight: 900;
line-height: 1;
cursor: pointer;
}
.ccweb-prompt-view-btn.is-active {
background: var(--accent);
color: var(--accent-ink);
}
.ccweb-prompt-tabs {
display: none;
min-width: 0;
gap: 6px;
overflow-x: auto;
scrollbar-width: thin;
}
.ccweb-prompt-tab {
flex: 0 0 auto;
max-width: 168px;
min-height: 30px;
padding: 5px 10px;
border: 1px solid rgba(221, 208, 192, 0.94);
border-radius: 8px;
background: rgba(255, 249, 242, 0.72);
color: var(--text-secondary);
font: inherit;
font-size: 12px;
font-weight: 800;
cursor: pointer;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ccweb-prompt-tab.is-active {
border-color: var(--accent);
background: rgba(245, 221, 212, 0.72);
color: var(--accent);
}
.ccweb-prompt-tab-nav {
display: none;
align-items: center;
justify-content: flex-start;
gap: 6px;
min-width: 0;
}
.ccweb-prompt-tab-nav-btn {
min-height: 30px;
padding: 5px 9px;
border: 1px solid rgba(221, 208, 192, 0.98);
border-radius: 8px;
background: rgba(255, 249, 242, 0.75);
color: var(--text-primary);
font: inherit;
font-size: 12px;
font-weight: 900;
cursor: pointer;
}
.ccweb-prompt-tab-nav-btn:disabled {
opacity: 0.45;
cursor: default;
}
.ccweb-prompt-tab-counter {
min-width: 64px;
color: var(--text-muted);
font-size: 12px;
font-weight: 800;
text-align: center;
}
.ccweb-prompt-card[data-view-mode='tabs'] .ccweb-prompt-tabs {
display: flex;
}
.ccweb-prompt-card[data-view-mode='cards'] .ccweb-prompt-view-controls {
display: none;
}
.ccweb-prompt-card[data-view-mode='tabs'] .ccweb-prompt-tab-nav {
display: flex;
}
.ccweb-prompt-card[data-view-mode='tabs'] .ccweb-prompt-question:not(.is-active) {
display: none;
}
.ccweb-prompt-questions {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 0;
padding: 10px 12px 4px;
}
.ccweb-prompt-question {
display: flex;
flex-direction: column;
gap: 10px;
padding: 13px 14px;
border: 1px solid rgba(221, 208, 192, 0.92);
border-radius: 8px;
background: rgba(255, 255, 255, 0.46);
}
.ccweb-prompt-question-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.ccweb-prompt-question-title {
color: var(--text-primary);
font-size: 14px;
font-weight: 800;
line-height: 1.35;
overflow-wrap: anywhere;
}
.ccweb-prompt-required {
flex: 0 0 auto;
padding: 2px 6px;
border-radius: 999px;
background: rgba(192, 85, 58, 0.1);
color: var(--danger);
font-size: 12px;
font-weight: 800;
}
.ccweb-prompt-question-body {
color: var(--text-secondary);
font-size: 13px;
line-height: 1.5;
white-space: pre-wrap;
overflow-wrap: anywhere;
}
.ccweb-prompt-options {
display: grid;
grid-template-columns: 1fr;
gap: 7px;
}
.ccweb-prompt-option {
position: relative;
display: grid;
grid-template-columns: auto 1fr auto;
column-gap: 9px;
row-gap: 4px;
min-width: 0;
align-items: start;
width: 100%;
padding: 9px 11px;
border: 1px solid rgba(221, 208, 192, 0.96);
border-radius: 8px;
background: rgba(255, 249, 242, 0.82);
color: var(--text-primary);
font: inherit;
font-size: 13px;
line-height: 1.35;
text-align: left;
cursor: pointer;
transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.ccweb-prompt-option::before {
content: '';
width: 15px;
height: 15px;
margin-top: 1px;
border: 1.5px solid var(--border-color);
border-radius: 4px;
background: rgba(255, 255, 255, 0.75);
box-sizing: border-box;
}
.ccweb-prompt-option:hover {
border-color: var(--accent);
background: rgba(255, 249, 242, 0.98);
box-shadow: 0 8px 18px rgba(45, 31, 20, 0.06);
transform: translateY(-1px);
}
.ccweb-prompt-option.is-selected {
border-color: var(--accent);
background: rgba(245, 221, 212, 0.72);
color: var(--text-primary);
box-shadow: inset 0 0 0 1px rgba(192, 85, 58, 0.16);
}
.ccweb-prompt-option.is-selected::before {
content: '✓';
display: grid;
place-items: center;
border-color: var(--accent);
background: var(--accent);
color: var(--accent-ink);
font-size: 10px;
font-weight: 900;
}
.ccweb-prompt-option-label {
min-width: 0;
overflow-wrap: anywhere;
font-weight: 800;
}
.ccweb-prompt-option-badge {
flex: 0 0 auto;
align-self: start;
padding: 2px 6px;
border-radius: 999px;
background: rgba(192, 85, 58, 0.12);
color: var(--accent);
font-size: 11px;
font-weight: 800;
}
.ccweb-prompt-option-desc {
grid-column: 2 / -1;
color: var(--text-muted);
font-size: 12px;
line-height: 1.45;
text-align: left;
}
.ccweb-prompt-answer {
width: 100%;
min-height: 84px;
resize: vertical;
padding: 10px 11px;
border: 1px solid rgba(221, 208, 192, 0.98);
border-radius: 8px;
background: rgba(255, 255, 255, 0.62);
color: var(--text-primary);
font: inherit;
font-size: 13px;
line-height: 1.5;
outline: none;
transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.ccweb-prompt-answer:focus {
border-color: var(--accent);
background: var(--bg-primary);
box-shadow: 0 0 0 3px rgba(192, 85, 58, 0.1);
}
.ccweb-prompt-selected-readonly,
.ccweb-prompt-answer-readonly {
padding: 10px 11px;
border: 1px solid rgba(221, 208, 192, 0.92);
border-radius: 8px;
background: rgba(255, 255, 255, 0.56);
color: var(--text-primary);
font-size: 13px;
line-height: 1.5;
white-space: pre-wrap;
overflow-wrap: anywhere;
}
.ccweb-prompt-selected-readonly {
color: var(--text-secondary);
}
.ccweb-prompt-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-top: 0;
padding: 9px 12px 11px;
border-top: 1px solid rgba(221, 208, 192, 0.72);
background: rgba(242, 235, 226, 0.38);
}
.ccweb-prompt-footer-actions {
display: inline-flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
margin-left: auto;
}
.ccweb-prompt-submit,
.ccweb-prompt-secondary {
min-height: 32px;
padding: 6px 12px;
border-radius: 8px;
font: inherit;
font-size: 13px;
font-weight: 800;
cursor: pointer;
transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.ccweb-prompt-submit {
border: 1px solid var(--accent);
background: var(--accent);
color: var(--accent-ink);
}
.ccweb-prompt-submit:hover:not(:disabled) {
background: var(--accent-hover);
border-color: var(--accent-hover);
box-shadow: 0 8px 18px rgba(192, 85, 58, 0.18);
transform: translateY(-1px);
}
.ccweb-prompt-submit:disabled {
opacity: 0.65;
cursor: wait;
}
.ccweb-prompt-secondary {
border: 1px solid rgba(221, 208, 192, 0.98);
background: rgba(255, 249, 242, 0.75);
color: var(--text-primary);
}
.ccweb-prompt-secondary:hover {
border-color: var(--accent);
background: var(--bg-primary);
}
.ccweb-prompt-error {
margin: 2px 18px 0;
color: var(--danger);
font-size: 13px;
font-weight: 800;
}
@media (max-width: 640px) {
.pending-ccweb-prompt {
grid-template-columns: 10px minmax(72px, 1fr) auto auto;
}
.pending-ccweb-prompt-title {
max-width: none;
}
.ccweb-prompt-card {
width: 100%;
}
.ccweb-prompt-header {
padding: 9px 10px;
}
.ccweb-prompt-header-actions {
gap: 5px;
}
.ccweb-prompt-desc {
padding: 9px 10px 0;
}
.ccweb-prompt-view-controls {
padding: 8px 10px 0;
}
.ccweb-prompt-view-switcher {
width: auto;
}
.ccweb-prompt-question-head {
align-items: flex-start;
}
.ccweb-prompt-tab-nav {
flex: 0 1 auto;
}
.ccweb-prompt-tab-nav-btn {
flex: 0 0 auto;
}
.ccweb-prompt-questions {
padding: 10px 10px 4px;
}
.ccweb-prompt-footer {
flex-wrap: wrap;
padding: 9px 10px 10px;
}
.ccweb-prompt-footer-actions {
flex: 1 1 auto;
margin-left: 0;
}
.ccweb-prompt-error {
margin-right: 10px;
margin-left: 10px;
}
.ccweb-prompt-submit,
.ccweb-prompt-secondary {
width: auto;
}
}
.codex-approval-panel {
max-width: 560px;
}
@@ -5460,8 +6028,10 @@ html[data-theme='coolvibe'] .settings-back:hover {
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .mode-select,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .chat-cwd,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .user-outline-btn,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .ccweb-prompt-outline-btn,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .reload-mcp-btn,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .user-outline-item,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .pending-ccweb-prompt,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .settings-back,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .settings-nav-card,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .settings-toggle-row,
@@ -5551,7 +6121,8 @@ html[data-theme='coolvibe'] .settings-back:hover {
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .cmd-item:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .cmd-item.active,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .file-browser-item:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .user-outline-item:hover {
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .user-outline-item:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .pending-ccweb-prompt:hover {
background: var(--accent-light);
}