gecko/mobile/android/base/resources/drawable/tab_thumbnail.xml
Sriram Ramasubramanian d884771da1 Bug 834525: New tab thumbnail styling for tabs-ui. [r=mfinkle]
--HG--
extra : rebase_source : a774fdea385a9f3e9997adebf730cdb40e9e8a92
2013-01-24 17:08:08 -08:00

40 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true">
<shape android:shape="rectangle">
<solid android:color="#B3FF9500"/>
<corners android:radius="3dp"/>
</shape>
</item>
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#B3FF9500"/>
<corners android:radius="3dp"/>
</shape>
</item>
<item android:state_focused="false"
android:state_pressed="false"
android:state_checked="true">
<shape android:shape="rectangle">
<solid android:color="#FFFF9500"/>
<corners android:radius="3dp"/>
</shape>
</item>
<item android:drawable="@android:color/transparent"/>
</selector>