diff options
| author | 2015-09-30 15:34:43 -0700 | |
|---|---|---|
| committer | 2015-09-30 16:05:07 -0700 | |
| commit | b444e12c0b4aad79d771abcc0ce31aeb3b065ceb (patch) | |
| tree | 05b01cbb8a71a4c1ac6db34986a9e7e76192bf67 | |
| parent | 0cdfc4d273061dcc7e10a8cd403ea08a536e5063 (diff) | |
Change popup menu header color to secondary color.
This makes it a nicer 54% black (on light theme), in line with material
spec and what UX recommends. It makes the header text more distinguishable
from the menu items.
Change-Id: Iea34b9b4b8724f508844526fa5b8c831aa5ab81e
| -rw-r--r-- | core/res/res/values/styles_material.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/res/res/values/styles_material.xml b/core/res/res/values/styles_material.xml index 38a1693141dc..58640eb2ef55 100644 --- a/core/res/res/values/styles_material.xml +++ b/core/res/res/values/styles_material.xml @@ -307,9 +307,10 @@ please see styles_device_defaults.xml. <style name="TextAppearance.Material.Widget.PopupMenu"/> <style name="TextAppearance.Material.Widget.PopupMenu.Large" parent="TextAppearance.Material.Menu" /> <style name="TextAppearance.Material.Widget.PopupMenu.Small" parent="TextAppearance.Material.Menu" /> - <style name="TextAppearance.Material.Widget.PopupMenu.Header" parent="TextAppearance.Material.Subhead"> + <style name="TextAppearance.Material.Widget.PopupMenu.Header"> <item name="fontFamily">@string/font_family_title_material</item> <item name="textSize">@dimen/text_size_menu_header_material</item> + <item name="textColor">?attr/textColorSecondary</item> </style> <style name="TextAppearance.Material.Widget.DropDownHint" parent="TextAppearance.Material.Menu" /> |