Attachment filename truncated - Thunderbird: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (add category)
(cleanup, cat)
Line 1: Line 1:
Thunderbird may truncate the attachments filename when displaying it. You can prevent this by adding
Thunderbird may truncate the attachment's filename when displaying it. You can prevent this by adding the following to [[userChrome.css]] in your [[profile folder]].


:.attachmentBox {
<pre>
:width: auto !important;
.attachmentBox {
:max-width: none !important;
width: auto !important;
:min-width: 15em !important;
max-width: none !important;
:}
min-width: 15em !important;
 
}
to the optional userChrome.css file in your profile.
</pre>


==External link==
==External link==
[http://www.mozilla.org/support/thunderbird/edit#css userChrome.css]
[http://www.mozilla.org/support/thunderbird/edit#css userChrome.css]


[[Category:Message display issues (Thunderbird)]]
[[Category:Issues (Thunderbird)]]
[[Category:Visual customizations (Thunderbird)]]

Revision as of 06:00, 11 December 2005

Thunderbird may truncate the attachment's filename when displaying it. You can prevent this by adding the following to userChrome.css in your profile folder.

.attachmentBox {
width: auto !important;
max-width: none !important;
min-width: 15em !important;
}

External link

userChrome.css