2019-04-04 10:31:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<item>
|
|
|
|
|
<shape android:shape="rectangle">
|
2023-01-17 15:07:27 +00:00
|
|
|
<solid android:color="?textColorTintedSecondary" />
|
2019-04-04 10:31:27 +00:00
|
|
|
<corners android:radius="4dp" android:topLeftRadius="8dp" android:topRightRadius="8dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
|
2023-01-17 15:07:27 +00:00
|
|
|
<item android:bottom="2dp">
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid android:color="@color/white" />
|
|
|
|
|
<corners android:topLeftRadius="4dp" android:topRightRadius="4dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
2022-11-22 14:48:09 +00:00
|
|
|
<item android:bottom="2dp">
|
2019-04-04 10:31:27 +00:00
|
|
|
<shape android:shape="rectangle">
|
2022-11-22 14:48:09 +00:00
|
|
|
<solid android:color="?colorTintedBackgroundOffset" />
|
2019-04-04 10:31:27 +00:00
|
|
|
<corners android:topLeftRadius="4dp" android:topRightRadius="4dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
</layer-list>
|