diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-13 09:40:56 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-13 09:40:56 +0000 |
| commit | a370599e264fe308e97a5974aae85863eeae9b88 (patch) | |
| tree | a0602c666f1480aa88487c7dd9987c9be7b3ffcf /web/index.html | |
| parent | 03f8b0e8b1aef2429f825b300c427147c30d4b0b (diff) | |
feat: replace tab labels with emoji icons
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/index.html')
| -rw-r--r-- | web/index.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/web/index.html b/web/index.html index fd7228a..d56dcb3 100644 --- a/web/index.html +++ b/web/index.html @@ -15,13 +15,13 @@ <button id="btn-new-task" class="btn-primary">New Task</button> </header> <nav class="tab-bar"> - <button class="tab active" data-tab="queue">Queue</button> - <button class="tab" data-tab="interrupted">Interrupted</button> - <button class="tab" data-tab="ready">Ready</button> - <button class="tab" data-tab="running">Running</button> - <button class="tab" data-tab="all">All</button> - <button class="tab" data-tab="stats">Stats</button> - <button class="tab" data-tab="settings">Settings</button> + <button class="tab active" data-tab="queue" title="Queue">⏳</button> + <button class="tab" data-tab="interrupted" title="Interrupted">⚠️</button> + <button class="tab" data-tab="ready" title="Ready">✅</button> + <button class="tab" data-tab="running" title="Running">▶️</button> + <button class="tab" data-tab="all" title="All">☰</button> + <button class="tab" data-tab="stats" title="Stats">📊</button> + <button class="tab" data-tab="settings" title="Settings">⚙️</button> </nav> <main id="app"> <div data-panel="queue"> |
