summaryrefslogtreecommitdiffstats
path: root/ash
diff options
context:
space:
mode:
authorstevenjb@google.com <stevenjb@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-13 18:04:07 +0000
committerstevenjb@google.com <stevenjb@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-13 18:04:07 +0000
commita588588020bcd872ef7e53d8b1436e8ca9e76fb7 (patch)
treec27f54c9b87d80d79635fe6f1f7e83da0a0d4954 /ash
parente9798c1ed5c164beaf48e28012851bc6e68ba8c4 (diff)
downloadchromium_src-a588588020bcd872ef7e53d8b1436e8ca9e76fb7.zip
chromium_src-a588588020bcd872ef7e53d8b1436e8ca9e76fb7.tar.gz
chromium_src-a588588020bcd872ef7e53d8b1436e8ca9e76fb7.tar.bz2
Change ash no notofication message size and color
BUG=141775 R=jennyz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10855093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151308 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash')
-rw-r--r--ash/system/web_notification/web_notification_tray.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ash/system/web_notification/web_notification_tray.cc b/ash/system/web_notification/web_notification_tray.cc
index 11f1773..d9b0541 100644
--- a/ash/system/web_notification/web_notification_tray.cc
+++ b/ash/system/web_notification/web_notification_tray.cc
@@ -614,8 +614,9 @@ class MessageCenterContentsView : public WebContentsView {
if (num_children == 0) {
views::Label* label = new views::Label(l10n_util::GetStringUTF16(
IDS_ASH_WEB_NOTFICATION_TRAY_NO_MESSAGES));
- label->SetFont(label->font().DeriveFont(2));
+ label->SetFont(label->font().DeriveFont(1));
label->SetHorizontalAlignment(views::Label::ALIGN_CENTER);
+ label->SetEnabledColor(SK_ColorGRAY);
scroll_content_->AddChildView(label);
button_view_->SetCloseAllVisible(false);
} else {