diff options
author | Byron Jones <bjones@mozilla.com> | 2013-09-18 09:48:54 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-09-18 09:48:54 +0200 |
commit | 3727844fe627a5bb9365ce461c13d1ff5e82d1a2 (patch) | |
tree | 0ebd8d2f726cafc7a2caa11d3e9a205f15238ab6 | |
parent | 71fec1ecba98f708e733aa26ed051b1c12a60029 (diff) | |
download | bugzilla-3727844fe627a5bb9365ce461c13d1ff5e82d1a2.tar.gz bugzilla-3727844fe627a5bb9365ce461c13d1ff5e82d1a2.tar.xz |
Bug 917683: comment text still too small in gmail
-rw-r--r-- | extensions/BMO/template/en/default/email/bugmail.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/BMO/template/en/default/email/bugmail.html.tmpl b/extensions/BMO/template/en/default/email/bugmail.html.tmpl index 1b5be1adc..e84852289 100644 --- a/extensions/BMO/template/en/default/email/bugmail.html.tmpl +++ b/extensions/BMO/template/en/default/email/bugmail.html.tmpl @@ -14,7 +14,7 @@ <head> <base href="[% urlbase FILTER html %]"> <style> - pre { font-size: 100% !important; } + .comment { font-size: 100% !important; } </style> </head> <body style="font-family: sans-serif"> @@ -48,7 +48,7 @@ at [% comment.creation_ts FILTER time(undef, to_user.timezone) %] </b> [% END %] - <pre style="font-size: 120%">[% comment.body_full({ wrap => 1 }) FILTER quoteUrls(bug, comment) %]</pre> + <pre class="comment" style="font-size: 120%">[% comment.body_full({ wrap => 1 }) FILTER quoteUrls(bug, comment) %]</pre> </div> [% END %] </div> |