Fix wrapping/sizing of message bodies with long unbreakable text.

This commit is contained in:
Bill Thiede 2024-01-06 08:52:19 -08:00
parent 33ec63f097
commit a0b0689e01

View File

@ -10,7 +10,9 @@
<style> <style>
.message { .message {
padding: 0.5em;*/ display: inline-block;
padding: 0.5em;
width: 100%;
} }
.message .headers { .message .headers {
width: 100%; width: 100%;
@ -27,12 +29,15 @@
margin-left: -0.5em; margin-left: -0.5em;
margin-right: -0.5em; margin-right: -0.5em;
margin-top: 0.5em; margin-top: 0.5em;
width:0;
min-width:100%;
} }
.error { .error {
background-color: red; background-color: red;
} }
.view-part-text-plain { .view-part-text-plain {
white-space: pre-line; white-space: pre-line;
overflow-wrap: break-word;
} }
iframe { iframe {
height: 100%; height: 100%;