OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <resources> | 6 <resources> |
7 <!-- Preferences --> | 7 <!-- Preferences --> |
8 <style name="PreferencesTheme" parent="ThemeWithActionBar"> | 8 <style name="PreferencesTheme" parent="ThemeWithActionBar"> |
9 <item name="android:textColorLink">@color/pref_accent_color</item> | 9 <item name="android:textColorLink">@color/pref_accent_color</item> |
10 <item name="android:alertDialogTheme">@style/PreferencesDialogTheme</ite
m> | 10 <item name="android:alertDialogTheme">@style/PreferencesDialogTheme</ite
m> |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 parent="@android:style/TextAppearance.Material.Notification.Line2"/> | 59 parent="@android:style/TextAppearance.Material.Notification.Line2"/> |
60 <style name="RemoteNotificationProgressBar" parent="@android:style/Widget.Pr
ogressBar.Horizontal"> | 60 <style name="RemoteNotificationProgressBar" parent="@android:style/Widget.Pr
ogressBar.Horizontal"> |
61 <item name="android:minHeight">5dp</item> | 61 <item name="android:minHeight">5dp</item> |
62 </style> | 62 </style> |
63 | 63 |
64 <!-- Web Notifications --> | 64 <!-- Web Notifications --> |
65 <style name="WebNotificationTitle" | 65 <style name="WebNotificationTitle" |
66 parent="@android:style/TextAppearance.Material.Notification.Title"/> | 66 parent="@android:style/TextAppearance.Material.Notification.Title"/> |
67 <style name="WebNotificationBody" | 67 <style name="WebNotificationBody" |
68 parent="@android:style/TextAppearance.Material.Notification.Line2"/> | 68 parent="@android:style/TextAppearance.Material.Notification.Line2"/> |
| 69 <style name="WebNotificationBodyBig" |
| 70 parent="@android:style/TextAppearance.Material.Notification"/> |
69 <style name="WebNotificationOrigin" | 71 <style name="WebNotificationOrigin" |
70 parent="@android:style/TextAppearance.Material.Notification.Info"/> | 72 parent="@android:style/TextAppearance.Material.Notification.Info"/> |
71 <style name="WebNotificationTime" | 73 <style name="WebNotificationTime" |
72 parent="@android:style/TextAppearance.Material.Notification.Time"/> | 74 parent="@android:style/TextAppearance.Material.Notification.Time"/> |
73 <style name="WebNotificationDivider"> | 75 <style name="WebNotificationDivider"> |
74 <!-- From the non-public Drawable notification_template_divider --> | 76 <!-- From the non-public Drawable notification_template_divider --> |
75 <item name="android:background">#29000000</item> | 77 <item name="android:background">#29000000</item> |
76 </style> | 78 </style> |
77 <style name="WebNotificationButton" | 79 <style name="WebNotificationButton" |
78 parent="@android:style/Widget.DeviceDefault.Light.Button.Borderless.Smal
l"> | 80 parent="@android:style/Widget.DeviceDefault.Light.Button.Borderless.Smal
l"> |
(...skipping 30 matching lines...) Expand all Loading... |
109 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite
m> | 111 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite
m> |
110 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd<
/item> | 112 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd<
/item> |
111 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> | 113 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> |
112 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi
ew.LowEnd</item> | 114 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi
ew.LowEnd</item> |
113 | 115 |
114 <!-- Without HW acceleration the default text cursor looks weird (top | 116 <!-- Without HW acceleration the default text cursor looks weird (top |
115 half is way brighter than the bottom), so we use our own. --> | 117 half is way brighter than the bottom), so we use our own. --> |
116 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it
em> | 118 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it
em> |
117 </style> | 119 </style> |
118 </resources> | 120 </resources> |
OLD | NEW |