OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <resources> | 8 <resources> |
9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light"> | 9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light"> |
10 <item name="colorPrimary">#E0E0E0</item> | 10 <item name="colorPrimary">#E0E0E0</item> |
11 <item name="colorPrimaryDark">#616161</item> | 11 <item name="colorPrimaryDark">#616161</item> |
12 </style> | 12 </style> |
13 <style name="BaseTheme.NavigationDrawer" parent="@style/BaseTheme"> | 13 <style name="BaseTheme.NavigationDrawer" parent="@style/BaseTheme"> |
14 <item name="windowActionBar">false</item> | 14 <item name="windowActionBar">false</item> |
15 <item name="android:windowDrawsSystemBarBackgrounds">true</item> | 15 <item name="android:windowDrawsSystemBarBackgrounds">true</item> |
16 </style> | 16 </style> |
| 17 <style name="BaseTheme.Desktop" parent="@style/BaseTheme"> |
| 18 <item name="actionBarStyle">@style/ActionBar.Desktop</item> |
| 19 </style> |
| 20 |
| 21 <style name="ActionBar.Desktop" parent="@style/Widget.AppCompat.ActionBar"> |
| 22 <item name="displayOptions">homeAsUp</item> |
| 23 </style> |
17 | 24 |
18 <style name="EmptyStateText" parent="@android:style/TextAppearance.Large"> | 25 <style name="EmptyStateText" parent="@android:style/TextAppearance.Large"> |
19 <item name="android:textColor">#888</item> | 26 <item name="android:textColor">#888</item> |
20 </style> | 27 </style> |
21 <style name="EmptyStateText.Hyperlink" parent="@style/EmptyStateText"> | 28 <style name="EmptyStateText.Hyperlink" parent="@style/EmptyStateText"> |
22 <item name="android:textColor">@android:color/holo_blue_light</item> | 29 <item name="android:textColor">@android:color/holo_blue_light</item> |
23 <item name="android:textStyle">italic</item> | 30 <item name="android:textStyle">italic</item> |
24 </style> | 31 </style> |
25 </resources> | 32 </resources> |
OLD | NEW |