OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. --> | 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
5 | 5 |
6 <resources> | 6 <resources> |
7 | 7 |
8 <!-- | 8 <!-- |
9 Base application theme. | 9 Base application theme. |
10 --> | 10 --> |
11 <style name="GeckoBase" parent="Theme.AppCompat.Light"> | 11 <style name="GeckoBase" parent="Theme.AppCompat.Light.DarkActionBar"> |
12 <!-- Using ABB color palette. See https://issues.adblockplus.org/ticket/
3769 --> | 12 <item name="colorPrimary">@color/text_and_tabs_tray_grey</item> |
13 <item name="colorPrimary">@color/abb_background_light_grey</item> | 13 <item name="colorPrimaryDark">@color/text_and_tabs_tray_grey</item> |
14 <item name="colorPrimaryDark">@color/placeholder_active_grey</item> | |
15 <item name="windowActionBar">false</item> | 14 <item name="windowActionBar">false</item> |
16 <item name="windowNoTitle">true</item> | 15 <item name="windowNoTitle">true</item> |
17 <item name="android:windowContentOverlay">@null</item> | 16 <item name="android:windowContentOverlay">@null</item> |
18 <item name="android:alertDialogTheme">@style/GeckoAlertDialog</item> | 17 <item name="android:alertDialogTheme">@style/GeckoAlertDialog</item> |
19 </style> | 18 </style> |
20 | 19 |
21 <style name="GeckoAlertDialog" parent="@android:style/Theme.Material.Light.D
ialog.Alert"> | 20 <style name="GeckoAlertDialog" parent="@android:style/Theme.Material.Light.D
ialog.Alert"> |
22 <item name="android:colorAccent">@color/fennec_ui_accent</item> | 21 <item name="android:colorAccent">@color/fennec_ui_accent</item> |
23 </style> | 22 </style> |
24 | 23 |
(...skipping 16 matching lines...) Expand all Loading... |
41 <!-- Set the app's title bar color in the recent app switcher. | 40 <!-- Set the app's title bar color in the recent app switcher. |
42 | 41 |
43 Note: We'd prefer not to show up in the recent app switcher (bug 11
37928). --> | 42 Note: We'd prefer not to show up in the recent app switcher (bug 11
37928). --> |
44 <item name="android:colorPrimary">@color/text_and_tabs_tray_grey</item> | 43 <item name="android:colorPrimary">@color/text_and_tabs_tray_grey</item> |
45 <!-- We display the overlay on top of other Activities so show their sta
tus bar. --> | 44 <!-- We display the overlay on top of other Activities so show their sta
tus bar. --> |
46 <item name="android:statusBarColor">@android:color/transparent</item> | 45 <item name="android:statusBarColor">@android:color/transparent</item> |
47 </style> | 46 </style> |
48 <style name="OverlayActivity" parent="OverlayActivity.V21"/> | 47 <style name="OverlayActivity" parent="OverlayActivity.V21"/> |
49 | 48 |
50 </resources> | 49 </resources> |
OLD | NEW |