Voor remote client agent
This commit is contained in:
@@ -143,11 +143,56 @@ body {
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.header-task-item-heading {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.header-task-item-title {
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.header-task-status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
border-radius: 999px;
|
||||
padding: 2px 8px;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
border: 1px solid var(--color-border);
|
||||
background: var(--color-surface-elevated);
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.header-task-status-badge.status-queued {
|
||||
background: color-mix(in srgb, var(--color-surface-elevated) 72%, var(--color-accent) 28%);
|
||||
}
|
||||
|
||||
.header-task-status-badge.status-running {
|
||||
background: color-mix(in srgb, var(--color-surface-elevated) 60%, var(--color-accent) 40%);
|
||||
}
|
||||
|
||||
.header-task-status-badge.status-cancelling {
|
||||
background: color-mix(in srgb, var(--color-surface-elevated) 70%, var(--color-warning, #c08a00) 30%);
|
||||
}
|
||||
|
||||
.header-task-status-badge.status-completed {
|
||||
background: color-mix(in srgb, var(--color-surface-elevated) 72%, var(--color-success, #2f855a) 28%);
|
||||
}
|
||||
|
||||
.header-task-status-badge.status-cancelled {
|
||||
background: color-mix(in srgb, var(--color-surface-elevated) 78%, var(--color-text-muted) 22%);
|
||||
}
|
||||
|
||||
.header-task-status-badge.status-failed {
|
||||
background: color-mix(in srgb, var(--color-surface-elevated) 68%, var(--color-danger) 32%);
|
||||
color: var(--color-danger-text, var(--color-text-primary));
|
||||
}
|
||||
|
||||
.header-task-item-path,
|
||||
.header-task-item-meta,
|
||||
.header-task-item-empty {
|
||||
|
||||
Reference in New Issue
Block a user