Fixed width and spacing in plain text email (#278)

This commit is contained in:
RainLoop Team 2014-08-19 16:27:25 +04:00
parent 69e3ebb146
commit 860bf3be74
4 changed files with 7 additions and 1 deletions

View file

@ -333,6 +333,8 @@ html.rl-no-preview-pane {
&.plain { &.plain {
padding: 15px; padding: 15px;
white-space: pre-wrap;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
pre { pre {
margin: 0px; margin: 0px;

View file

@ -14,6 +14,7 @@
padding: 10px; padding: 10px;
padding-right: 0; padding-right: 0;
/*font-family: arial, sans-serif;*/ /*font-family: arial, sans-serif;*/
white-space: pre-wrap;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
font-size: 13px; font-size: 13px;
line-height: 16px; line-height: 16px;

View file

@ -6603,6 +6603,7 @@ html.no-rgba .modal {
padding: 10px; padding: 10px;
padding-right: 0; padding-right: 0;
/*font-family: arial, sans-serif;*/ /*font-family: arial, sans-serif;*/
white-space: pre-wrap;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
font-size: 13px; font-size: 13px;
line-height: 16px; line-height: 16px;
@ -8363,6 +8364,8 @@ html.rl-no-preview-pane .messageView.message-selected {
} }
.messageView .b-content .messageItem .bodyText .b-text-part.plain { .messageView .b-content .messageItem .bodyText .b-text-part.plain {
padding: 15px; padding: 15px;
white-space: pre-wrap;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
} }
.messageView .b-content .messageItem .bodyText .b-text-part.plain pre { .messageView .b-content .messageItem .bodyText .b-text-part.plain pre {
margin: 0px; margin: 0px;

File diff suppressed because one or more lines are too long