spymastermatt / thunderbird-monterail

A set of themes for thunderbird inspired by a Monterail blog post
GNU General Public License v3.0
1.05k stars 76 forks source link

tabs shape design not modded & how to change bg for e-mail content box & others tabs #45

Open FreshhhHub opened 7 years ago

FreshhhHub commented 7 years ago

hi there :-)

tab shape design should be: monterail inbox original

mine looks like this:

monterail inbox mine

why?

three more questions:

full screenshot:

monterail inbox full

phiranf commented 7 years ago

I got the same problem. bildschirmfoto von 2017-05-12 20-45-55

spymastermatt commented 7 years ago

In all of the themes that forcibly set the colors (i.e. all except system), the tab shape is changed because I have not yet found a way to reliably make Thunderbird change the background color of the tab including the color of the curved parts, which as far as I can tell are drawn by JS.

I did try changing the --fgTabBackgroundColor variable but it only seems to change the color of the middle of the tab. As a result I enabled my own square tabs on these themes. The system theme is able to use the rounded tabs because it doesn't change the color of the tab background.

If anyone knows how to correctly change the tab background color please let me know.

spymastermatt commented 7 years ago

Regarding the other questions:

  1. folderTree > treechildren::-moz-tree-cell-text(folderNameCol) is the selector you want. If you only want to select the first folder you might need try #folderTree > treechildren::-moz-tree-cell-text(folderNameCol):first-of-type

  2. Go to Preferences > Display > Colors and then select the colors you want
  3. For the write box, try #content-frame. As for the address book, I'm afraid I'm not sure.
klsgrtx commented 7 years ago

For the tab shapes, I played around with adding the following lines to .tabmail-tab .tab-content classes: border-top-left-radius: 15px; border-top-right-radius: 15px;

I found these suggestions on this website: https://css-tricks.com/better-tabs-with-round-out-borders/

Stanzer commented 7 years ago

@FreshhhHub : Did you finally manage to get rid of the blue colour signalling that the account has received a new mail? screenshot33

I entered this in my dark_perso.css

`#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),

folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, subfoldersHaveUnreadMessages-true) {

color: #ECECEC !important;
font-style: italic !important;

}`

and commented it out of _base.css, but that does not seem to do the trick…

Any idea ?