| 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. This could be overridden by GeckoBaseTheme | 9 Base application theme. This could be overridden by GeckoBaseTheme |
| 10 in other res/values-XXX/themes.xml. | 10 in other res/values-XXX/themes.xml. |
| 11 --> | 11 --> |
| 12 <style name="GeckoBase" parent="Theme.AppCompat.Light.DarkActionBar"> | 12 <style name="GeckoBase" parent="Theme.AppCompat.Light.DarkActionBar"> |
| 13 <item name="windowNoTitle">true</item> | 13 <item name="windowNoTitle">true</item> |
| 14 <item name="windowActionBar">false</item> | 14 <item name="windowActionBar">false</item> |
| 15 <item name="android:windowContentOverlay">@null</item> | 15 <item name="android:windowContentOverlay">@null</item> |
| 16 </style> | 16 </style> |
| 17 | 17 |
| 18 <style name="GeckoDialogBase" parent="@android:style/Theme.Dialog"> | 18 <style name="GeckoDialogBase" parent="@android:style/Theme.Dialog"> |
| 19 <item name="android:windowNoTitle">true</item> | 19 <item name="android:windowNoTitle">true</item> |
| 20 <item name="android:windowContentOverlay">@null</item> | 20 <item name="android:windowContentOverlay">@null</item> |
| 21 </style> | 21 </style> |
| 22 | 22 |
| 23 <style name="GeckoTitleDialogBase" parent="@android:style/Theme.Dialog" /> | 23 <style name="GeckoTitleDialogBase" parent="@android:style/Theme.Dialog" /> |
| 24 | 24 |
| 25 <style name="Gecko.Preferences"> | 25 <style name="Gecko.Preferences"> |
| 26 <item name="windowActionBar">true</item> | 26 <item name="windowActionBar">true</item> |
| 27 <item name="windowNoTitle">false</item> | 27 <item name="windowNoTitle">false</item> |
| 28 <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar
</item> | 28 <!-- Changed theme. See https://issues.adblockplus.org/ticket/5495 --> |
| 29 <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</ite
m> |
| 29 <item name="actionBarStyle">@style/PreferencesActionBar</item> | 30 <item name="actionBarStyle">@style/PreferencesActionBar</item> |
| 30 </style> | 31 </style> |
| 31 | 32 |
| 32 <!-- | 33 <!-- |
| 33 Application Theme. All customizations that are not specific | 34 Application Theme. All customizations that are not specific |
| 34 to a particular API level can go here. | 35 to a particular API level can go here. |
| 35 --> | 36 --> |
| 36 <style name="Gecko" parent="GeckoBase"> | 37 <style name="Gecko" parent="GeckoBase"> |
| 37 <!-- Default colors --> | 38 <!-- Default colors --> |
| 38 <item name="android:textColorPrimary">@color/primary_text</item> | 39 <item name="android:textColorPrimary">@color/primary_text</item> |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 <!-- Using ABB color palette. See https://issues.adblockplus.org/ticket/
3769 --> | 115 <!-- Using ABB color palette. See https://issues.adblockplus.org/ticket/
3769 --> |
| 115 <!-- Set the app's title bar color in the recent app switcher. | 116 <!-- Set the app's title bar color in the recent app switcher. |
| 116 | 117 |
| 117 Note: We'd prefer not to show up in the recent app switcher (bug 11
37928). --> | 118 Note: We'd prefer not to show up in the recent app switcher (bug 11
37928). --> |
| 118 <item name="android:colorPrimary">@color/abb_background_light_grey</item
> | 119 <item name="android:colorPrimary">@color/abb_background_light_grey</item
> |
| 119 <!-- We display the overlay on top of other Activities so show their sta
tus bar. --> | 120 <!-- We display the overlay on top of other Activities so show their sta
tus bar. --> |
| 120 <item name="android:statusBarColor">@android:color/transparent</item> | 121 <item name="android:statusBarColor">@android:color/transparent</item> |
| 121 </style> | 122 </style> |
| 122 | 123 |
| 123 </resources> | 124 </resources> |
| OLD | NEW |