summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/status_bubble_views.cc
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 20:45:28 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 20:45:28 +0000
commitc6629d5cebc2cbfac52f81fd88b9039df4281ac2 (patch)
tree10a3caf4bfba32f7244e6a01241738a8b7e3b08f /chrome/browser/views/status_bubble_views.cc
parent725355a29e53a5bc0f37237b9be5023a35e0c09e (diff)
downloadchromium_src-c6629d5cebc2cbfac52f81fd88b9039df4281ac2.zip
chromium_src-c6629d5cebc2cbfac52f81fd88b9039df4281ac2.tar.gz
chromium_src-c6629d5cebc2cbfac52f81fd88b9039df4281ac2.tar.bz2
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
Diffstat (limited to 'chrome/browser/views/status_bubble_views.cc')
-rw-r--r--chrome/browser/views/status_bubble_views.cc5
1 files changed, 3 insertions, 2 deletions
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;