Changes between Initial Version and Version 1 of Updates/Flow


Ignore:
Timestamp:
Mar 23, 2007, 12:12:06 AM (18 years ago)
Author:
Cory McWilliams
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Updates/Flow

    v1 v1  
     1= Colored Quote Bars =
     2It has long annoyed me that Thunderbird sometimes treats the '>' characters in excerpts from diffs as reply markers and draws a blue line instead of the actual characters from the E-mail.
     3
     4{{{
     5#!html
     6<img src="/share/flow-bars.png" id="emailFlowImg" style="float: right" />
     7}}}
     8
     9I finally found some talk about how to disable that feature [http://forums.mozillazine.org/viewtopic.php?t=86514 here].
     10
     11Put this in ''~/.thunderbird/*.default/chrome/userContent.css'':
     12{{{
     13  blockquote[type=cite] {
     14    padding-bottom: 0 ! important;
     15    padding-top: 0 ! important;
     16    padding-left: 0 ! important;
     17    border-left: none ! important;
     18    border-right: none ! important;
     19  }
     20}}}
     21
     22Set the following options:
     23{{{
     24  user_pref("mail.quoted_graphical", false);
     25  user_pref("mailnews.display.disable_format_flowed_support", true);
     26}}}
     27
     28And the bars go away.  Along the way, I noticed that if ''format=flow'' is included in the ''Content-Type'' header, Thunderbird does the right thing.  So, the source of these E-mails is partly to blame, but I am happy that there is something I can do about it for now.