mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
41 lines
1.2 KiB
XML
41 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:state_pressed="true">
|
|
<shape>
|
|
<gradient android:angle="90"
|
|
android:startColor="#E66000"
|
|
android:endColor="#FF9500"
|
|
android:type="linear"/>
|
|
|
|
<corners android:radius="4dp"/>
|
|
</shape>
|
|
</item>
|
|
|
|
<item android:state_focused="true"
|
|
android:state_enabled="true">
|
|
<shape>
|
|
<gradient android:angle="90"
|
|
android:startColor="#D2DAE2"
|
|
android:endColor="#E3E8ED"
|
|
android:type="linear"/>
|
|
|
|
<stroke android:width="2dp"
|
|
android:color="#E66000" />
|
|
|
|
<corners android:radius="4dp"/>
|
|
</shape>
|
|
</item>
|
|
|
|
<item android:state_enabled="true">
|
|
<shape>
|
|
<gradient android:angle="90"
|
|
android:startColor="#D2DAE2"
|
|
android:endColor="#E3E8ED"
|
|
android:type="linear"/>
|
|
|
|
<corners android:radius="4dp"/>
|
|
</shape>
|
|
</item>
|
|
</selector>
|