@bobfrankston/rmfmail 1.1.234 → 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.
@@ -2123,7 +2123,15 @@ ${csp}
2123
2123
  word-break: break-word;
2124
2124
  color-scheme: dark light;
2125
2125
  }
2126
- img { max-width: 100%; height: auto; }
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; }