I have just noticed that the option "Use a fixed font for mail bodies"
has ceased to work for the edit box.
Most probably Google changed something in Gmail...
Yes. They changed the class for textarea from dV to Ak.
I have prepared a css which solves this problem. Moreover, when used
with Google Labs feature to show messages in fixed font, it toggles
the display from fixed to proportional and vice versa.
@-moz-document domain(mail.google.com) {
/* GMail messages and textarea should use fixed-width font */
textarea.Ak, div.ii.gt {
font-family: monospace !important;
font-size: 9pt !important;
}
/* when switched to fixed font (Google Labs feature) use sans-
serif instead */
div.ii.gt.gu {
font-family: sans-serif !important;
font-size: 10pt !important;
}
}
On Oct 28, 1:24 am, mik <michal.kaczmarc...@gmail.com> wrote:
> I have just noticed that the option "Use a fixed font for mail bodies"
> has ceased to work for the edit box.
> Most probably Google changed something in Gmail...