42 lines
2.2 KiB
HTML
42 lines
2.2 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<html><head><meta charset="utf-8">
|
||
|
|
<style>
|
||
|
|
:root { color-scheme: light dark; font-family: system-ui, sans-serif; }
|
||
|
|
html, body { margin: 0; background: transparent; }
|
||
|
|
.menu { background: #1c222c; border: 1px solid #ffffff26; border-radius: 10px; box-shadow: 0 12px 34px #000c; overflow: hidden; color: #e7eaf1; }
|
||
|
|
.hdr { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: #8b98a9; padding: 10px 14px 6px; }
|
||
|
|
.item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; cursor: pointer; font-size: 13px; }
|
||
|
|
.item:hover { background: #ffffff12; }
|
||
|
|
.item .ic { font-size: 14px; }
|
||
|
|
.item .txt { flex: 1; overflow: hidden; }
|
||
|
|
.item .u { color: #e7eaf1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||
|
|
.item .d { color: #7f8aa0; font-size: 11.5px; }
|
||
|
|
.empty { padding: 14px; color: #7f8aa0; font-size: 12.5px; text-align: center; }
|
||
|
|
@media (prefers-color-scheme: light) {
|
||
|
|
.menu { background: #ffffff; border-color: rgba(0,0,0,.15); color: #1a1f28; }
|
||
|
|
.item:hover { background: rgba(0,0,0,.05); }
|
||
|
|
.item .u { color: #1a1f28; } .item .d, .hdr, .empty { color: #7b8494; }
|
||
|
|
}
|
||
|
|
</style></head>
|
||
|
|
<body>
|
||
|
|
<div class="menu">
|
||
|
|
<div class="hdr">Fill password for this site</div>
|
||
|
|
<div id="list"></div>
|
||
|
|
</div>
|
||
|
|
<script>
|
||
|
|
const $ = (id) => document.getElementById(id);
|
||
|
|
const esc = (s) => String(s || "").replace(/</g, "<");
|
||
|
|
function report() { requestAnimationFrame(() => { try { window.pwfill.resize(document.querySelector(".menu").offsetHeight); } catch (e) {} }); }
|
||
|
|
window.pwfill.onMatches((data) => {
|
||
|
|
const list = $("list");
|
||
|
|
const matches = data.matches || [];
|
||
|
|
if (!matches.length) { list.innerHTML = `<div class="empty">No saved credentials for this site.</div>`; report(); return; }
|
||
|
|
list.innerHTML = matches.map((m) =>
|
||
|
|
`<div class="item" data-id="${esc(m.id)}"><span class="ic">🔑</span><span class="txt"><div class="u">${esc(m.username || "(no username)")}</div><div class="d">${esc(m.domain)}</div></span></div>`
|
||
|
|
).join("");
|
||
|
|
list.querySelectorAll(".item").forEach((el) => el.onclick = () => window.pwfill.pick(el.dataset.id));
|
||
|
|
report();
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
</body></html>
|