[Thunderbird] Line Space in Folder Pane

Discuss application theming and theme development.
Post Reply
User avatar
arandor
Posts: 155
Joined: November 5th, 2004, 1:27 pm
Location: USA

[Thunderbird] Line Space in Folder Pane

Post by arandor »

I'm trying to get some extra line space between folder names in the folder pane. When I add the following line to userChrome.css, I do get some space:

Code: Select all

#folderTree > treechildren::-moz-tree-row { height: 24px !important; }


But, it looks like this.

Image

The selection highlight is not a uniform color from top to bottom. It changes to a graphite color at the bottom. Any idea how to get rid of this?

Thank you

Thunderbird 24.5.0
Mac OS X 10.9.3
User avatar
arandor
Posts: 155
Joined: November 5th, 2004, 1:27 pm
Location: USA

Re: [Thunderbird] Line Space in Folder Pane

Post by arandor »

After days of searching I finally find the answer after I posted the question here. Here's the answer in case someone else needs to know.

Code: Select all

treechildren::-moz-tree-row ,
treechildren::-moz-tree-row(hover),
treechildren::-moz-tree-row(selected)
{
    margin-bottom: 2px !important;
}


Found the answer here.
Post Reply