@bobfrankston/rmfmail 1.1.70 → 1.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/app.bundle.js +1 -1
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +3 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +3 -1
- package/client/styles/components.css +10 -4
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-43832 → node_modules.npmglobalize-stash-74204}/.package-lock.json +0 -0
package/client/app.ts
CHANGED
|
@@ -2436,7 +2436,9 @@ onWsEvent((event) => {
|
|
|
2436
2436
|
const text = document.getElementById("alert-text");
|
|
2437
2437
|
if (banner && text) {
|
|
2438
2438
|
banner.hidden = false;
|
|
2439
|
-
banner
|
|
2439
|
+
// Green update banner — matches the Android update bar Bob
|
|
2440
|
+
// likes (was blue, oklch hue 250).
|
|
2441
|
+
banner.style.background = "oklch(0.52 0.14 150)";
|
|
2440
2442
|
// Stash the update banner contents so updateFailed can restore
|
|
2441
2443
|
// it (offering a retry) instead of leaving "Updating..." pinned.
|
|
2442
2444
|
const restoreHtml = `${APP_NAME} ${event.latest} available (you have ${event.current}) — <button id="btn-do-update" style="background:none;border:1px solid #fff;color:#fff;padding:0.15em 0.5em;border-radius:3px;cursor:pointer;margin-left:0.5em">Update now</button>`;
|
|
@@ -615,14 +615,20 @@ button.tb-menu-item { background: none; border: none; color: inherit; width: 100
|
|
|
615
615
|
.ml-row.flagged { background: color-mix(in oklch, oklch(0.75 0.15 60) 8%, transparent); }
|
|
616
616
|
|
|
617
617
|
/* Priority sender — strongest signal while unread; fades after read so
|
|
618
|
-
the visual cue doesn't shout forever.
|
|
618
|
+
the visual cue doesn't shout forever. A bold full-height gold left bar
|
|
619
|
+
plus a gold row tint make the whole entry read as priority at a glance
|
|
620
|
+
(Bob 2026-05-17: "more visible when on, the entry shown distinctively"). */
|
|
619
621
|
.ml-row.priority {
|
|
620
|
-
border-left:
|
|
621
|
-
padding-left: calc(var(--gap-sm, 8px) -
|
|
622
|
+
border-left: 5px solid oklch(0.78 0.16 90);
|
|
623
|
+
padding-left: calc(var(--gap-sm, 8px) - 5px);
|
|
624
|
+
background: color-mix(in oklch, oklch(0.78 0.16 90) 8%, transparent);
|
|
625
|
+
}
|
|
626
|
+
.ml-row.priority.unread {
|
|
627
|
+
background: color-mix(in oklch, oklch(0.78 0.16 90) 16%, transparent);
|
|
622
628
|
}
|
|
623
629
|
.ml-row.priority.unread .ml-from { color: oklch(0.62 0.18 80); font-weight: 700; }
|
|
624
630
|
.ml-row.priority:not(.unread) {
|
|
625
|
-
border-left-color: color-mix(in oklch, oklch(0.78 0.16 90)
|
|
631
|
+
border-left-color: color-mix(in oklch, oklch(0.78 0.16 90) 45%, transparent);
|
|
626
632
|
}
|
|
627
633
|
.priority-only .ml-row:not(.priority) { display: none; }
|
|
628
634
|
|
package/package.json
CHANGED