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

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

Issue 2632493003: [Android History] Styling changes (Closed)
Patch Set: Created 3 years, 11 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
Index: chrome/android/java/res/layout/history_header.xml
diff --git a/chrome/android/java/res/layout/history_header.xml b/chrome/android/java/res/layout/history_header.xml
index 7e8ee80302e8517b0295d846aefa5cc13bfb2719..c57ef18a13f7dfd2ab233a460cd9a7ff710971c9 100644
--- a/chrome/android/java/res/layout/history_header.xml
+++ b/chrome/android/java/res/layout/history_header.xml
@@ -18,21 +18,29 @@
<org.chromium.ui.widget.TextViewWithClickableSpans
android:id="@+id/other_forms_of_browsing_history"
- style="@style/PrivacyDisclaimerText" />
+ style="@style/PrivacyDisclaimerText" />
- <Button
- android:id="@+id/clear_browsing_data_button"
+ <FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
- style="@style/ButtonCompatBorderless"
- android:paddingTop="16dp"
- android:paddingBottom="16dp"
- android:paddingStart="16dp"
- android:paddingEnd="16dp"
- android:gravity="center_vertical|start"
- android:text="@string/open_clear_browsing_data_dialog_button"
- android:textAllCaps="true"
- android:textColor="@color/light_active_color"
- android:textSize="16sp" />
+ android:layout_marginBottom="8dp"
+ android:background="@android:color/white" >
+
+ <Button
+ android:id="@+id/clear_browsing_data_button"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ style="@style/ButtonCompatBorderless"
+ android:paddingTop="16dp"
+ android:paddingBottom="16dp"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp"
+ android:gravity="center_vertical|start"
+ android:text="@string/open_clear_browsing_data_dialog_button"
+ android:textAllCaps="true"
+ android:textColor="@color/history_cbd_button_tint"
+ android:textSize="16sp" />
+
+ </FrameLayout>
</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698