Closed
Bug 917683
Opened 11 years ago
Closed 11 years ago
comment text still too small in gmail
Categories
(bugzilla.mozilla.org :: General, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: glob, Assigned: glob)
References
Details
evidently gmail now has limited support for parsing <style>, rending the work-around in bug 892382 impotent.
after much experimentation it looks like gmail doesn't support styles using class selectors, meaning we can do:
<style>
.comment { font-size: 100% !important; }
</style>
...
<pre class="comment" style="font-size: 120%">...</pre>
Committing to: bzr+ssh://bjones%40mozilla.com@bzr.mozilla.org/bmo/4.2/
modified extensions/BMO/template/en/default/email/bugmail.html.tmpl
Committed revision 9016.
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Comment 2•11 years ago
|
||
<style>
pre { font-size: 120%; }
.comment { font-size: 100%; }
</style>
should also work without relying on !important
See Also: → 1306695
You need to log in
before you can comment on or make changes to this bug.
Description
•