aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/drawable/stats_white_background.xml
blob: 1dfa42179fb6fc54df41672a40935fcd940f8729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item
        android:bottom="1dp"
        android:left="-2dp"
        android:right="1dp"
        android:top="-2dp">
        <shape android:shape="rectangle" >
            <stroke
                android:width="1dp"
                android:color="#DADADA" />

            <solid android:color="#FFF" />

            <padding
                android:bottom="2dp"
                android:right="2dp">
            </padding>
        </shape>
    </item>

</layer-list>