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 <!-- Changed theme. See https://issues.adblockplus.org/ticket/5495 --> | 28 <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar
</item> |
29 <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</ite
m> | |
30 <item name="actionBarStyle">@style/PreferencesActionBar</item> | 29 <item name="actionBarStyle">@style/PreferencesActionBar</item> |
31 </style> | 30 </style> |
32 | 31 |
33 <!-- | 32 <!-- |
34 Application Theme. All customizations that are not specific | 33 Application Theme. All customizations that are not specific |
35 to a particular API level can go here. | 34 to a particular API level can go here. |
36 --> | 35 --> |
37 <style name="Gecko" parent="GeckoBase"> | 36 <style name="Gecko" parent="GeckoBase"> |
38 <!-- Default colors --> | 37 <!-- Default colors --> |
39 <item name="android:textColorPrimary">@color/primary_text</item> | 38 <item name="android:textColorPrimary">@color/primary_text</item> |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 <item name="colorControlNormal">@color/disabled_grey</item> | 133 <item name="colorControlNormal">@color/disabled_grey</item> |
135 | 134 |
136 <item name="android:textColorHint">@color/tabs_tray_icon_grey</item> | 135 <item name="android:textColorHint">@color/tabs_tray_icon_grey</item> |
137 </style> | 136 </style> |
138 <style name="BookmarkToolbarStyle.Base" parent="@style/Widget.AppCompat.Tool
bar"> | 137 <style name="BookmarkToolbarStyle.Base" parent="@style/Widget.AppCompat.Tool
bar"> |
139 <item name="android:paddingRight">5dp</item> | 138 <item name="android:paddingRight">5dp</item> |
140 </style> | 139 </style> |
141 <style name="BookmarkToolbarStyle" parent="BookmarkToolbarStyle.Base"/> | 140 <style name="BookmarkToolbarStyle" parent="BookmarkToolbarStyle.Base"/> |
142 | 141 |
143 </resources> | 142 </resources> |
OLD | NEW |