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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 <style name="PreferenceLayout" parent="PreferenceLayoutBase" /> | 51 <style name="PreferenceLayout" parent="PreferenceLayoutBase" /> |
52 | 52 |
53 <!-- Buttons --> | 53 <!-- Buttons --> |
54 <style name="ButtonCompat" parent="ButtonCompatBase"> | 54 <style name="ButtonCompat" parent="ButtonCompatBase"> |
55 <item name="android:background">@drawable/button_compat</item> | 55 <item name="android:background">@drawable/button_compat</item> |
56 <item name="android:fontFamily">sans-serif-medium</item> | 56 <item name="android:fontFamily">sans-serif-medium</item> |
57 </style> | 57 </style> |
58 <style name="ButtonCompatBorderless" parent="ButtonCompat"> | 58 <style name="ButtonCompatBorderless" parent="ButtonCompat"> |
59 <item name="android:background">@drawable/button_borderless_compat</item
> | 59 <item name="android:background">@drawable/button_borderless_compat</item
> |
60 </style> | 60 </style> |
61 | 61 <!-- Cast notification --> |
| 62 <style name="RemoteNotificationTitle" |
| 63 parent="@android:style/TextAppearance.Material.Notification.Title"> |
| 64 <item name="android:layout_marginBottom">4dp</item> |
| 65 </style> |
| 66 <style name="RemoteNotificationText" |
| 67 parent="@android:style/TextAppearance.Material.Notification.Line2"/> |
| 68 <style name="RemoteNotificationProgressBar" parent="@android:style/Widget.Pr
ogressBar.Horizontal"> |
| 69 <item name="android:minHeight">5dp</item> |
| 70 </style> |
| 71 |
62 </resources> | 72 </resources> |
OLD | NEW |