@bobfrankston/rmfmail 1.2.101 → 1.2.102
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/TODO.md +2 -2
- package/client/app.bundle.js.map +1 -1
- package/client/app.js +4 -4
- package/client/app.js.map +1 -1
- package/client/app.ts +4 -4
- package/client/styles/components.css +39 -28
- package/package.json +1 -1
package/client/app.js
CHANGED
|
@@ -4542,10 +4542,10 @@ optTwoLine?.addEventListener("change", () => {
|
|
|
4542
4542
|
}
|
|
4543
4543
|
localStorage.setItem("mailx-two-line", String(optTwoLine.checked));
|
|
4544
4544
|
});
|
|
4545
|
-
// Eleanor view toggle — Thunderbird-classic
|
|
4546
|
-
// (
|
|
4547
|
-
// the row markup is unchanged. TODO.md: generalize into
|
|
4548
|
-
// control instead of a named preset.
|
|
4545
|
+
// Eleanor view toggle — Thunderbird-classic two-line card list at every
|
|
4546
|
+
// width (From … Date / Subject, outlined entries, airy, monochrome).
|
|
4547
|
+
// Pure CSS class; the row markup is unchanged. TODO.md: generalize into
|
|
4548
|
+
// per-column view control instead of a named preset.
|
|
4549
4549
|
function applyEleanorView(on) {
|
|
4550
4550
|
document.getElementById("message-list")?.classList.toggle("eleanor-view", on);
|
|
4551
4551
|
if (optEleanor)
|