jscher2000 wrote:I forgot to check this thread recently...
I tried the latest collection of "oldbar style drop-down" rules from this post:
viewtopic.php?p=14683121#p14683121
The first rule didn't work to hide the "search with" line for me, but switching the pseudoclass from :first-child to :first-of-type solved it:
- Code: Select all
#PopupAutoCompleteRichResult richlistitem:first-of-type {
display:none !important;
}
I found the background color of the selected item a bit dark on Windows 7; the color may vary between OS'es. This brightens it slightly vs. the default:
- Code: Select all
.autocomplete-richlistitem[selected=true] {
background-color: Highlight !important;
}
Or any arbitrary color that contrasts well with black and gray could be designated.
That seems to get rid of that top entry.