I guess
https://github.com/protz/GMail-Conversation-View/wiki/Fonts
applies to your case, since the Conversations UI also comes inside a
XUL iframe.
The interface of Thunderbird is styled to use sans-serif, and when
outputting a message, we add special CSS classes ("moz-txt-plain" for
instance) so that the message displays in sans-serif, but the contents
of a XUL iframe remain a *web page*, and therefore, are subject to the
same restrictions that any web page in, say, Firefox : the default font
is that chosen in the font preferences dialog. (Preferences > Display >
Formatting > Advanced). Web pages style their contents with CSS such as:
html {
font-family: sans-serif;
}
If you want the same for you iframe, you need to explicitly say so, or
have your addon flip the default font preferences (that's a bad idea,
though).
jonathan
> _______________________________________________
> dev-extensions mailing list
>
dev-ext...@lists.mozilla.org
>
https://lists.mozilla.org/listinfo/dev-extensions