aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/drawable/calypso_bordered_bg.xml
blob: f0f2d1a273326ca1ddcad2b8fce134381373a269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<!-- bordered sides for tablet UI -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/grey_lighten_20" />
        </shape>
    </item>
    <item android:left="1dp" android:right="1dp">
        <shape android:shape="rectangle">
            <solid android:color="@color/white" />
        </shape>
    </item>
</layer-list>