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

Unified Diff: chrome/android/java/res/layout/powered_by_chrome_footer.xml

Issue 1323613004: [Custom Tab]Adjust padding for "Powered by Chrome" prompt text (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/res/layout/powered_by_chrome_footer.xml
diff --git a/chrome/android/java/res/layout/powered_by_chrome_footer.xml b/chrome/android/java/res/layout/powered_by_chrome_footer.xml
index 6aeb6bb3a62f405a865a06ba0120b90ebb9b877e..8cc65896de3771d17fca17a73ec52e6bccf19497 100644
--- a/chrome/android/java/res/layout/powered_by_chrome_footer.xml
+++ b/chrome/android/java/res/layout/powered_by_chrome_footer.xml
@@ -6,20 +6,22 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:background="#f5f5f5" >
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="#e0e0e0" />
+ android:paddingTop="4dp" >
<TextView
android:layout_width="match_parent"
- android:layout_height="@dimen/menu_footer_height"
- android:paddingTop="1dp"
+ android:layout_height="wrap_content"
+ android:background="#f5f5f5"
+ android:paddingTop="8dp"
android:paddingStart="16dp"
android:paddingEnd="16dp"
+ android:paddingBottom="8dp"
android:gravity="start|center_vertical"
android:textSize="12sp"
android:textColor="#616161"
android:text="@string/powered_by_chrome_message"
android:maxLines="1" />
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:background="#e0e0e0" />
</FrameLayout>
« no previous file with comments | « no previous file | chrome/android/java/res/values/dimens.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698