mobile/android/base/resources/drawable/suggestion_selector.xml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
michael@0 3
michael@0 4 <item android:state_pressed="true">
michael@0 5 <shape>
michael@0 6 <gradient android:angle="90"
michael@0 7 android:startColor="#E66000"
michael@0 8 android:endColor="#FF9500"
michael@0 9 android:type="linear"/>
michael@0 10
michael@0 11 <corners android:radius="4dp"/>
michael@0 12 </shape>
michael@0 13 </item>
michael@0 14
michael@0 15 <item android:state_focused="true"
michael@0 16 android:state_enabled="true">
michael@0 17 <shape>
michael@0 18 <gradient android:angle="90"
michael@0 19 android:startColor="#D2DAE2"
michael@0 20 android:endColor="#E3E8ED"
michael@0 21 android:type="linear"/>
michael@0 22
michael@0 23 <stroke android:width="2dp"
michael@0 24 android:color="#E66000" />
michael@0 25
michael@0 26 <corners android:radius="4dp"/>
michael@0 27 </shape>
michael@0 28 </item>
michael@0 29
michael@0 30 <item android:state_enabled="true">
michael@0 31 <shape>
michael@0 32 <gradient android:angle="90"
michael@0 33 android:startColor="#D2DAE2"
michael@0 34 android:endColor="#E3E8ED"
michael@0 35 android:type="linear"/>
michael@0 36
michael@0 37 <corners android:radius="4dp"/>
michael@0 38 </shape>
michael@0 39 </item>
michael@0 40 </selector>

mercurial