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

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

Issue 2365733002: Inherit default text color from MainTheme. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated CL with android:textColor added through DownloadsActivityTheme as well as reusing style/Pay… 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 <org.chromium.chrome.browser.signin.SigninAndSyncView 5 <org.chromium.chrome.browser.signin.SigninAndSyncView
6 xmlns:android="http://schemas.android.com/apk/res/android" 6 xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:chrome="http://schemas.android.com/apk/res-auto" 7 xmlns:chrome="http://schemas.android.com/apk/res-auto"
8 android:layout_width="match_parent" 8 android:layout_width="match_parent"
9 android:layout_height="wrap_content" 9 android:layout_height="wrap_content"
10 android:orientation="vertical" 10 android:orientation="vertical"
11 android:padding="16dp" > 11 android:padding="16dp" >
12 12
13 <TextView 13 <TextView
14 android:id="@+id/title" 14 android:id="@+id/title"
15 android:layout_width="wrap_content" 15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content" 16 android:layout_height="wrap_content"
17 android:layout_marginBottom="8dp" 17 android:layout_marginBottom="8dp"
18 android:textColor="@color/default_text_color"
19 android:textSize="16sp" 18 android:textSize="16sp"
20 android:textStyle="bold" /> 19 android:textStyle="bold" />
21 20
22 <TextView 21 <TextView
23 android:id="@+id/description" 22 android:id="@+id/description"
24 android:layout_width="wrap_content" 23 android:layout_width="wrap_content"
25 android:layout_height="wrap_content" 24 android:layout_height="wrap_content"
26 android:textColor="@color/default_text_color"
27 android:textSize="14sp" /> 25 android:textSize="14sp" />
28 26
29 <LinearLayout 27 <LinearLayout
30 android:layout_width="wrap_content" 28 android:layout_width="wrap_content"
31 android:layout_height="wrap_content" 29 android:layout_height="wrap_content"
32 android:layout_marginTop="16dp" 30 android:layout_marginTop="16dp"
33 android:layout_gravity="end" 31 android:layout_gravity="end"
34 android:gravity="center_vertical" 32 android:gravity="center_vertical"
35 android:orientation="horizontal" > 33 android:orientation="horizontal" >
36 34
(...skipping 11 matching lines...) Expand all
48 android:id="@+id/sign_in" 46 android:id="@+id/sign_in"
49 android:layout_width="wrap_content" 47 android:layout_width="wrap_content"
50 android:layout_height="wrap_content" 48 android:layout_height="wrap_content"
51 android:textAllCaps="true" 49 android:textAllCaps="true"
52 android:textColor="@android:color/white" 50 android:textColor="@android:color/white"
53 android:textSize="15sp" 51 android:textSize="15sp"
54 chrome:buttonColor="@color/light_active_color" /> 52 chrome:buttonColor="@color/light_active_color" />
55 </LinearLayout> 53 </LinearLayout>
56 54
57 </org.chromium.chrome.browser.signin.SigninAndSyncView> 55 </org.chromium.chrome.browser.signin.SigninAndSyncView>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698