05/07: updated extension after updating Advanced Settings to functioning

This commit is contained in:
2026-05-07 14:15:35 -04:00
parent f71032096b
commit 5d0acf696c
3 changed files with 184 additions and 22 deletions
+49
View File
@@ -1045,3 +1045,52 @@ body {
font-size: 11px;
margin-left: 4px;
}
/* ── Master-password reprompt overlay ────────────────────────────── */
.reprompt-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 99999;
padding: 16px;
}
.reprompt-card {
background: #fff;
border-radius: 12px;
padding: 18px 16px 14px;
width: 100%;
max-width: 290px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.reprompt-header {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 700;
color: #1a1a2e;
margin-bottom: 6px;
}
.reprompt-desc {
font-size: 11px;
color: #6b7280;
margin-bottom: 12px;
line-height: 1.45;
}
.reprompt-actions {
display: flex;
gap: 8px;
margin-top: 10px;
}
.reprompt-actions .btn-primary,
.reprompt-actions .btn-ghost {
margin-top: 0;
}