mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
758 B
XML
27 lines
758 B
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_enabled="true">
|
|
<shape>
|
|
<gradient android:angle="90"
|
|
android:startColor="#D2DAE2"
|
|
android:endColor="#E3E8ED"
|
|
android:type="linear"/>
|
|
|
|
<corners android:radius="4dp"/>
|
|
</shape>
|
|
</item>
|
|
|
|
</selector>
|