Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Set blue hover color for long press menu (#1921)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and keianhzo committed Oct 7, 2019
1 parent 5eb79ce commit 9d3531a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions app/src/main/res/color/context_menu_icon_color.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="@color/fog"/>
<item android:state_hovered="true" android:color="@color/asphalt"/>
<item android:color="@color/fog"/>
</selector>
2 changes: 0 additions & 2 deletions app/src/main/res/color/context_menu_text_color.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="@color/fog"/>
<item android:state_hovered="true" android:color="@color/asphalt"/>
<item android:color="@color/fog"/>
</selector>
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<item android:state_pressed="true">
<shape
android:shape="rectangle">
<solid android:color="@color/asphalt" />
<solid android:color="@color/void_color" />
<corners android:radius="32dp"/>
</shape>
</item>
<item android:state_hovered="true">
<shape
android:shape="rectangle">
<solid android:color="@color/fog" />
<solid android:color="@color/azure" />
<corners android:radius="32dp"/>
</shape>
</item>
Expand Down

0 comments on commit 9d3531a

Please sign in to comment.