aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/drawable/reader_gap_marker_background.xml
blob: ed31d33f4144f9b23df7bda8edd13c81e68c250b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="@color/blue_light" />
            <corners android:radius="4dp" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/grey_darken_20" />
            <corners android:radius="4dp" />
        </shape>
    </item>
</selector>