Attachment pane height - Thunderbird: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (UserChrome.css and userContent.css linkfix)
(fix code for TB 2.0.0.17)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
When you receive a message with attachments, the attachments are listed in a separate pane at the bottom of Thunderbird's preview pane or message window. The more attachments you receive, the more space this pane takes up, and by default the attachment pane does not stop growing. As a result, if you receive a large number of attachments the attachment pane can take up so much space that you can't even see the message body. To change this, so that the attachment pane will have a fixed height and use a vertical scrollbar, exit Thunderbird and insert the following into your [[userChrome.css]] file:
When you receive a message with attachments, the attachments are listed in a separate pane at the bottom of Thunderbird's preview pane or message window. The more attachments you receive, the more space this pane takes up, and by default the attachment pane does not stop growing. As a result, if you receive a large number of attachments the attachment pane can take up so much space that you can't even see the message body. To change this, so that the attachment pane will have a fixed height and use a vertical scrollbar, exit Thunderbird and insert the following into your [[userChrome.css]] file:


<pre>
  /* Attachment pane at bottom of message window */
  /* Attachment pane at bottom of message window */
  #attachmentView {
  #attachmentView {
   -moz-appearance: none !important;
   -moz-appearance: none !important;
   height: 40px !important;
   height: 40px !important;
  min-height: 40px !important;
   overflow: auto !important; }
   overflow: auto !important; }
</pre>


===Other information===
===Other information===
* To increase the pane height, change 40px to a bigger number.
* You can change the pane height by modifying the number in 40px . If you reduce the height below 28px it typically clips the bottom of the filename.
* The line "<tt>-moz-appearance: none !important;</tt>" may not be necessary, depending on the theme you are using. You can experiment with this line in/out to see how it works with the theme you are using.
* The lines "<tt>-moz-appearance: none !important;</tt>" and "<tt>min-height: 40px !important;</tt>" may not be necessary, depending on the theme you are using. You can experiment with these line in/out to see how they work with the theme you are using.
* For further discussion, see this [http://forums.mozillazine.org/viewtopic.php?t=259112 Mozillazine forums thread].
* For further discussion, see this [http://forums.mozillazine.org/viewtopic.php?t=259112 Mozillazine forums thread].
==See also==
* [[Attachments list]]


[[Category:Visual customizations (Thunderbird)]]
[[Category:Visual customizations (Thunderbird)]]
[[Category:Attachments (Thunderbird)]]
[[Category:Attachments (Thunderbird)]]

Latest revision as of 16:09, 10 October 2008

When you receive a message with attachments, the attachments are listed in a separate pane at the bottom of Thunderbird's preview pane or message window. The more attachments you receive, the more space this pane takes up, and by default the attachment pane does not stop growing. As a result, if you receive a large number of attachments the attachment pane can take up so much space that you can't even see the message body. To change this, so that the attachment pane will have a fixed height and use a vertical scrollbar, exit Thunderbird and insert the following into your userChrome.css file:

 /* Attachment pane at bottom of message window */
 #attachmentView {
   -moz-appearance: none !important;
   height: 40px !important;
   min-height: 40px !important;
   overflow: auto !important; }

Other information

  • You can change the pane height by modifying the number in 40px . If you reduce the height below 28px it typically clips the bottom of the filename.
  • The lines "-moz-appearance: none !important;" and "min-height: 40px !important;" may not be necessary, depending on the theme you are using. You can experiment with these line in/out to see how they work with the theme you are using.
  • For further discussion, see this Mozillazine forums thread.

See also