Compare commits

...

1 Commits

Author SHA1 Message Date
core-uiux db65a0d4f9 fix(canvas): WCAG 1.1.1 + 2.4.7 scattered accessibility fixes
sop-tier-check / tier-check (pull_request) Waiting to run
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 3s
CI / Detect changes (pull_request) Successful in 6s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 14s
E2E API Smoke Test / detect-changes (pull_request) Successful in 12s
E2E Chat / detect-changes (pull_request) Successful in 12s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 12s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 6s
Harness Replays / detect-changes (pull_request) Successful in 6s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 9s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 9s
gate-check-v3 / gate-check (pull_request) Successful in 7s
qa-review / approved (pull_request) Failing after 6s
security-review / approved (pull_request) Failing after 6s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m8s
CI / Platform (Go) (pull_request) Successful in 6m9s
CI / Python Lint & Test (pull_request) Successful in 6m57s
CI / Canvas (Next.js) (pull_request) Successful in 7m55s
CI / all-required (pull_request) Successful in 7m34s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 2s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 5s
Harness Replays / Harness Replays (pull_request) Successful in 4s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 12s
CI / Canvas Deploy Reminder (pull_request) Has been skipped
E2E Chat / E2E Chat (pull_request) Failing after 5m35s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 8m18s
sop-checklist / all-items-acked (pull_request) [info tier:low] acked: 5/7 — missing: root-cause, no-backwards-compat — body-unfilled: comprehensive-testing, local-postgres-e2e, staging-sm
sop-checklist / na-declarations (pull_request) N/A: (none)
- ActivityTab: aria-hidden on decorative chevron (▼/▶) and arrow (→) — WCAG 1.1.1
- MemoryTab: aria-hidden on decorative chevron in memory row — WCAG 1.1.1
- WorkspaceNode: aria-hidden on decorative ↻ restart icon — WCAG 1.1.1
- MobileMe: focus-visible:ring-2 on segmented row buttons — WCAG 2.4.7

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-18 00:26:38 +00:00
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -323,7 +323,7 @@ export function WorkspaceNode({ id, data }: NodeProps<Node<WorkspaceNodeData>>)
}}
className="flex items-center gap-1.5 mt-1 w-full bg-accent/10 px-2 py-1 rounded-md border border-accent/40 hover:bg-accent/20 transition-colors text-left focus-visible:ring-2 focus-visible:ring-accent/70 focus-visible:outline-none"
>
<span className="text-[10px] text-accent"></span>
<span aria-hidden="true" className="text-[10px] text-accent"></span>
<span className="text-[10px] text-accent">Restart to apply changes</span>
</button>
)}
@@ -184,6 +184,7 @@ function SegmentedRow({
fontSize: 13,
fontWeight: 600,
}}
className="focus:outline-none focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-1"
>
{o.label}
</button>
+2 -2
View File
@@ -274,7 +274,7 @@ function ActivityRow({
{formatTime(entry.created_at)}
</span>
<span className="text-[9px] text-ink-mid">
<span aria-hidden="true" className="text-[9px] text-ink-mid">
{expanded ? "▼" : "▶"}
</span>
</div>
@@ -296,7 +296,7 @@ function ActivityRow({
{resolveName(entry.source_id)}
</span>
)}
<span className="text-[9px] text-ink-mid"></span>
<span aria-hidden="true" className="text-[9px] text-ink-mid"></span>
{entry.target_id && (
<span className="text-[9px] text-accent/80 truncate max-w-[140px]" title={entry.target_id}>
{resolveName(entry.target_id)}
+1 -1
View File
@@ -368,7 +368,7 @@ export function MemoryTab({ workspaceId }: Props) {
TTL {new Date(entry.expires_at).toLocaleString()}
</span>
)}
<span className="text-[10px] text-ink-mid">
<span aria-hidden="true" className="text-[10px] text-ink-mid">
{expanded === entry.key ? "▼" : "▶"}
</span>
</div>