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

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

Issue 2952333002: Fix padding around FRE search engine dialog (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2017 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 <!-- Layout used to present a set of default search engines to the user. --> 7 <!-- Layout used to present a set of default search engines to the user. -->
8 <LinearLayout 8 <LinearLayout
9 xmlns:android="http://schemas.android.com/apk/res/android" 9 xmlns:android="http://schemas.android.com/apk/res/android"
10 xmlns:chrome="http://schemas.android.com/apk/res-auto" 10 xmlns:chrome="http://schemas.android.com/apk/res-auto"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 android:textColor="@color/default_text_color" 44 android:textColor="@color/default_text_color"
45 android:textSize="@dimen/fre_title_text_size" 45 android:textSize="@dimen/fre_title_text_size"
46 android:text="@string/search_engine_dialog_title" /> 46 android:text="@string/search_engine_dialog_title" />
47 47
48 <View style="@style/Divider" /> 48 <View style="@style/Divider" />
49 49
50 <org.chromium.chrome.browser.widget.RadioButtonLayout 50 <org.chromium.chrome.browser.widget.RadioButtonLayout
51 android:id="@+id/default_search_engine_dialog_options" 51 android:id="@+id/default_search_engine_dialog_options"
52 android:layout_width="match_parent" 52 android:layout_width="match_parent"
53 android:layout_height="wrap_content" 53 android:layout_height="wrap_content"
54 android:layout_marginTop="12dp"
54 android:layout_marginStart="12dp" 55 android:layout_marginStart="12dp"
55 android:layout_marginEnd="@dimen/signin_chooser_padding" /> 56 android:layout_marginEnd="@dimen/signin_chooser_padding" />
56 </LinearLayout> 57 </LinearLayout>
57 </org.chromium.chrome.browser.firstrun.FirstRunChooserView> 58 </org.chromium.chrome.browser.firstrun.FirstRunChooserView>
58 </FrameLayout> 59 </FrameLayout>
59 60
60 <TextView 61 <TextView
61 android:layout_width="match_parent" 62 android:layout_width="match_parent"
62 android:layout_height="wrap_content" 63 android:layout_height="wrap_content"
63 android:text="@string/search_engine_dialog_footer" 64 android:text="@string/search_engine_dialog_footer"
(...skipping 13 matching lines...) Expand all
77 android:paddingStart="@dimen/fre_button_padding" 78 android:paddingStart="@dimen/fre_button_padding"
78 android:paddingEnd="@dimen/fre_button_padding" 79 android:paddingEnd="@dimen/fre_button_padding"
79 android:text="@string/ok" 80 android:text="@string/ok"
80 android:textAllCaps="true" 81 android:textAllCaps="true"
81 android:textColor="@android:color/white" 82 android:textColor="@android:color/white"
82 android:textSize="14sp" 83 android:textSize="14sp"
83 chrome:buttonColor="@color/light_active_color" 84 chrome:buttonColor="@color/light_active_color"
84 chrome:buttonRaised="false" /> 85 chrome:buttonRaised="false" />
85 86
86 </LinearLayout> 87 </LinearLayout>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698