feat: enhance workflow session management with status updates and CSS styling

This commit is contained in:
catlog22
2025-12-10 10:01:07 +08:00
parent 5114a942dc
commit 417f3c0f8c
8 changed files with 143 additions and 27 deletions

View File

@@ -60,6 +60,28 @@
color: hsl(var(--muted-foreground));
}
.session-status.planning {
background: hsl(260 70% 90%);
color: hsl(260 70% 45%);
animation: planning-pulse 2s ease-in-out infinite;
}
@keyframes planning-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
/* Planning card style - dashed border with subtle animation */
.session-card.planning {
border: 2px dashed hsl(260 70% 60%);
background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(260 70% 97%) 100%);
}
.session-card.planning:hover {
border-color: hsl(260 70% 50%);
box-shadow: 0 4px 12px hsl(260 70% 50% / 0.2);
}
.session-type-badge {
font-size: 0.65rem;
font-weight: 500;