feat(ext/setup): vault-presence probe + mode-mismatch banners on Step 2

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken
2026-04-27 18:22:45 -04:00
parent a182c1ac5a
commit f44aedfa76
2 changed files with 87 additions and 1 deletions

View File

@@ -1256,3 +1256,23 @@ textarea {
.mode-card.active { border-color: #58a6ff; background: rgba(88,166,255,0.08); }
.mode-card-title { font-weight: 600; margin-bottom: 4px; font-size: 14px; }
.mode-card-blurb { color: #8b949e; font-size: 12px; margin: 0; line-height: 1.5; }
/* --- Setup wizard probe banners (Step 2) --- */
.banner { padding: 12px; border-radius: 6px; margin: 12px 0; font-size: 13px; }
.banner-ok {
background: rgba(46,160,67,0.10);
border: 1px solid rgba(46,160,67,0.4);
}
.banner-warn {
background: rgba(218,54,51,0.08);
border: 1px solid rgba(218,54,51,0.4);
}
.banner strong { display: block; margin-bottom: 4px; }
.banner p { margin: 6px 0; line-height: 1.5; color: #c9d1d9; }
.banner code {
font-family: ui-monospace, SFMono-Regular, monospace;
font-size: 12px;
background: #21262d;
padding: 1px 5px;
border-radius: 3px;
}