diff options
| author | 2020-06-22 15:44:51 -0400 | |
|---|---|---|
| committer | 2020-06-22 20:20:08 +0000 | |
| commit | 7bc32e31ce17bcbddc2bf2cb39572d42e59dffad (patch) | |
| tree | 586f17ff5b35681af70c072b64886adf381b2f13 | |
| parent | 2775990021e6dd22197b7b718ce1e37b14c8a690 (diff) | |
Update colors on action row.
Test: visual inspection
Fixes: 152978014
Change-Id: I564a5fcaa6baa9b91f091bccda34af74edc85ea7
| -rw-r--r-- | core/res/res/drawable/chooser_action_button_bg.xml | 4 | ||||
| -rw-r--r-- | core/res/res/layout/chooser_action_button.xml | 4 | ||||
| -rw-r--r-- | core/res/res/values/colors.xml | 1 |
3 files changed, 5 insertions, 4 deletions
diff --git a/core/res/res/drawable/chooser_action_button_bg.xml b/core/res/res/drawable/chooser_action_button_bg.xml index a434c0b9b6a9..0dd9e9c7cd98 100644 --- a/core/res/res/drawable/chooser_action_button_bg.xml +++ b/core/res/res/drawable/chooser_action_button_bg.xml @@ -25,8 +25,8 @@ <shape android:shape="rectangle"> <corners android:radius="16dp"></corners> <stroke android:width="1dp" - android:color="?attr/textColorSecondary" /> - <solid android:color="?attr/colorBackground" /> + android:color="?attr/opacityListDivider" /> + <solid android:color="?attr/colorBackgroundFloating" /> </shape> </inset> </item> diff --git a/core/res/res/layout/chooser_action_button.xml b/core/res/res/layout/chooser_action_button.xml index 119b2e90292d..6af7937960f0 100644 --- a/core/res/res/layout/chooser_action_button.xml +++ b/core/res/res/layout/chooser_action_button.xml @@ -19,12 +19,12 @@ android:paddingStart="12dp" android:paddingEnd="12dp" android:drawablePadding="8dp" - android:textColor="?android:textColorSecondary" + android:textColor="?android:textColorPrimary" android:textSize="12sp" android:maxWidth="192dp" android:singleLine="true" android:clickable="true" android:background="@drawable/chooser_action_button_bg" - android:drawableTint="?android:attr/colorControlNormal" + android:drawableTint="@color/chooser_chip_icon" android:drawableTintMode="src_in" /> diff --git a/core/res/res/values/colors.xml b/core/res/res/values/colors.xml index c413f8b036d7..1242c6dc8217 100644 --- a/core/res/res/values/colors.xml +++ b/core/res/res/values/colors.xml @@ -230,6 +230,7 @@ <color name="resolver_text_color_secondary_dark">#ffC4C6C6</color> <color name="resolver_empty_state_text">#FF202124</color> <color name="resolver_empty_state_icon">#FF5F6368</color> + <color name="chooser_chip_icon">#FF1A73E8</color> <!-- Blue 600 --> <!-- Color for personal app suspension notification button text and icon tint. --> <color name="personal_apps_suspension_notification_color">#1A73E8</color> |