Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
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"
7 xmlns:gecko="http://schemas.android.com/apk/res-auto">
9 <!-- private pressed state -->
10 <item gecko:state_private="true"
11 android:state_pressed="true"
12 android:drawable="@color/highlight_nav_pb"/>
14 <!-- focused state -->
15 <item gecko:state_private="true"
16 android:state_focused="true"
17 android:state_pressed="false"
18 android:drawable="@color/highlight_nav_focused_pb"/>
20 <!-- pressed state -->
21 <item android:state_pressed="true"
22 android:drawable="@color/highlight_nav"/>
24 <!-- focused state -->
25 <item android:state_focused="true"
26 android:state_pressed="false"
27 android:drawable="@color/highlight_nav_focused"/>
29 <!-- private browsing mode -->
30 <item gecko:state_private="true"
31 android:drawable="@color/background_private"/>
33 <!-- normal mode -->
34 <item android:drawable="@color/background_normal"/>
36 </selector>