Search colors
Is there a relatively easy way to change highlighting/colors for searching? I'd like more contrast between the "matching" items, which are currently black, and the "parent/sibling" items, which are light gray.
This is an old discussion that has not been active in a long time. Instead of commenting here, you should start a new discussion. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
#zotero-items-tree treechildren::-moz-tree-cell-text(contextRow) {
color: blue !important;
}
Replace "blue" with your color of choice, and add any other CSS rules you see fit, to change the look of the non-matching items. Take out "(contextRow)" to modify the color of regular items. Just keep the !important.