Customize the black background colour of the message header row to #202020 via userChrome.css
Hello,
I'm looking to customize the colour of the message header row (the part highlighted in red; with a black background as shown in the screenshot) to #202020, to match the rest of the elements of the view. While I've successfully managed to customize other elements (code below), I need help with identifying what to specify for the message header row.
.tree-table { background-color: #202020 !important; }
treechildren { background-color: #202020 !important; }
#messagePane { background-color: #202020 !important; }
#messageHeader { background-color: #202020 !important; }
#msgHeaderView { background-color: #202020 !important; }
Thanks and cheers.
Όλες οι απαντήσεις (2)
Επιλεγμένη λύση
This area is called tree table header. Try the following CSS code
.tree-table-header tr th div button {
background-color: #202020 !important;
}
Worked like a charm. Thanks much for the quick solution.