mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
2b96f53c93
--HG-- extra : rebase_source : a774fdea385a9f3e9997adebf730cdb40e9e8a92
40 lines
1.1 KiB
XML
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>
|