diff --git a/docs/superpowers/plans/2026-04-19-ui-uniformity.md b/docs/superpowers/plans/2026-04-19-ui-uniformity.md index 1d979239..06969df9 100644 --- a/docs/superpowers/plans/2026-04-19-ui-uniformity.md +++ b/docs/superpowers/plans/2026-04-19-ui-uniformity.md @@ -53,7 +53,7 @@ Mark each step `[x]` when complete. Commit the file with the step. - [x] **Step 4** — Fix: `app/inventory/page.tsx` text tokens - [x] **Step 5** — Fix: `app/admin/page.tsx` + `app/logs/page.tsx` text tokens - [x] **Step 6** — Fix: `components/AdminOverlay.tsx` text tokens -- [ ] **Step 7** — Fix: `components/IdentityCheckOverlay.tsx` text tokens +- [x] **Step 7** — Fix: `components/IdentityCheckOverlay.tsx` text tokens - [ ] **Step 8** — Fix: `components/Scanner.tsx` + `components/AIOnboarding.tsx` - [ ] **Step 9** — Fix: `components/admin/` (all 5 files) - [ ] **Step 10** — Fix: Modals (`CreateUserModal`, `ConfirmationModal`, `CategoryCreationModal`, `ItemComparisonModal`) diff --git a/frontend/components/IdentityCheckOverlay.tsx b/frontend/components/IdentityCheckOverlay.tsx index 9d826e82..226744c8 100644 --- a/frontend/components/IdentityCheckOverlay.tsx +++ b/frontend/components/IdentityCheckOverlay.tsx @@ -86,11 +86,11 @@ const IdentityCheckOverlay = memo(({ show, users, onAuthenticated }: IdentityChe {user.role === 'admin' ? : }
-

{user.username}

+

{user.username}

{user.role}

-
+
@@ -126,7 +126,7 @@ const IdentityCheckOverlay = memo(({ show, users, onAuthenticated }: IdentityChe data-testid="username-input" type="text" autoFocus - className="w-full bg-background/50 border border-slate-800/80 focus:border-primary/50 focus:bg-background rounded-[1.25rem] py-4.5 pl-14 pr-5 text-sm text-slate-100 focus:outline-none transition-all placeholder:text-slate-700 font-mono" + className="w-full bg-background/50 border border-slate-800/80 focus:border-primary/50 focus:bg-background rounded-[1.25rem] py-4.5 pl-14 pr-5 text-sm text-secondary focus:outline-none transition-all placeholder:text-muted font-mono" placeholder="DIRECTORY ID" />
@@ -140,7 +140,7 @@ const IdentityCheckOverlay = memo(({ show, users, onAuthenticated }: IdentityChe data-testid="password-input" type="password" onKeyDown={(e) => e.key === 'Enter' && handleLogin()} - className="w-full bg-background/50 border border-slate-800/80 focus:border-primary/50 focus:bg-background rounded-[1.25rem] py-4.5 pl-14 pr-5 text-sm text-slate-100 focus:outline-none transition-all placeholder:text-slate-700 font-mono" + className="w-full bg-background/50 border border-slate-800/80 focus:border-primary/50 focus:bg-background rounded-[1.25rem] py-4.5 pl-14 pr-5 text-sm text-secondary focus:outline-none transition-all placeholder:text-muted font-mono" placeholder="••••••••" /> @@ -184,7 +184,7 @@ const IdentityCheckOverlay = memo(({ show, users, onAuthenticated }: IdentityChe type="password" autoFocus onKeyDown={(e) => e.key === 'Enter' && handleLogin()} - className="w-full bg-background/50 border border-slate-800/80 focus:border-primary/50 focus:bg-background rounded-[1.25rem] py-4.5 pl-14 pr-5 text-sm text-slate-100 focus:outline-none transition-all placeholder:text-slate-700 font-mono" + className="w-full bg-background/50 border border-slate-800/80 focus:border-primary/50 focus:bg-background rounded-[1.25rem] py-4.5 pl-14 pr-5 text-sm text-secondary focus:outline-none transition-all placeholder:text-muted font-mono" placeholder="KEY-PHRASE" /> @@ -202,7 +202,7 @@ const IdentityCheckOverlay = memo(({ show, users, onAuthenticated }: IdentityChe {users.length === 0 && ( -
+
Synchronizing User Tokens...
)}