Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .jules/palette.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 2026-03-25 - Add ARIA Labels to Icon-Only Buttons
**Learning:** Found several icon-only buttons across settings, tools and modals without aria-labels making them inaccessible to screen readers.
**Action:** Adding standard aria-label attributes that match their titles to improve accessibility.
12 changes: 6 additions & 6 deletions webui/components/modals/image-viewer/image-viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@

<!-- Fixed zoom controls - OUTSIDE the canvas -->
<div class="zoom-controls">
<button type="button" @click="$store.imageViewer.zoomOut()" class="button zoom-btn">
<span class="icon material-symbols-outlined">zoom_out</span>
<button type="button" @click="$store.imageViewer.zoomOut()" class="button zoom-btn" aria-label="Zoom out" title="Zoom out">
<span class="icon material-symbols-outlined" aria-hidden="true">zoom_out</span>
</button>
<button type="button" @click="$store.imageViewer.resetZoom()" class="button zoom-btn">
<span class="icon material-symbols-outlined">home</span>
<button type="button" @click="$store.imageViewer.resetZoom()" class="button zoom-btn" aria-label="Reset zoom" title="Reset zoom">
<span class="icon material-symbols-outlined" aria-hidden="true">home</span>
</button>
<button type="button" @click="$store.imageViewer.zoomIn()" class="button zoom-btn">
<span class="icon material-symbols-outlined">zoom_in</span>
<button type="button" @click="$store.imageViewer.zoomIn()" class="button zoom-btn" aria-label="Zoom in" title="Zoom in">
<span class="icon material-symbols-outlined" aria-hidden="true">zoom_in</span>
</button>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions webui/components/plugins/plugin-configs.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
<span class="icon material-symbols-outlined">list</span>
Show
</button>
<button type="button" class="button cancel icon-button" title="Delete" @click="$confirmClick($event, () => context.deleteConfig(cfg.project_name || '', cfg.agent_profile || ''))">
<span class="icon material-symbols-outlined">delete</span>
<button type="button" class="button cancel icon-button" title="Delete" aria-label="Delete" @click="$confirmClick($event, () => context.deleteConfig(cfg.project_name || '', cfg.agent_profile || ''))">
<span class="icon material-symbols-outlined" aria-hidden="true">delete</span>
</button>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions webui/components/plugins/toggle/plugin-toggles.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
<span class="icon material-symbols-outlined">edit</span>
Edit
</button>
<button type="button" class="button cancel icon-button" title="Delete" @click="$confirmClick($event, () => $store.pluginToggle.deleteConfig(cfg.path))">
<span class="icon material-symbols-outlined">delete</span>
<button type="button" class="button cancel icon-button" title="Delete" aria-label="Delete" @click="$confirmClick($event, () => $store.pluginToggle.deleteConfig(cfg.path))">
<span class="icon material-symbols-outlined" aria-hidden="true">delete</span>
</button>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions webui/components/settings/skills/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@
@click="$store.skillsListStore.openSkill(skill)">
<span class="icon material-symbols-outlined">folder_open</span> Open
</button>
<button type="button" class="button cancel icon-button" title="Delete"
<button type="button" class="button cancel icon-button" title="Delete" aria-label="Delete"
@click="$confirmClick($event, () => $store.skillsListStore.deleteSkill(skill))">
<span class="icon material-symbols-outlined">delete</span>
<span class="icon material-symbols-outlined" aria-hidden="true">delete</span>
</button>
</div>
</div>
Expand Down