| Index: chrome/browser/chromeos/login/message_bubble.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/message_bubble.cc (revision 104959)
|
| +++ chrome/browser/chromeos/login/message_bubble.cc (working copy)
|
| @@ -66,6 +66,7 @@
|
| text_ = new views::Label(WideToUTF16Hack(text));
|
| text_->SetMultiLine(true);
|
| text_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
|
| + text_->SetBackgroundColor(Bubble::kBackgroundColor);
|
| text_->SizeToFit(kMaxLabelWidth);
|
| layout->AddView(text_);
|
|
|
| @@ -83,8 +84,9 @@
|
| views::Link* help_link_ = new views::Link(WideToUTF16Hack(links[i]));
|
| help_links_.push_back(help_link_);
|
| help_link_->set_listener(this);
|
| - help_link_->SetNormalColor(login::kLinkColor);
|
| - help_link_->SetHighlightedColor(login::kLinkColor);
|
| + help_link_->SetBackgroundColor(Bubble::kBackgroundColor);
|
| + help_link_->SetEnabledColor(login::kLinkColor);
|
| + help_link_->SetPressedColor(login::kLinkColor);
|
| layout->AddView(help_link_);
|
| }
|
| }
|
|
|