Attachment list width in compose window

User Help for Mozilla Thunderbird
Post Reply
robwg
Posts: 9
Joined: October 5th, 2005, 4:55 am
Location: UK

Attachment list width in compose window

Post by robwg »

When composing messages in Thunderbird 8.0 long attachment names are being truncated like this:

Image

It is possible to grab the splitter and drag it to the left to make the attachment list wider, but this has to be done each time a compose window is opened.

Is there is a userChrome tweak that will allow the list to resize automatically or maybe be set to a wider default width?

I've noticed that the ClassicReloaded theme seems to achieve this but I don't know how to work out how it's doing it so I might use it with the default theme.

Thanks

Rob
Bozz
Posts: 2684
Joined: October 18th, 2007, 1:53 pm

Re: Attachment list width in compose window

Post by Bozz »

I can't figure out how the theme is doing it, but you can use this for the time being. Maybe someone else knows how.

Adjust width of attachments bucket.

Code: Select all

#attachmentBucket {
  width: 20em !important;
}
Guest
Guest

Re: Attachment list width in compose window

Post by Guest »

In TB versions 3.1.x - 7.0 only, this can be done using the Bindings method as described in: http://kb.mozillazine.org/Bindings
Unfortunately, in TB 8.0 this bindings method no longer work anymore. My guess is that some change in the back end TB code may be the issue. The Bindings code was originally provided by the Mail Tweak author who is no longer active on these forums. Thus, no one seem to know how to make it work again. I'd also be interested if anyone comes up with some other workaround.
rsx11m
Moderator
Posts: 14404
Joined: May 3rd, 2007, 7:40 am
Location: US

Re: Attachment list width in compose window

Post by rsx11m »

Yes, the bindings for the attachment panes have been reorganized with 8.0, a lot of the old userChrome.css and userChrome.xml code likely won't work any more. I've added Bozz's code to the Attachment filename truncated Knowledge Base article.
robwg
Posts: 9
Joined: October 5th, 2005, 4:55 am
Location: UK

Re: Attachment list width in compose window

Post by robwg »

Thanks Bozz that's a big improvement!
Bozz
Posts: 2684
Joined: October 18th, 2007, 1:53 pm

Re: Attachment list width in compose window

Post by Bozz »

You're welcome.
Bozz
Posts: 2684
Joined: October 18th, 2007, 1:53 pm

Re: Attachment list width in compose window

Post by Bozz »

You guys want to test this with v8.0?. It seems to be working with v11.0a1.

Code: Select all

#attachmentBucket {
width: auto !important;
}
Last edited by Bozz on November 24th, 2011, 12:17 pm, edited 1 time in total.
robwg
Posts: 9
Joined: October 5th, 2005, 4:55 am
Location: UK

Re: Attachment list width in compose window

Post by robwg »

I've tried this in v8.0 and it works great.

Thanks again Bozz.
Bozz
Posts: 2684
Joined: October 18th, 2007, 1:53 pm

Re: Attachment list width in compose window

Post by Bozz »

Good deal. Glad it works.
Post Reply