mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
feat: enhance workflow session management with status updates and CSS styling
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user