aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/drawable/bbuton_warning.xml
blob: e0596201bf37a33c0df978f18813ee0250ea818d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true"><shape>
            <solid android:color="@color/bbutton_warning_pressed" />
            <stroke android:width="1dp" android:color="@color/bbutton_warning_edge" />
        </shape></item>
            
    <item android:state_enabled="false"><shape>
	    <solid android:color="@color/bbutton_warning_disabled" />
            <stroke android:width="1dp" android:color="@color/bbutton_warning_disabled_edge" />
        </shape></item>
        
    
    <item><shape>
            <solid android:color="@color/bbutton_warning" />
            <stroke android:width="1dp" android:color="@color/bbutton_warning_edge" />
        </shape></item>

</selector>