mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
Update card highlight style
Out with orange, in with blue and gray (on >= 4.4).
This commit is contained in:
parent
d89ef70060
commit
37fb8fe445
3 changed files with 12 additions and 2 deletions
|
@ -1,6 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@android:drawable/list_selector_background"
|
||||
android:state_pressed="true" />
|
||||
<item android:state_pressed="true">
|
||||
<shape>
|
||||
<solid android:color="@color/card_background_active" />
|
||||
</shape>
|
||||
<bitmap android:src="@drawable/card" />
|
||||
</item>
|
||||
<item android:drawable="@drawable/card" />
|
||||
</selector>
|
4
res/values-v19/colors.xml
Normal file
4
res/values-v19/colors.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="card_background_active">#99bebebe</color>
|
||||
</resources>
|
|
@ -11,4 +11,6 @@
|
|||
|
||||
<color name="textsecure_holo_blue_light">#ff33b5e5</color>
|
||||
|
||||
<color name="card_background_active">#9933b5e5</color>
|
||||
|
||||
</resources>
|
Loading…
Reference in a new issue