chore: rebuild release package and commit updates

This commit is contained in:
shiyue
2026-07-13 10:13:04 +08:00
parent dd466a69b5
commit 141a266f34
19 changed files with 1066 additions and 35 deletions

View File

@@ -5629,10 +5629,12 @@ html[data-theme='coolvibe'] .settings-back:hover {
.collab-agent-item {
appearance: none;
max-width: 100%;
min-width: 0;
min-height: 40px;
flex: 1 1 220px;
display: inline-flex;
flex-direction: row;
align-items: center;
flex-direction: column;
align-items: stretch;
gap: 4px;
padding: 5px 10px;
border: 1px solid rgba(91, 126, 161, 0.16);
@@ -5646,11 +5648,13 @@ html[data-theme='coolvibe'] .settings-back:hover {
.collab-agent-item-row {
display: flex;
align-items: center;
min-width: 0;
gap: 4px;
}
.collab-agent-item-label {
flex: 1 1 auto;
min-width: 0;
max-width: 150px;
max-width: 220px;
font-size: 13px;
font-weight: 700;
color: var(--text-primary);
@@ -5669,6 +5673,17 @@ html[data-theme='coolvibe'] .settings-back:hover {
color: var(--text-secondary);
line-height: 1.55;
}
.collab-agent-item-description {
min-width: 0;
font-size: 12px;
line-height: 1.35;
color: var(--text-muted);
overflow: hidden;
overflow-wrap: anywhere;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.collab-agent-item-footer {
font-size: 11px;
color: var(--text-muted);
@@ -5766,12 +5781,19 @@ html[data-theme='coolvibe'] .settings-back:hover {
.collab-agent-header {
align-items: flex-start;
}
.collab-agent-list {
min-width: 0;
}
.collab-agent-title-wrap {
flex-wrap: wrap;
}
.collab-agent-actions {
margin-left: auto;
}
.collab-agent-item {
min-width: 0;
flex: 1 1 min(100%, 180px);
}
.collab-agent-item-label {
max-width: 96px;
}