> On 09/18/2013 12:59 PM, Peter Holsberg wrote:
>> Sorry, but that is not helpful. I would like to find out what is wrong
>> with this file:
>>
>> /* the following @namespace line is necessary: don't remove */
>> @namespace
>> url("
http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
>>
>>
>> /* Change color of the Select bar in Folderpane and Messagepane windows */
>>
>> treechildren:-moz-tree-cell-text(selected) {
>> background-color: yellow !important; color: black !important;
>> }
>> treechildren:-moz-tree-cell(selected) {
>> background-color: yellow !important;
>> }
>>
>>
>> /* Make Folders containing Unread_Messages visually distinct from others */
>> treechildren::-moz-tree-cell-text(folderNameCol, hasUnreadMessages-true)
>> {
>> color: blue !important;
>> }
>>
>> /* Change Folder Display to indicate New Message(s) has arrived */
>> treechildren::-moz-tree-cell-text(folderNameCol, newMessages-true)
>>
>> {
>> color: red !important;
>> font-weight: bold !important;
>> }
>>
>> I get a yellow Select bar in the Message pane, but not in the Folder pane.
>>
>> I get no blue or red in the Folder pane.
>>
>> Has the syntax changed?
>>
>
>
> I have code like that in my userChrome.css file, and it works.
>
> Possible yours are conflicting with each other causing both not to work?