mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
15 lines
638 B
XML
15 lines
638 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:color="?attr/colorControlHighlight">
|
||
|
<!-- Add half of the medium_profile_picture_size padding on the right to better work with the group icons. -->
|
||
|
<item
|
||
|
android:id="@android:id/mask"
|
||
|
android:right="24dp">
|
||
|
<shape>
|
||
|
<corners
|
||
|
android:bottomLeftRadius="@dimen/medium_profile_picture_size"
|
||
|
android:topLeftRadius="@dimen/medium_profile_picture_size" />
|
||
|
<solid android:color="@android:color/white" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</ripple>
|