It looks like the original Finder list never became a fist responder, so I assume the first step is to subclass your table or schema view, as well as implement the (BOOL) acceptFirstResponder method
- (BOOL)acceptsFirstResponder { return NO; }
This will make the selection of the source list always light blue, and you can use some undocumented methods like _highlightColorForCell to change the highlight color.
zonble
source share