Closed
Bug 241650
Opened 22 years ago
Closed 22 years ago
userContent.css not honoured by all Mail/News.
Categories
(SeaMonkey :: MailNews: Message Display, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: tschweikle, Assigned: sspitzer)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113
Not all Mail/News opend honour font size and family set via userContent.css. Put
.moz-text-plain pre {
font-size: 8pt ! important;
font-family: Arial ! important;
}
into "userContent.css". Restart Mozilla. Now switch between various mail or
news-postings. Some honour the settings done. Some not.
Reproducible: Always
Steps to Reproduce:
1. Put
.moz-text-plain pre {
font-size: 8pt ! important;
font-family: Arial ! important;
}
into "userContent.css".
2. Restart Mozilla.
3.
Actual Results:
Some Mail / News-Postings honour style settings done, some not.
Expected Results:
It should have honoured the settings made in "userContent.css" for all mail and
news-postings.
Comment 1•22 years ago
|
||
Not every plain-text message is broken down into .moz-text-plain pre blocks.
If the message has been sent with (and displayed with) format=flowed, the text
is in a DIV of class="moz-text-flowed", with no <pre> sub-blocks.
You can use the DOM inspector to inspect a message window; tunnel down into the
'vbox' element with id 'messagesBox' into the 'browser' subelement; then you can
examine the items in the BODY to see what their classes, ids and styles are.
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → INVALID
| Reporter | ||
Comment 2•22 years ago
|
||
does this imply better using
* {
font-size: 8pt !important;
}
to catch all text definition tags possible?
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•