|
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/. --> |
|
5 |
|
6 <selector xmlns:android="http://schemas.android.com/apk/res/android" |
|
7 xmlns:gecko="http://schemas.android.com/apk/res-auto"> |
|
8 |
|
9 <!-- private pressed state --> |
|
10 <item gecko:state_private="true" |
|
11 android:state_pressed="true" |
|
12 android:drawable="@color/highlight_nav_pb"/> |
|
13 |
|
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"/> |
|
19 |
|
20 <!-- pressed state --> |
|
21 <item android:state_pressed="true" |
|
22 android:drawable="@color/highlight_nav"/> |
|
23 |
|
24 <!-- focused state --> |
|
25 <item android:state_focused="true" |
|
26 android:state_pressed="false" |
|
27 android:drawable="@color/highlight_nav_focused"/> |
|
28 |
|
29 <!-- private browsing mode --> |
|
30 <item gecko:state_private="true" |
|
31 android:drawable="@color/background_private"/> |
|
32 |
|
33 <!-- normal mode --> |
|
34 <item android:drawable="@color/background_normal"/> |
|
35 |
|
36 </selector> |