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 <style name="RobotoMediumStyle"> | 7 <style name="RobotoMediumStyle"> |
8 <item name="android:fontFamily">sans-serif-medium</item> | 8 <item name="android:fontFamily">sans-serif-medium</item> |
9 </style> | 9 </style> |
10 <!-- Preferences --> | 10 <!-- Preferences --> |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 <style name="MainTheme.LowEnd" parent="MainTheme"> | 132 <style name="MainTheme.LowEnd" parent="MainTheme"> |
133 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite
m> | 133 <item name="android:popupWindowStyle">@style/ListPopupWindow.LowEnd</ite
m> |
134 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd<
/item> | 134 <item name="android:listPopupWindowStyle">@style/ListPopupWindow.LowEnd<
/item> |
135 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> | 135 <item name="android:spinnerStyle">@style/Spinner.LowEnd</item> |
136 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi
ew.LowEnd</item> | 136 <item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextVi
ew.LowEnd</item> |
137 | 137 |
138 <!-- Without HW acceleration the default text cursor looks weird (top | 138 <!-- Without HW acceleration the default text cursor looks weird (top |
139 half is way brighter than the bottom), so we use our own. --> | 139 half is way brighter than the bottom), so we use our own. --> |
140 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it
em> | 140 <item name="android:textCursorDrawable">@drawable/text_cursor_lowend</it
em> |
141 </style> | 141 </style> |
| 142 |
| 143 <!-- Password-related text on Password Entry Editor --> |
| 144 <style name="PasswordEntryEditorTextView" parent="MainTheme"> |
| 145 <item name="android:textColor">@color/default_text_color</item> |
| 146 <item name="android:layout_width">match_parent</item> |
| 147 <item name="android:layout_height">match_parent</item> |
| 148 <item name="android:textAppearance">?android:attr/textAppearanceMedium</
item> |
| 149 </style> |
142 </resources> | 150 </resources> |
OLD | NEW |