@bobfrankston/rmfmail 1.1.233 → 1.1.235
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 +9 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-viewer.js +9 -1
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +9 -1
- package/package.json +1 -1
- package/packages/mailx-store/store.d.ts.map +1 -1
- package/packages/mailx-store/store.js +31 -10
- package/packages/mailx-store/store.js.map +1 -1
- package/packages/mailx-store/store.ts +32 -11
package/client/app.bundle.js
CHANGED
|
@@ -2123,7 +2123,15 @@ ${csp}
|
|
|
2123
2123
|
word-break: break-word;
|
|
2124
2124
|
color-scheme: dark light;
|
|
2125
2125
|
}
|
|
2126
|
-
|
|
2126
|
+
/* max-width keeps wide images inside the pane; modern WebView2 preserves
|
|
2127
|
+
aspect ratio from the width/height attributes automatically when it
|
|
2128
|
+
shrinks them, so we must NOT force height:auto. Forcing it overrode the
|
|
2129
|
+
explicit pixel height on sliced layout images (e.g. a 12x226 rounded-
|
|
2130
|
+
corner slice) \u2014 when an email's responsive @media rule widened the
|
|
2131
|
+
slice's cell, height:auto recomputed height from the tall aspect ratio
|
|
2132
|
+
and ballooned the slice to full-page height, pushing all text far below
|
|
2133
|
+
the fold (Bob 2026-06-10: Chase fraud-alert "scroll way down to see text"). */
|
|
2134
|
+
img { max-width: 100%; }
|
|
2127
2135
|
a { color: #1a6dd4; }
|
|
2128
2136
|
pre, code { white-space: pre-wrap; }
|
|
2129
2137
|
blockquote { border-left: 3px solid #ccc; padding-left: 1rem; margin-left: 0; color: #666; }
|