04/26 Enhanced extension functions

This commit is contained in:
2026-04-26 09:44:54 -04:00
parent 747a9124c2
commit 194601e461
5 changed files with 1470 additions and 13 deletions
+41
View File
@@ -931,4 +931,45 @@ body {
.totp-btn:hover {
background: #e0f2fe;
color: #0369a1;
}
/* ── Three-dot flyout menu ───────────────────────────────────────────────── */
.pk-flyout {
position: absolute;
top: calc(100% + 4px);
right: 0;
z-index: 9999;
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 8px;
box-shadow: 0 4px 16px rgba(0,0,0,0.13);
min-width: 150px;
padding: 4px 0;
display: flex;
flex-direction: column;
}
.pk-flyout-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
background: none;
border: none;
cursor: pointer;
font-size: 12px;
color: #374151;
text-align: left;
width: 100%;
transition: background 0.1s;
}
.pk-flyout-item:hover {
background: #f3f4f6;
color: #111827;
}
.pk-flyout-item svg {
flex-shrink: 0;
color: #6b7280;
}