chore: rebuild CentOS7 release package

This commit is contained in:
shiyue
2026-07-05 17:28:39 +08:00
parent faf6adceb7
commit a3d83080cb
7 changed files with 516 additions and 78 deletions

View File

@@ -1318,6 +1318,18 @@ body.session-loading-active {
border-radius: 999px;
background: var(--accent);
}
.session-item.llm-created:not(.pinned)::before {
content: '';
position: absolute;
left: 4px;
top: 7px;
width: 9px;
height: 9px;
border-top: 2px solid var(--accent);
border-left: 2px solid var(--accent);
border-radius: 4px 0 0 0;
opacity: 0.88;
}
.session-item-main {
flex: 1;
min-width: 0;
@@ -5139,6 +5151,25 @@ html[data-theme='coolvibe'] .settings-back:hover {
font-size: 10px;
font-weight: 900;
}
.ccweb-prompt-clear-choice {
grid-column: 1 / -1;
justify-self: start;
border: 1px solid rgba(221, 208, 192, 0.9);
border-radius: 7px;
background: rgba(255, 255, 255, 0.56);
color: var(--text-muted);
font: inherit;
font-size: 12px;
line-height: 1.25;
padding: 4px 8px;
cursor: pointer;
transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}
.ccweb-prompt-clear-choice:hover {
border-color: var(--accent);
background: rgba(255, 249, 242, 0.96);
color: var(--accent);
}
.ccweb-prompt-option-label {
min-width: 0;
overflow-wrap: anywhere;
@@ -6372,7 +6403,14 @@ html[data-theme='coolvibe'] .settings-back:hover {
border-color: var(--text-muted);
}
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .ccweb-prompt-clear-choice {
background: rgba(0, 0, 0, 0.16);
border-color: var(--theme-card-hover-border);
color: var(--text-muted);
}
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .ccweb-prompt-option:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .ccweb-prompt-clear-choice:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .ccweb-prompt-tab-nav-btn:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .ccweb-prompt-secondary:hover,
:is(html[data-theme='carbon'], html[data-theme='nocturne'], html[data-theme='cinder']) .pending-ccweb-prompt-action:hover {