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 | 6 |
7 <resources> | 7 <resources> |
8 <!-- Preferences --> | 8 <!-- Preferences --> |
9 <style name="PreferencesTheme" parent="ThemeWithActionBar"> | 9 <style name="PreferencesTheme" parent="ThemeWithActionBar"> |
10 <item name="android:textColorLink">@color/pref_accent_color</item> | 10 <item name="android:textColorLink">@color/pref_accent_color</item> |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 <item name="android:showDividers">middle</item> | 148 <item name="android:showDividers">middle</item> |
149 </style> | 149 </style> |
150 <style name="ButtonBarButton" parent="@android:style/Widget.Holo.Light.Butto
n"> | 150 <style name="ButtonBarButton" parent="@android:style/Widget.Holo.Light.Butto
n"> |
151 <item name="android:layout_width">0dp</item> | 151 <item name="android:layout_width">0dp</item> |
152 <item name="android:layout_height">match_parent</item> | 152 <item name="android:layout_height">match_parent</item> |
153 <item name="android:layout_weight">1</item> | 153 <item name="android:layout_weight">1</item> |
154 <item name="android:background">?attr/selectableItemBackground</item> | 154 <item name="android:background">?attr/selectableItemBackground</item> |
155 <item name="android:paddingStart">4dp</item> | 155 <item name="android:paddingStart">4dp</item> |
156 <item name="android:paddingEnd">4dp</item> | 156 <item name="android:paddingEnd">4dp</item> |
157 </style> | 157 </style> |
| 158 <style name="info_bubble"> |
| 159 <item name="android:textColor">@android:color/white</item> |
| 160 <item name="android:textStyle">bold</item> |
| 161 <item name="android:textSize">18sp</item> |
| 162 </style> |
| 163 <style name="FullscreenNotificationBubble" parent="@android:style/Animation.
Toast"> |
| 164 <item name="android:windowEnterAnimation">@anim/fullscreen_notification_
in</item> |
| 165 </style> |
158 | 166 |
159 </resources> | 167 </resources> |
OLD | NEW |