aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/drawable/stats_list_item_child_background.xml
blob: 80d2b3df1236a2fe73bb793194e11667f36f0e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/grey_lighten_30" />
        </shape>
    </item>

    <item android:top="1dp">
        <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
            <solid android:color="@color/grey_light" />
        </shape>
    </item>

</layer-list>