2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<padding
|
|
|
|
android:bottom="5dp"
|
2019-11-08 22:37:30 +05:30
|
|
|
android:left="10dp"
|
|
|
|
android:right="10dp"
|
|
|
|
android:top="10dp" />
|
|
|
|
<solid android:color="@color/transparent" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<padding
|
|
|
|
android:bottom="1dp"
|
|
|
|
android:left="0dp"
|
|
|
|
android:right="0dp"
|
|
|
|
android:top="0dp" />
|
2019-11-08 22:37:30 +05:30
|
|
|
<solid android:color="@color/card_shadow_1" />
|
|
|
|
<corners android:radius="2dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<shape>
|
|
|
|
<padding
|
|
|
|
android:bottom="1dp"
|
|
|
|
android:left="0dp"
|
|
|
|
android:right="0dp"
|
|
|
|
android:top="0dp" />
|
2019-11-08 22:37:30 +05:30
|
|
|
<solid android:color="@color/card_shadow_2" />
|
|
|
|
<corners android:radius="2dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
2019-11-08 22:37:30 +05:30
|
|
|
<!-- Background -->
|
2018-07-27 18:37:33 +05:30
|
|
|
<item>
|
|
|
|
<shape>
|
2019-11-08 22:37:30 +05:30
|
|
|
<solid android:color="@color/card_background" />
|
|
|
|
<corners android:radius="2dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</shape>
|
|
|
|
</item>
|
2019-11-08 22:37:30 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</layer-list>
|