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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/base/resources/drawable/panel_auth_button.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,38 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +
     1.9 +<selector xmlns:android="http://schemas.android.com/apk/res/android">
    1.10 +
    1.11 +    <item android:state_pressed="true">
    1.12 +        <layer-list>
    1.13 +            <item android:left="-2dp"
    1.14 +                  android:right="-2dp"
    1.15 +                  android:top="-2dp">
    1.16 +
    1.17 +                <shape android:shape="rectangle" >
    1.18 +                    <stroke android:width="2dp"
    1.19 +                            android:color="#FFE0E4E7" />
    1.20 +                    <solid android:color="#FFC5D0DA" />
    1.21 +                </shape>
    1.22 +            </item>
    1.23 +        </layer-list>
    1.24 +    </item>
    1.25 +
    1.26 +    <item>
    1.27 +        <layer-list>
    1.28 +            <item android:left="-2dp"
    1.29 +                  android:right="-2dp"
    1.30 +                  android:top="-2dp">
    1.31 +
    1.32 +                <shape android:shape="rectangle" >
    1.33 +                    <stroke android:width="2dp"
    1.34 +                            android:color="#FFE0E4E7" />
    1.35 +                    <solid android:color="@color/background_light" />
    1.36 +                </shape>
    1.37 +            </item>
    1.38 +        </layer-list>
    1.39 +    </item>
    1.40 +
    1.41 +</selector>

mercurial