spymastermatt / thunderbird-monterail

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

White buttons for close folderView and for titleBar (all themes) #95

Open conema opened 6 years ago

conema commented 6 years ago

New view for monterail-dark-fulldark: immagine immagine immagine

Light view is changed in #94

conema commented 6 years ago

There is a bug with the folder close icon (.close-icon) in linux because the icon set used is different from windows. This resolve the issue for me (openSUSE - KDE Plasma):

.close-icon {
    list-style-image: url("chrome://global/skin/icons/close.svg") !important;
    -moz-image-region: rect(0px, 80px, 16px, 64px) !important;
}

.close-icon:hover {
    list-style-image: url(chrome://global/skin/icons/close.png) !important;
    -moz-image-region: rect(0, 32px, 16px, 16px) !important;
}

.close-icon[selected="true"] {
    list-style-image: url(chrome://global/skin/icons/close.png) !important;
    -moz-image-region: rect(0, 16px, 16px, 0) !important;
}

.close-icon[selected="true"]:hover {
    list-style-image: url(chrome://global/skin/icons/close.png) !important;
    -moz-image-region: rect(0, 32px, 16px, 16px) !important;
}
shawndwells commented 6 years ago

I'm hitting this on Fedora as well. Bump to get this merged.