Comprehensive UX audit fixes: navigation, feedback, affordances, and accessibility
CI / build-and-push (push) Successful in 28s
CI / build-and-push (push) Successful in 28s
Address 18 issues across high/medium/low impact tiers identified in a full interface review. Key changes: Models page decomposed into tabs, confirmation dialogs for irreversible actions (deploy/open-source/acquire), chart Y-axes made visible, hash router extended for Market tab persistence, collapsible sidebar, keyboard navigation shortcuts (g+key chords), notification bulk actions, achievement progress bars, and ARIA label improvements. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -233,7 +233,10 @@ function ClustersListView() {
|
||||
<button
|
||||
key={cluster.id}
|
||||
onClick={() => cluster.status === 'operational' && setNav({ level: 'cluster', clusterId: cluster.id })}
|
||||
className="bg-surface-800 border border-surface-700 rounded-xl p-5 text-left hover:border-accent/50 transition-colors"
|
||||
className={`bg-surface-800 border border-surface-700 rounded-xl p-5 text-left transition-colors ${
|
||||
cluster.status === 'operational' ? 'hover:border-accent/50 cursor-pointer' : 'cursor-default'
|
||||
}`}
|
||||
title={cluster.status === 'constructing' ? 'Available when construction completes' : undefined}
|
||||
>
|
||||
<div className="flex items-center justify-between mb-3">
|
||||
<div className="flex items-center gap-2">
|
||||
|
||||
Reference in New Issue
Block a user