Skip to content

Commit

Permalink
[Leipzig][Android] Fix paddings in the Address form.
Browse files Browse the repository at this point in the history
before:
https://screenshot.googleplex.com/6sE73cHN8PvFNN7.png
after:
https://screenshot.googleplex.com/3aQH4EVxReNeswQ.png
payments, just to show that "after" is consistent with it
https://screenshot.googleplex.com/8wRkNe2UAw2W3oT.png


Bug: 1408424
Change-Id: Ia8f18540fa09efe645ebf4f3ea85eca1a4b8ec57
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4264259
Reviewed-by: Stephen McGruer <smcgruer@chromium.org>
Commit-Queue: Dmitry Vykochko <vykochko@google.com>
Reviewed-by: Dominic Battré <battre@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1107206}
  • Loading branch information
DVykochko authored and Chromium LUCI CQ committed Feb 18, 2023
1 parent 20ff6fd commit d47f8e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ found in the LICENSE file.
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="16dp"
android:layout_marginStart="@dimen/pref_autofill_field_horizontal_padding"
android:layout_marginEnd="@dimen/pref_autofill_field_horizontal_padding"
android:textAppearance="@style/TextAppearance.TextSmall.Secondary"
android:text="@string/payments_required_field_message" />

Expand All @@ -24,6 +26,8 @@ found in the LICENSE file.
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="16dp"
android:layout_marginStart="@dimen/pref_autofill_field_horizontal_padding"
android:layout_marginEnd="@dimen/pref_autofill_field_horizontal_padding"
android:textAppearance="@style/TextAppearance.TextSmall.Secondary" />

<include layout="@layout/autofill_editor_base_buttons" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ found in the LICENSE file.
android:id="@+id/contents"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="@dimen/pref_autofill_content_spacing"
android:paddingEnd="@dimen/pref_autofill_content_spacing"
android:layout_marginStart="@dimen/pref_autofill_content_spacing"
android:layout_marginEnd="@dimen/pref_autofill_content_spacing"
android:orientation="vertical" />

</org.chromium.components.browser_ui.widget.FadingEdgeScrollView>
Expand Down

0 comments on commit d47f8e3

Please sign in to comment.