Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: chrome/android/java/res/layout/password_entry_editor_interactive.xml

Issue 2427853002: Revert "Inherit default text color from parent themes." (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 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 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="match_parent" 8 android:layout_height="match_parent"
9 android:fillViewport="true" > 9 android:fillViewport="true" >
10 10
(...skipping 14 matching lines...) Expand all
25 android:gravity="center_vertical" 25 android:gravity="center_vertical"
26 android:textAppearance="?android:attr/textAppearanceMedium" /> 26 android:textAppearance="?android:attr/textAppearanceMedium" />
27 27
28 <LinearLayout 28 <LinearLayout
29 android:layout_width="wrap_content" 29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content" 30 android:layout_height="wrap_content"
31 android:orientation="horizontal"> 31 android:orientation="horizontal">
32 32
33 <TextView 33 <TextView
34 android:id="@+id/password_entry_editor_url" 34 android:id="@+id/password_entry_editor_url"
35 android:textColor="@color/default_text_color"
35 android:layout_width="fill_parent" 36 android:layout_width="fill_parent"
36 android:layout_height="wrap_content" 37 android:layout_height="wrap_content"
37 android:layout_marginTop="10dp" 38 android:layout_marginTop="10dp"
38 android:layout_marginStart="15dp" 39 android:layout_marginStart="15dp"
39 android:textAppearance="?android:attr/textAppearanceMedium" /> 40 android:textAppearance="?android:attr/textAppearanceMedium" />
40 41
41 <View 42 <View
42 android:layout_width="0dp" 43 android:layout_width="0dp"
43 android:layout_height="0dp" 44 android:layout_height="0dp"
44 android:layout_weight="1" /> 45 android:layout_weight="1" />
(...skipping 20 matching lines...) Expand all
65 android:gravity="center_vertical" 66 android:gravity="center_vertical"
66 android:textAppearance="?android:attr/textAppearanceMedium" /> 67 android:textAppearance="?android:attr/textAppearanceMedium" />
67 68
68 <LinearLayout 69 <LinearLayout
69 android:layout_width="wrap_content" 70 android:layout_width="wrap_content"
70 android:layout_height="wrap_content" 71 android:layout_height="wrap_content"
71 android:orientation="horizontal"> 72 android:orientation="horizontal">
72 73
73 <TextView 74 <TextView
74 android:id="@+id/password_entry_editor_name" 75 android:id="@+id/password_entry_editor_name"
76 android:textColor="@color/default_text_color"
75 android:layout_width="fill_parent" 77 android:layout_width="fill_parent"
76 android:layout_height="wrap_content" 78 android:layout_height="wrap_content"
77 android:layout_marginTop="10dp" 79 android:layout_marginTop="10dp"
78 android:layout_marginStart="15dp" 80 android:layout_marginStart="15dp"
79 android:textAppearance="?android:attr/textAppearanceMedium" /> 81 android:textAppearance="?android:attr/textAppearanceMedium" />
80 82
81 <View 83 <View
82 android:layout_width="0dp" 84 android:layout_width="0dp"
83 android:layout_height="0dp" 85 android:layout_height="0dp"
84 android:layout_weight="1" /> 86 android:layout_weight="1" />
(...skipping 20 matching lines...) Expand all
105 android:gravity="center_vertical" 107 android:gravity="center_vertical"
106 android:textAppearance="?android:attr/textAppearanceMedium" /> 108 android:textAppearance="?android:attr/textAppearanceMedium" />
107 109
108 <LinearLayout 110 <LinearLayout
109 android:layout_width="wrap_content" 111 android:layout_width="wrap_content"
110 android:layout_height="wrap_content" 112 android:layout_height="wrap_content"
111 android:orientation="horizontal"> 113 android:orientation="horizontal">
112 114
113 <TextView 115 <TextView
114 android:id="@+id/password_entry_editor_password" 116 android:id="@+id/password_entry_editor_password"
117 android:textColor="@color/default_text_color"
115 android:layout_width="fill_parent" 118 android:layout_width="fill_parent"
116 android:layout_height="wrap_content" 119 android:layout_height="wrap_content"
117 android:layout_marginTop="10dp" 120 android:layout_marginTop="10dp"
118 android:layout_marginStart="15dp" 121 android:layout_marginStart="15dp"
119 android:textAppearance="?android:attr/textAppearanceMedium" /> 122 android:textAppearance="?android:attr/textAppearanceMedium" />
120 123
121 <View 124 <View
122 android:layout_width="0dp" 125 android:layout_width="0dp"
123 android:layout_height="0dp" 126 android:layout_height="0dp"
124 android:layout_weight="1" /> 127 android:layout_weight="1" />
(...skipping 16 matching lines...) Expand all
141 android:layout_marginTop="10dp" 144 android:layout_marginTop="10dp"
142 android:layout_marginEnd="15dp" 145 android:layout_marginEnd="15dp"
143 android:src="@drawable/ic_content_copy" 146 android:src="@drawable/ic_content_copy"
144 android:contentDescription="@string/password_entry_editor_copy_s tored_password" /> 147 android:contentDescription="@string/password_entry_editor_copy_s tored_password" />
145 148
146 </LinearLayout> 149 </LinearLayout>
147 150
148 </LinearLayout> 151 </LinearLayout>
149 152
150 </ScrollView> 153 </ScrollView>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698