Comment #1 on issue 25368 by [email protected]: Omnibox completion popup is too transparent http://code.google.com/p/chromium/issues/detail?id=25368
chrome/browser/autocomplete/autocomplete_popup_view_mac.mm const CGFloat kPopupAlpha = 240.0 / 255.0; That's 0.94 and change. Pretty close to what you suggest it ought to be. Scott chose this value to match what was used on Windows, chrome/browser/views/autocomplete/autocomplete_popup_contents_view.cc const SkAlpha kGlassPopupAlpha = 240; (for a Skia a-channel, so this is implicitly "out of 255.") Apple Safari looks a little bit more opaque to me, but it's pretty close. I'd like it if we could apply a blurring effect to whatever's behind the pop-up, too. That would tend to make less opacity less visually heinous. (Safari doesn't do this.) -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
