style(ext/vault): migrate .btn:focus to :focus-visible + var(--focus-ring)

Code-review feedback on Task 3: vault button focus was the last
hardcoded #d2ab43 + bare :focus rule not yet migrated. Brings vault
button focus into parity with popup (which Task 2 already migrated)
and removes the last raw accent literal from the focus-related rules.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-30 20:42:24 -04:00
parent f0d8758a80
commit 6e720554fa

View File

@@ -134,9 +134,9 @@ body {
background: #30363d;
}
.btn:focus {
outline: 1px solid #d2ab43;
outline-offset: 1px;
.btn:focus-visible {
outline: none;
box-shadow: var(--focus-ring);
}
.btn-primary {