1049 lines
22 KiB
CSS
1049 lines
22 KiB
CSS
/* =============================================================================
|
|
TASKS APP
|
|
Automated Intelligent Task Management Interface
|
|
============================================================================= */
|
|
|
|
/* =============================================================================
|
|
LAYOUT STRUCTURE
|
|
============================================================================= */
|
|
|
|
.tasks-app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
background: var(--sentient-bg-primary);
|
|
color: var(--sentient-text-primary);
|
|
font-family: var(--sentient-font-family);
|
|
}
|
|
|
|
/* =============================================================================
|
|
TOP HEADER BAR
|
|
============================================================================= */
|
|
|
|
.tasks-topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 24px;
|
|
background: var(--sentient-bg-secondary);
|
|
border-bottom: 1px solid var(--sentient-border);
|
|
}
|
|
|
|
.topbar-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
}
|
|
|
|
.topbar-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.topbar-logo-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
background: var(--sentient-accent);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #000;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.topbar-nav {
|
|
display: flex;
|
|
gap: 4px;
|
|
}
|
|
|
|
.topbar-nav-item {
|
|
padding: 8px 16px;
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: var(--sentient-radius-sm);
|
|
color: var(--sentient-text-secondary);
|
|
font-family: var(--sentient-font-family);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.topbar-nav-item:hover {
|
|
background: var(--sentient-bg-tertiary);
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.topbar-nav-item.active {
|
|
background: var(--sentient-bg-tertiary);
|
|
color: var(--sentient-accent);
|
|
}
|
|
|
|
.topbar-center {
|
|
flex: 1;
|
|
max-width: 480px;
|
|
margin: 0 24px;
|
|
}
|
|
|
|
.topbar-search {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.topbar-search-icon {
|
|
position: absolute;
|
|
left: 14px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
color: var(--sentient-text-muted);
|
|
font-size: 16px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.topbar-search-input {
|
|
width: 100%;
|
|
padding: 10px 16px 10px 44px;
|
|
background: var(--sentient-bg-tertiary);
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-md);
|
|
color: var(--sentient-text-primary);
|
|
font-size: 14px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.topbar-search-input::placeholder {
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.topbar-search-input:focus {
|
|
outline: none;
|
|
border-color: var(--sentient-accent);
|
|
box-shadow: 0 0 0 3px var(--sentient-accent-dim);
|
|
}
|
|
|
|
.topbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.topbar-icon-btn {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: transparent;
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-sm);
|
|
color: var(--sentient-text-secondary);
|
|
font-size: 18px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.topbar-icon-btn:hover {
|
|
background: var(--sentient-bg-tertiary);
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.topbar-icon-btn .notification-dot {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
width: 8px;
|
|
height: 8px;
|
|
background: var(--sentient-error);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.topbar-profile {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 6px 12px 6px 6px;
|
|
background: var(--sentient-bg-tertiary);
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-md);
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.topbar-profile:hover {
|
|
border-color: var(--sentient-border-hover);
|
|
}
|
|
|
|
.topbar-avatar {
|
|
width: 28px;
|
|
height: 28px;
|
|
background: linear-gradient(135deg, var(--sentient-accent), #a5d622);
|
|
border-radius: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #000;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.topbar-profile-name {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.topbar-profile-arrow {
|
|
color: var(--sentient-text-muted);
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* =============================================================================
|
|
MAIN CONTENT AREA
|
|
============================================================================= */
|
|
|
|
.tasks-main {
|
|
display: flex;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* =============================================================================
|
|
TASK LIST PANEL (LEFT)
|
|
============================================================================= */
|
|
|
|
.tasks-list-panel {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-right: 1px solid var(--sentient-border);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tasks-list-header {
|
|
padding: 20px 24px;
|
|
border-bottom: 1px solid var(--sentient-border);
|
|
}
|
|
|
|
.tasks-list-title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.tasks-list-title h1 {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: var(--sentient-text-primary);
|
|
margin: 0;
|
|
}
|
|
|
|
.tasks-count {
|
|
font-size: 14px;
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
/* Status Filter Pills */
|
|
.status-filters {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.status-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 14px;
|
|
background: var(--sentient-bg-tertiary);
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: 20px;
|
|
color: var(--sentient-text-secondary);
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.status-pill:hover {
|
|
border-color: var(--sentient-border-hover);
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.status-pill.active {
|
|
background: var(--sentient-accent-dim);
|
|
border-color: var(--sentient-accent);
|
|
color: var(--sentient-accent);
|
|
}
|
|
|
|
.status-pill.complete.active {
|
|
background: rgba(34, 197, 94, 0.15);
|
|
border-color: var(--sentient-success);
|
|
color: var(--sentient-success);
|
|
}
|
|
|
|
.status-pill.active-intents.active {
|
|
background: rgba(59, 130, 246, 0.15);
|
|
border-color: var(--sentient-info);
|
|
color: var(--sentient-info);
|
|
}
|
|
|
|
.status-pill.awaiting.active {
|
|
background: rgba(245, 158, 11, 0.15);
|
|
border-color: var(--sentient-warning);
|
|
color: var(--sentient-warning);
|
|
}
|
|
|
|
.status-pill.paused.active {
|
|
background: rgba(139, 92, 246, 0.15);
|
|
border-color: var(--sentient-paused);
|
|
color: var(--sentient-paused);
|
|
}
|
|
|
|
.status-pill.blocked.active {
|
|
background: rgba(239, 68, 68, 0.15);
|
|
border-color: var(--sentient-error);
|
|
color: var(--sentient-error);
|
|
}
|
|
|
|
.status-pill .pill-count {
|
|
padding: 2px 8px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 10px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.status-pill.active .pill-count {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
/* Task List Scroll Container */
|
|
.tasks-list-scroll {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 16px;
|
|
}
|
|
|
|
/* Task Card */
|
|
.task-card {
|
|
background: var(--sentient-bg-card);
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-lg);
|
|
padding: 16px;
|
|
margin-bottom: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.task-card:hover {
|
|
border-color: var(--sentient-border-hover);
|
|
transform: translateX(4px);
|
|
}
|
|
|
|
.task-card.selected {
|
|
border-color: var(--sentient-accent);
|
|
background: var(--sentient-accent-dim);
|
|
}
|
|
|
|
.task-card-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.task-card-title {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
color: var(--sentient-text-primary);
|
|
margin: 0 0 4px 0;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.task-card-subtitle {
|
|
font-size: 13px;
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.task-card-status {
|
|
padding: 4px 10px;
|
|
border-radius: 12px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.3px;
|
|
}
|
|
|
|
.task-card-status.running {
|
|
background: rgba(59, 130, 246, 0.15);
|
|
color: var(--sentient-info);
|
|
}
|
|
|
|
.task-card-status.complete {
|
|
background: rgba(34, 197, 94, 0.15);
|
|
color: var(--sentient-success);
|
|
}
|
|
|
|
.task-card-status.awaiting {
|
|
background: rgba(245, 158, 11, 0.15);
|
|
color: var(--sentient-warning);
|
|
}
|
|
|
|
.task-card-status.paused {
|
|
background: rgba(139, 92, 246, 0.15);
|
|
color: var(--sentient-paused);
|
|
}
|
|
|
|
.task-card-status.blocked {
|
|
background: rgba(239, 68, 68, 0.15);
|
|
color: var(--sentient-error);
|
|
}
|
|
|
|
/* Task Progress */
|
|
.task-card-progress {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.task-progress-bar {
|
|
height: 6px;
|
|
background: var(--sentient-bg-tertiary);
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.task-progress-fill {
|
|
height: 100%;
|
|
background: var(--sentient-accent);
|
|
border-radius: 3px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.task-progress-fill.success {
|
|
background: var(--sentient-success);
|
|
}
|
|
|
|
.task-progress-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.task-progress-percent {
|
|
color: var(--sentient-accent);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.task-progress-steps {
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
/* Task Card Meta */
|
|
.task-card-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: 12px;
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.task-card-meta-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
/* =============================================================================
|
|
TASK DETAIL PANEL (RIGHT)
|
|
============================================================================= */
|
|
|
|
.task-detail-panel {
|
|
width: 480px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--sentient-bg-secondary);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.task-detail-header {
|
|
padding: 20px 24px;
|
|
border-bottom: 1px solid var(--sentient-border);
|
|
}
|
|
|
|
.task-detail-title-row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.task-detail-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--sentient-text-primary);
|
|
margin: 0;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.task-detail-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.task-detail-action-btn {
|
|
width: 32px;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--sentient-bg-tertiary);
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-sm);
|
|
color: var(--sentient-text-secondary);
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.task-detail-action-btn:hover {
|
|
background: var(--sentient-bg-hover);
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.task-detail-meta {
|
|
display: flex;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.task-detail-meta-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 13px;
|
|
color: var(--sentient-text-secondary);
|
|
}
|
|
|
|
.task-detail-meta-item .icon {
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
/* Task Detail Scroll */
|
|
.task-detail-scroll {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 20px 24px;
|
|
}
|
|
|
|
/* Decision Required Section */
|
|
.decision-required-section {
|
|
background: rgba(245, 158, 11, 0.08);
|
|
border: 1px solid rgba(245, 158, 11, 0.25);
|
|
border-radius: var(--sentient-radius-lg);
|
|
padding: 16px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.decision-required-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.decision-required-icon {
|
|
width: 28px;
|
|
height: 28px;
|
|
background: rgba(245, 158, 11, 0.2);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--sentient-warning);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.decision-required-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--sentient-warning);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.decision-required-description {
|
|
font-size: 14px;
|
|
color: var(--sentient-text-secondary);
|
|
margin-bottom: 16px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.decision-options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.decision-option {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
background: var(--sentient-bg-tertiary);
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-md);
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.decision-option:hover {
|
|
border-color: var(--sentient-accent);
|
|
background: var(--sentient-accent-dim);
|
|
}
|
|
|
|
.decision-option.selected {
|
|
border-color: var(--sentient-accent);
|
|
background: var(--sentient-accent-dim);
|
|
}
|
|
|
|
.decision-option-radio {
|
|
width: 18px;
|
|
height: 18px;
|
|
border: 2px solid var(--sentient-border-hover);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.decision-option.selected .decision-option-radio {
|
|
border-color: var(--sentient-accent);
|
|
}
|
|
|
|
.decision-option.selected .decision-option-radio::after {
|
|
content: "";
|
|
width: 8px;
|
|
height: 8px;
|
|
background: var(--sentient-accent);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.decision-option-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.decision-option-label {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--sentient-text-primary);
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.decision-option-desc {
|
|
font-size: 12px;
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.decision-actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.decision-btn {
|
|
flex: 1;
|
|
padding: 10px 16px;
|
|
border-radius: var(--sentient-radius-md);
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.decision-btn-primary {
|
|
background: var(--sentient-accent);
|
|
border: none;
|
|
color: #000;
|
|
}
|
|
|
|
.decision-btn-primary:hover {
|
|
background: #d4ff4a;
|
|
box-shadow: var(--sentient-shadow-glow);
|
|
}
|
|
|
|
.decision-btn-secondary {
|
|
background: transparent;
|
|
border: 1px solid var(--sentient-border);
|
|
color: var(--sentient-text-secondary);
|
|
}
|
|
|
|
.decision-btn-secondary:hover {
|
|
background: var(--sentient-bg-tertiary);
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
/* Progress Log Section */
|
|
.progress-log-section {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.progress-log-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.progress-log-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--sentient-text-primary);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.progress-log-toggle {
|
|
background: none;
|
|
border: none;
|
|
color: var(--sentient-text-muted);
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.progress-log-toggle:hover {
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
/* Step Items */
|
|
.step-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.step-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
background: var(--sentient-bg-tertiary);
|
|
border-radius: var(--sentient-radius-sm);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.step-item:first-child {
|
|
border-radius: var(--sentient-radius-md) var(--sentient-radius-md)
|
|
var(--sentient-radius-sm) var(--sentient-radius-sm);
|
|
}
|
|
|
|
.step-item:last-child {
|
|
border-radius: var(--sentient-radius-sm) var(--sentient-radius-sm)
|
|
var(--sentient-radius-md) var(--sentient-radius-md);
|
|
}
|
|
|
|
.step-item:only-child {
|
|
border-radius: var(--sentient-radius-md);
|
|
}
|
|
|
|
.step-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
font-size: 12px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.step-item.completed .step-icon {
|
|
background: var(--sentient-success);
|
|
color: #000;
|
|
}
|
|
|
|
.step-item.active .step-icon {
|
|
background: var(--sentient-accent);
|
|
color: #000;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.step-item.pending .step-icon {
|
|
background: var(--sentient-bg-hover);
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.step-item.error .step-icon {
|
|
background: var(--sentient-error);
|
|
color: #fff;
|
|
}
|
|
|
|
.step-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.step-name {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--sentient-text-primary);
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.step-item.pending .step-name {
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.step-detail {
|
|
font-size: 12px;
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
.step-time {
|
|
font-size: 11px;
|
|
color: var(--sentient-text-muted);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* =============================================================================
|
|
LIVE AGENT ACTIVITY (TERMINAL)
|
|
============================================================================= */
|
|
|
|
.agent-activity-section {
|
|
border-top: 1px solid var(--sentient-border);
|
|
background: var(--sentient-bg-primary);
|
|
}
|
|
|
|
.agent-activity-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 12px 24px;
|
|
background: var(--sentient-bg-secondary);
|
|
border-bottom: 1px solid var(--sentient-border);
|
|
}
|
|
|
|
.agent-activity-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--sentient-text-secondary);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.agent-status-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
background: var(--sentient-accent);
|
|
border-radius: 50%;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.agent-activity-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.agent-activity-btn {
|
|
padding: 4px 8px;
|
|
background: transparent;
|
|
border: 1px solid var(--sentient-border);
|
|
border-radius: var(--sentient-radius-sm);
|
|
color: var(--sentient-text-muted);
|
|
font-size: 11px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.agent-activity-btn:hover {
|
|
background: var(--sentient-bg-tertiary);
|
|
color: var(--sentient-text-primary);
|
|
}
|
|
|
|
.agent-activity-log {
|
|
padding: 16px 24px;
|
|
max-height: 180px;
|
|
overflow-y: auto;
|
|
font-family: var(--sentient-font-mono);
|
|
font-size: 12px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.activity-line {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 3px 0;
|
|
}
|
|
|
|
.activity-timestamp {
|
|
color: var(--sentient-text-muted);
|
|
min-width: 65px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.activity-message {
|
|
color: var(--sentient-text-secondary);
|
|
}
|
|
|
|
.activity-line.success .activity-message {
|
|
color: var(--sentient-success);
|
|
}
|
|
|
|
.activity-line.warning .activity-message {
|
|
color: var(--sentient-warning);
|
|
}
|
|
|
|
.activity-line.error .activity-message {
|
|
color: var(--sentient-error);
|
|
}
|
|
|
|
.activity-line.accent .activity-message {
|
|
color: var(--sentient-accent);
|
|
}
|
|
|
|
.activity-line.info .activity-message {
|
|
color: var(--sentient-info);
|
|
}
|
|
|
|
/* =============================================================================
|
|
EMPTY STATE
|
|
============================================================================= */
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 60px 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.empty-state-icon {
|
|
font-size: 48px;
|
|
margin-bottom: 16px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.empty-state-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--sentient-text-primary);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.empty-state-description {
|
|
font-size: 14px;
|
|
color: var(--sentient-text-muted);
|
|
max-width: 280px;
|
|
}
|
|
|
|
/* =============================================================================
|
|
LOADING STATE
|
|
============================================================================= */
|
|
|
|
.loading-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 60px 40px;
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: 3px solid var(--sentient-bg-tertiary);
|
|
border-top-color: var(--sentient-accent);
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.loading-text {
|
|
font-size: 14px;
|
|
color: var(--sentient-text-muted);
|
|
}
|
|
|
|
/* =============================================================================
|
|
RESPONSIVE
|
|
============================================================================= */
|
|
|
|
@media (max-width: 1024px) {
|
|
.task-detail-panel {
|
|
width: 380px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tasks-main {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.tasks-list-panel {
|
|
border-right: none;
|
|
border-bottom: 1px solid var(--sentient-border);
|
|
max-height: 50vh;
|
|
}
|
|
|
|
.task-detail-panel {
|
|
width: 100%;
|
|
flex: 1;
|
|
}
|
|
|
|
.topbar-center {
|
|
display: none;
|
|
}
|
|
|
|
.topbar-nav {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* =============================================================================
|
|
HTMX LOADING STATES
|
|
============================================================================= */
|
|
|
|
.htmx-request .task-card {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.htmx-request .status-pill {
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* =============================================================================
|
|
ANIMATIONS
|
|
============================================================================= */
|
|
|
|
.task-card {
|
|
animation: fadeIn 0.3s ease;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(8px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|