aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable/bg_field.xml
blob: e656ad40fce62858b170357f30f510236da5beeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<!-- Text-field box. Accent border when focused, neutral otherwise. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true">
        <shape android:shape="rectangle">
            <solid android:color="@color/surface_alt"/>
            <stroke android:width="2dp" android:color="@color/accent"/>
            <corners android:radius="@dimen/field_radius"/>
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/surface_alt"/>
            <stroke android:width="1dp" android:color="@color/stroke"/>
            <corners android:radius="@dimen/field_radius"/>
        </shape>
    </item>
</selector>