How to get Thunderbird to show the attachments expanded

attachmentsthunderbird

The latest update to Thunderbird email client shows the attachments under a separate panel. I'd like the panel to display expanded automatically.

How do I do that? It doesn't seem to be in the help files or the release notes.

Best Answer

As per this writeup on the Attachment Pane Redesign on MozillaZine, you can add the following to userChrome.css to remove the attachment toggles:

#attachmentView > [collapsed="true"] {
  visibility: visible !important;
}

#attachmentToggle {
  display: none !important;
}

Edit: Corrected filename to userChrome.css

Related Question