chore: version up to v2.80.30 and package vsix

This commit is contained in:
g1nation
2026-05-11 12:44:38 +09:00
parent 789680ccb1
commit 3c2b62c018
9 changed files with 678 additions and 4 deletions
+122
View File
@@ -515,6 +515,128 @@
color: var(--text-bright);
}
/* --- Agent Map Modal --- */
.map-agent-row {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
margin-bottom: 14px;
}
.map-agent-name {
font-size: 13px;
font-weight: 700;
color: var(--text-bright);
}
.map-section {
margin-bottom: 16px;
padding: 12px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
}
.map-section-head {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 12px;
margin-bottom: 10px;
}
.map-section-title {
font-size: 12px;
font-weight: 800;
color: var(--text-bright);
margin-bottom: 4px;
}
.map-section-hint {
font-size: 10.5px;
color: var(--text-dim);
line-height: 1.4;
max-width: 360px;
}
.map-btn-group {
display: flex;
gap: 6px;
flex-shrink: 0;
}
.map-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.map-list:empty::before {
content: '아직 연결된 항목이 없습니다.';
font-size: 11px;
color: var(--text-dim);
font-style: italic;
padding: 8px 4px;
display: block;
}
.map-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
background: var(--input-bg);
border: 1px solid var(--border);
border-radius: 6px;
font-size: 11.5px;
color: var(--text-primary);
}
.map-item-icon {
flex-shrink: 0;
font-size: 13px;
}
.map-item-path {
flex: 1;
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
font-size: 11px;
word-break: break-all;
color: var(--text-bright);
}
.map-item-meta {
font-size: 10px;
color: var(--text-dim);
}
.map-item-remove {
background: transparent;
border: 1px solid var(--border);
color: var(--text-dim);
border-radius: 4px;
padding: 2px 6px;
font-size: 11px;
cursor: pointer;
}
.map-item-remove:hover {
border-color: var(--error);
color: var(--error);
}
.map-footer {
display: flex;
gap: 8px;
align-items: center;
margin-top: 10px;
padding-top: 12px;
border-top: 1px solid var(--border);
}
.map-footer .send-btn {
min-width: 80px;
}
.map-status {
margin-top: 10px;
font-size: 11px;
min-height: 16px;
color: var(--text-dim);
}
.map-status.ok { color: var(--success); }
.map-status.error { color: var(--error); }
/* --- Physics & Micro-interactions --- */
button {
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);