From c6629d5cebc2cbfac52f81fd88b9039df4281ac2 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> Date: Wed, 25 Mar 2009 20:45:28 +0000 Subject: Remove the black line from the bottom of the status bubble. TEST=Make the Chrome window on top of a white window with a link at the very bottom of the window. Hover over the link so that the status bubble moves outside the chrome window and over the background. The bottom line should be consistent and not have the part under the text be black. Review URL: http://codereview.chromium.org/53068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12491 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/views/status_bubble_views.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chrome/browser/views') diff --git a/chrome/browser/views/status_bubble_views.cc b/chrome/browser/views/status_bubble_views.cc index 4117cb0..c2abcb1 100644 --- a/chrome/browser/views/status_bubble_views.cc +++ b/chrome/browser/views/status_bubble_views.cc @@ -27,8 +27,9 @@ // The color of the background bubble. static const SkColor kBubbleColor = SkColorSetRGB(222, 234, 248); -// The alpha and color of the bubble's shadow. -static const SkColor kShadowColor = SkColorSetARGB(30, 0, 0, 0); +// The alpha and color of the bubble's shadow. This is a composite of the above +// background color with 30% gray. +static const SkColor kShadowColor = SkColorSetRGB(196, 206, 212); // How wide the bubble's shadow is. static const int kShadowSize = 1; -- cgit v1.1