Does anyone know how to change the folderpane colours in 115. I use a userChrome.css, which no longer works in 115, as I beleive the commands have changed.
This is what … (read more)
Does anyone know how to change the folderpane colours in 115. I use a userChrome.css, which no longer works in 115, as I beleive the commands have changed.
This is what I use currently, but have no idea what changed need to be made to make it work in 115. Any help would be appreciated.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* set default namespace to XUL */
treechildren::-moz-tree-row {margin-bottom: -3px !important;}
treechildren::-moz-tree-row(hover),
treechildren::-moz-tree-row(selected) {margin-bottom: -2px !important;}
/**/
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true, selected) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true, selected) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, subfoldersHaveUnreadMessages-true) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, subfoldersHaveUnreadMessages-true, selected) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, newMessages-true),
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true),
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox, newMessages-true) {
font-weight: bold !important;
color: Black !important;
}
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, closed, newMessages-true, selected),
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true, selected),
#folderTree > treechildren::-moz-tree-cell-text(folderNameCol, specialFolder-Inbox, newMessages-true, selected) {
font-weight: bold !important;
color: Black !important;
}
/**/'''''''