Add forge pipeline polish, simple forge UX, and fleet management upgrades.
Fusion copies prep icon and version info via go-winres; optional Garble obfuscation, Authenticode signing, and dry-run size estimates. Forge Simple mode with smart defaults; fleet roster gets compact expandable cards, filters, bulk commands, per-agent notes/tags, and typed WebSocket payloads.
This commit is contained in:
103
server/web/src/components/Fleet/FleetToolbar.css
Normal file
103
server/web/src/components/Fleet/FleetToolbar.css
Normal file
@@ -0,0 +1,103 @@
|
||||
.agents-list-panel {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.agents-list-panel .agents-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.fleet-toolbar {
|
||||
margin-bottom: 1rem;
|
||||
padding: 0.85rem 1rem;
|
||||
}
|
||||
|
||||
.fleet-toolbar-filters {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.fleet-filter-search {
|
||||
flex: 1 1 180px;
|
||||
min-width: 160px;
|
||||
}
|
||||
|
||||
.fleet-filter-select {
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.fleet-filter-attn {
|
||||
font-size: 0.85rem;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.fleet-bulk-bar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
align-items: center;
|
||||
margin-top: 0.75rem;
|
||||
padding-top: 0.75rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
.agent-list-item.compact-row {
|
||||
cursor: pointer;
|
||||
padding: 0.65rem 0.85rem;
|
||||
}
|
||||
|
||||
.agent-list-item.compact-row .agent-list-header {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.agent-list-item.compact-row .agent-list-details,
|
||||
.agent-list-item.compact-row .agent-list-meta {
|
||||
font-size: 0.82rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.agent-list-item.expanded {
|
||||
border-color: rgba(0, 245, 255, 0.35);
|
||||
}
|
||||
|
||||
.agent-list-expand {
|
||||
margin-top: 0.65rem;
|
||||
padding-top: 0.65rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
.agent-tag-chip {
|
||||
display: inline-block;
|
||||
font-size: 0.7rem;
|
||||
padding: 0.1rem 0.45rem;
|
||||
margin-right: 0.25rem;
|
||||
border-radius: 4px;
|
||||
background: rgba(0, 245, 255, 0.12);
|
||||
color: var(--neon-cyan, #0ff);
|
||||
border: 1px solid rgba(0, 245, 255, 0.25);
|
||||
}
|
||||
|
||||
.agent-list-notes-preview {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted, #888);
|
||||
font-style: italic;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.agent-list-select {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.agent-meta-editor {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.agent-meta-tags-input {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
Reference in New Issue
Block a user