| 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 <!-- A theme for alert dialogs. The colors are copied from MainTheme, and th
e window | 7 <!-- A theme for alert dialogs. The colors are copied from MainTheme, and th
e window |
| 8 dimensions are copied from *.MinWidth theme variants. Sadly there is no | 8 dimensions are copied from *.MinWidth theme variants. Sadly there is no |
| 9 AppCompat.Light.Dialog.Alert or even AppCompat.Light.Dialog.MinWidth. -
-> | 9 AppCompat.Light.Dialog.Alert or even AppCompat.Light.Dialog.MinWidth. -
-> |
| 10 <style name="AlertDialogTheme" parent="Theme.AppCompat.Light.Dialog"> | 10 <style name="AlertDialogTheme" parent="Theme.AppCompat.Light.Dialog"> |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 <style name="PreferenceSpinnerUnderlineView"> | 89 <style name="PreferenceSpinnerUnderlineView"> |
| 90 <item name="android:layout_width">match_parent</item> | 90 <item name="android:layout_width">match_parent</item> |
| 91 <item name="android:layout_height">1dp</item> | 91 <item name="android:layout_height">1dp</item> |
| 92 <item name="android:layout_marginTop">2dp</item> | 92 <item name="android:layout_marginTop">2dp</item> |
| 93 <item name="android:background">@color/input_underline_color</item> | 93 <item name="android:background">@color/input_underline_color</item> |
| 94 </style> | 94 </style> |
| 95 | 95 |
| 96 <style name="ThemeWithActionBar" parent="Theme.AppCompat.Light.DarkActionBar
"> | 96 <style name="ThemeWithActionBar" parent="Theme.AppCompat.Light.DarkActionBar
"> |
| 97 <item name="android:windowBackground">@drawable/action_bar_activity_bg</
item> | 97 <item name="android:windowBackground">@drawable/action_bar_activity_bg</
item> |
| 98 <!-- Action bar color --> | 98 <!-- Action bar color --> |
| 99 <item name="colorPrimary">#263238</item> | 99 <item name="colorPrimary">@color/dark_action_bar_color</item> |
| 100 <!-- Status bar color --> | 100 <!-- Status bar color --> |
| 101 <item name="colorPrimaryDark">#161e21</item> | 101 <item name="colorPrimaryDark">#161e21</item> |
| 102 <!-- Color of checkboxes, switches, buttons, etc. --> | 102 <!-- Color of checkboxes, switches, buttons, etc. --> |
| 103 <item name="colorAccent">@color/pref_accent_color</item> | 103 <item name="colorAccent">@color/pref_accent_color</item> |
| 104 </style> | 104 </style> |
| 105 | 105 |
| 106 <!-- Alert dialogs --> | 106 <!-- Alert dialogs --> |
| 107 <style name="AlertDialogContent"> | 107 <style name="AlertDialogContent"> |
| 108 <item name="android:layout_width">match_parent</item> | 108 <item name="android:layout_width">match_parent</item> |
| 109 <item name="android:layout_height">wrap_content</item> | 109 <item name="android:layout_height">wrap_content</item> |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 <style name="CastMediaRouteButton" parent="@style/Widget.MediaRouter.MediaRo
uteButton"> | 254 <style name="CastMediaRouteButton" parent="@style/Widget.MediaRouter.MediaRo
uteButton"> |
| 255 <item name="android:background">@null</item> | 255 <item name="android:background">@null</item> |
| 256 <item name="android:paddingTop">0dp</item> | 256 <item name="android:paddingTop">0dp</item> |
| 257 <item name="android:paddingBottom">0dp</item> | 257 <item name="android:paddingBottom">0dp</item> |
| 258 <item name="android:paddingStart">0dp</item> | 258 <item name="android:paddingStart">0dp</item> |
| 259 <item name="android:paddingEnd">0dp</item> | 259 <item name="android:paddingEnd">0dp</item> |
| 260 <item name="externalRouteEnabledDrawable">@drawable/ic_cast_dark_chrome<
/item> | 260 <item name="externalRouteEnabledDrawable">@drawable/ic_cast_dark_chrome<
/item> |
| 261 </style> | 261 </style> |
| 262 | 262 |
| 263 </resources> | 263 </resources> |
| OLD | NEW |