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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 </style> | 86 </style> |
87 <style name="WebNotificationButtons"> | 87 <style name="WebNotificationButtons"> |
88 <item name="android:layout_marginStart">-8dp</item> | 88 <item name="android:layout_marginStart">-8dp</item> |
89 <item name="android:showDividers">none</item> | 89 <item name="android:showDividers">none</item> |
90 </style> | 90 </style> |
91 <style name="WebNotificationButton" | 91 <style name="WebNotificationButton" |
92 parent="@android:style/Widget.DeviceDefault.Light.Button.Borderless.Smal
l"> | 92 parent="@android:style/Widget.DeviceDefault.Light.Button.Borderless.Smal
l"> |
93 <item name="android:background">@drawable/web_notification_button_backgr
ound</item> | 93 <item name="android:background">@drawable/web_notification_button_backgr
ound</item> |
94 <item name="android:textColor">@color/secondary_text_default_material_li
ght</item> | 94 <item name="android:textColor">@color/secondary_text_default_material_li
ght</item> |
95 </style> | 95 </style> |
| 96 <style name="WebNotificationSettingsButton" |
| 97 parent="@style/WebNotificationButton"> |
| 98 <item name="android:textAppearance">@android:style/TextAppearance.Materi
al.Notification.Info</item> |
| 99 </style> |
96 <style name="WebNotificationLargeIcon"> | 100 <style name="WebNotificationLargeIcon"> |
97 <item name="android:padding">12dp</item> | 101 <item name="android:padding">12dp</item> |
98 <item name="android:background">@null</item> | 102 <item name="android:background">@null</item> |
99 </style> | 103 </style> |
100 <style name="WebNotificationSmallIcon"> | 104 <style name="WebNotificationSmallIcon"> |
101 <item name="android:alpha">1.0</item> | 105 <item name="android:alpha">1.0</item> |
102 <item name="android:background">@drawable/web_notification_small_icon_ba
ckground</item> | 106 <item name="android:background">@drawable/web_notification_small_icon_ba
ckground</item> |
103 <item name="android:padding">3dp</item> | 107 <item name="android:padding">3dp</item> |
104 </style> | 108 </style> |
105 | 109 |
(...skipping 26 matching lines...) Expand all Loading... |
132 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite
m> | 136 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite
m> |
133 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd<
/item> | 137 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd<
/item> |
134 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> | 138 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> |
135 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi
ew.LowEnd</item> | 139 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi
ew.LowEnd</item> |
136 | 140 |
137 <!-- Without HW acceleration the default text cursor looks weird (top | 141 <!-- Without HW acceleration the default text cursor looks weird (top |
138 half is way brighter than the bottom), so we use our own. --> | 142 half is way brighter than the bottom), so we use our own. --> |
139 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it
em> | 143 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it
em> |
140 </style> | 144 </style> |
141 </resources> | 145 </resources> |
OLD | NEW |