Chromium Code Reviews| 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 <!-- Note: the values below are copied from PlayMovies/YouTube's style. --> | |
|
whywhat
2015/03/13 19:25:48
Probably remove? Is it still true? I thought we up
aberent
2015/03/17 21:33:51
Done.
| |
| 63 <style name="RemoteNotificationTitle" | |
| 64 parent="@android:style/TextAppearance.Material.Notification.Title"> | |
| 65 <item name="android:layout_marginBottom">4dp</item> | |
| 66 </style> | |
| 67 <style name="RemoteNotificationText" | |
| 68 parent="@android:style/TextAppearance.Material.Notification.Line2"/> | |
| 69 <style name="RemoteNotificationProgressBar" parent="@android:style/Widget.Pr ogressBar.Horizontal"> | |
| 70 <item name="android:minHeight">5dp</item> | |
| 71 </style> | |
| 72 | |
| 62 </resources> | 73 </resources> |
| OLD | NEW |