Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: ios/chrome/browser/ui/omnibox/omnibox_popup_material_view_controller.mm

Issue 2805873002: Make the answers text color more consistent. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/omnibox/omnibox_popup_material_view_controller.mm
diff --git a/ios/chrome/browser/ui/omnibox/omnibox_popup_material_view_controller.mm b/ios/chrome/browser/ui/omnibox/omnibox_popup_material_view_controller.mm
index 57e19fc861accd1b6fc2f41d8a60864675d995c0..2c8477999ce16d7e20f8f479edb09c4a45e89fc3 100644
--- a/ios/chrome/browser/ui/omnibox/omnibox_popup_material_view_controller.mm
+++ b/ios/chrome/browser/ui/omnibox/omnibox_popup_material_view_controller.mm
@@ -498,11 +498,13 @@ initWithPopupView:(OmniboxPopupViewIOS*)view
case SuggestionAnswer::ANSWER_TEXT_MEDIUM:
attributes = @{
font : [[MDFRobotoFontLoader sharedInstance] regularFontOfSize:20],
+ foregroundColor : [UIColor grayColor],
};
break;
case SuggestionAnswer::ANSWER_TEXT_LARGE:
attributes = @{
font : [[MDFRobotoFontLoader sharedInstance] regularFontOfSize:24],
+ foregroundColor : [UIColor grayColor],
};
break;
case SuggestionAnswer::SUGGESTION_SECONDARY_TEXT_SMALL:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698