aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml
blob: ad2d03a5e1b5ebe94fc315aa9f9b6dca83109e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
 <item android:state_focused="true"><shape>
        <solid android:color="@color/white" />
        <stroke android:width="2dp" android:color="@color/bbutton_danger" />
        <corners android:radius="@dimen/bbuton_rounded_corner_radius" />
    </shape></item>  
    
<item><shape android:shape="rectangle">
        <solid android:color="@color/white" />
        <stroke android:width="1dp" android:color="@color/bbutton_danger" />
        <corners android:radius="@dimen/bbuton_rounded_corner_radius" />
    </shape></item>
    
    

</selector>