mobile/android/base/resources/drawable/panel_auth_button.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.

     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/. -->
     6 <selector xmlns:android="http://schemas.android.com/apk/res/android">
     8     <item android:state_pressed="true">
     9         <layer-list>
    10             <item android:left="-2dp"
    11                   android:right="-2dp"
    12                   android:top="-2dp">
    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>
    23     <item>
    24         <layer-list>
    25             <item android:left="-2dp"
    26                   android:right="-2dp"
    27                   android:top="-2dp">
    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>
    38 </selector>

mercurial