feat: Add specialized tool cards for transcript-debug and glassmorphism bubbles

Add toolCards/ with rich visual cards for 10 tool types:
- AskUserQuestion, ExitPlanMode, EnterPlanMode
- Read, Write, Bash, Edit
- Grep, Glob
- Task/TaskCreate/TaskUpdate/TaskGet/TaskList (unified TaskCard)

Add MarkdownContent component and markdown/syntax highlight utils.
Make user/assistant bubbles transparent with backdrop blur.
This commit is contained in:
2026-02-19 02:45:53 -06:00
parent 159a38e3c2
commit 4ab1d03370
17 changed files with 2925 additions and 18 deletions

View File

@@ -33,8 +33,10 @@ function formatTime(ts: string): string {
<style scoped>
.user-bubble {
background: rgba(99, 102, 241, 0.08);
border: 1px solid rgba(99, 102, 241, 0.2);
background: rgba(99, 102, 241, 0.04);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border: 1px solid rgba(99, 102, 241, 0.12);
border-radius: 12px;
padding: 0.75rem 1rem;
margin-left: 2rem;