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

branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
equal deleted inserted replaced
-1:000000000000 0:e52ba876b21d
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5
6 <selector xmlns:android="http://schemas.android.com/apk/res/android">
7
8 <item android:state_pressed="true">
9 <layer-list>
10 <item android:left="-2dp"
11 android:right="-2dp"
12 android:top="-2dp">
13
14 <shape android:shape="rectangle" >
15 <stroke android:width="2dp"
16 android:color="#FFE0E4E7" />
17 <solid android:color="#FFC5D0DA" />
18 </shape>
19 </item>
20 </layer-list>
21 </item>
22
23 <item>
24 <layer-list>
25 <item android:left="-2dp"
26 android:right="-2dp"
27 android:top="-2dp">
28
29 <shape android:shape="rectangle" >
30 <stroke android:width="2dp"
31 android:color="#FFE0E4E7" />
32 <solid android:color="@color/background_light" />
33 </shape>
34 </item>
35 </layer-list>
36 </item>
37
38 </selector>

mercurial