Attachments fill up the Window

User Help for Mozilla Thunderbird
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

wintogreen wrote:Thanks, bozz. (Btw, I was freaked out momentarily when I tried replying to your post a few minutes ago only to find that it had disappeared -- while you edited and reposted, apparently!)

Taking out "max-" does make it taller, but what I was hoping is that I could use "max-height" to make the box stop growing at around 150px but remain small/short otherwise. In other words, only grow in height when needed. Weird that it doesn't do this.

lol...back to the drawing board. :)
wintogreen
Posts: 3891
Joined: October 31st, 2003, 8:38 pm

Post by wintogreen »

You ought to have your own forum for these chrome tweaks. We could call it "Da Krome King" forum.

I've found that "max-height" works with #attachmentList (the box inside #attachmentView), but it doesn't want to scroll. Hmm, I also can't even change the #attachmentList border color. Odd...

EDIT: Messing around a bit more here, I see that "overflow: auto" for #attachmentView does produce a vertical scrollbar when used with the Charamel theme, but it doesn't for me with Qute, which is the theme I was using in the above posts. Border color for #attachmentList also works for me with Charamel but not Qute. Unfortunately "max-height" and "overflow" don't work well together using Charamel either. I give up.
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

Sorry... can't help with those themes. I'm using the default theme and adding my own background.
wintogreen
Posts: 3891
Joined: October 31st, 2003, 8:38 pm

Post by wintogreen »

Qute is the default theme. :wink:
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

wintogreen wrote:Qute is the default theme. :wink:

:shock:...wasn't awake yet this morning.

This changes the background for me. Did you try it with -moz-appearance: none !important;?

Code: Select all

#attachmentView {
-moz-appearance: none !important;
background-color: #EDEDED !important; }


...and with this I get just the vertical scrollbar only and the window is scrollable.

Code: Select all

/* Attachment pane at bottom of message window */
#attachmentView {
height: 40px !important;
overflow: auto !important;
border-top: 2px solid !important;  }
Last edited by Old Bozz on May 3rd, 2005, 3:12 pm, edited 1 time in total.
wintogreen
Posts: 3891
Joined: October 31st, 2003, 8:38 pm

Post by wintogreen »

Aha, that -moz-appearance did the trick. (I was talking about background color for #attachmentList rather than #attachmentView, but that works now also.) The max-height setting still doesn't work for me, but I'm happy with the present solution. Thanks very much for your persistence.
User avatar
hansen
Posts: 5268
Joined: June 23rd, 2003, 6:28 am
Location: denmark

Post by hansen »

That's one hell of a job, you're giving me bozz.

I'll try to fiddle with the css and make a version, that does what wintogreen is requesting. No guarantees up front.
User avatar
hansen
Posts: 5268
Joined: June 23rd, 2003, 6:28 am
Location: denmark

Post by hansen »

Just a quicky.

Incorrect:

Code: Select all

border-top: 2px solid !important;


Correct:

Code: Select all

border-top: 2px solid red !important;
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

hansen wrote:That's one hell of a job, you're giving me bozz.

I'll try to fiddle with the css and make a version, that does what wintogreen is requesting. No guarantees up front.

Thanks hansen. I appreciate it.

hansen wrote:Just a quicky.

Incorrect:

Code: Select all

border-top: 2px solid !important;


Correct:

Code: Select all

border-top: 2px solid red !important;

Yep...lets you define a border color. Good deal.
wintogreen
Posts: 3891
Joined: October 31st, 2003, 8:38 pm

Post by wintogreen »

FYI, I've added bozz's tweak (pared down to the essentials) to the kb, with a link back to this thread:
http://kb.mozillazine.org/Attachment_pa ... derbird%29
Old Bozz
Posts: 0
Joined: December 31st, 1969, 5:00 pm

Post by Old Bozz »

Initial credits to Hansen. We just made some changes for other preferences. :wink:
Guest
Guest

thunderbird for mac OS X

Post by Guest »

I'm having the same problem with the attachments being displayed so you can't read the message. I'm using thunderbird 1.0.2 for mac OS X. Does anyone know how to fix this so I can display HTML email, the windows "fix" doesn't work for a mac.
Robert Lambe
Guest

Attachment Pane blocks too much of the content pane

Post by Robert Lambe »

I have followed the instructions re: creating a userChrome.css file in a chrome directory, in profile, in defaults, in Mozilla Thunderbird, in Program Files directory. However, there was no change in the size of the Attachments pane. Please help.
wintogreen
Posts: 3891
Joined: October 31st, 2003, 8:38 pm

Post by wintogreen »

Robert, that's the wrong directory. Try this one:
http://kb.mozillazine.org/Profile_folder#Thunderbird
Robert Lambe
Guest

Post by Robert Lambe »

Thanks Wintogreen,
I tried several variations of the userChrome.css file in the directories indicated at the site you offered, but alas no change. I wonder if my file patched together from suggestions in this and related threads is correctly composed. My last version tried was:

Do not remove the @namespace line -- it's required for correct functioning

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); set default namespace to XUL */



Some possible accessibility enhancements:


Attachment pane at bottom of message window
#attachmentView

-moz-appearance: none !important;
height: 20px !important;

overflow: auto !important; }


Make all the default font sizes 20 pt:


font-size: 20pt !important



Make menu items in particular 15 pt instead of the default size:

menupopup >
font-size: 15pt !important



Give the Location (URL) Bar a fixed-width font

#urlbar
font-family: monospace !important;
Locked