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

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

Issue 2107583002: Change chooser action button to use grey and blue background (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed chooser action button to use grey and blue background Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:chrome="http://schemas.android.com/apk/res-auto"
8 android:layout_width="fill_parent" 9 android:layout_width="fill_parent"
9 android:layout_height="fill_parent" 10 android:layout_height="fill_parent"
10 android:orientation="vertical" 11 android:orientation="vertical"
11 android:paddingBottom="8dp" 12 android:paddingBottom="8dp"
12 android:paddingTop="20dp" > 13 android:paddingTop="20dp" >
13 14
14 <!-- The title at the top. --> 15 <!-- The title at the top. -->
15 <org.chromium.ui.widget.TextViewWithClickableSpans 16 <org.chromium.ui.widget.TextViewWithClickableSpans
16 android:id="@+id/dialog_title" 17 android:id="@+id/dialog_title"
17 android:layout_width="wrap_content" 18 android:layout_width="wrap_content"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <org.chromium.ui.widget.TextViewWithClickableSpans 61 <org.chromium.ui.widget.TextViewWithClickableSpans
61 android:id="@+id/status" 62 android:id="@+id/status"
62 android:layout_width="wrap_content" 63 android:layout_width="wrap_content"
63 android:layout_height="wrap_content" 64 android:layout_height="wrap_content"
64 android:layout_marginTop="12dp" 65 android:layout_marginTop="12dp"
65 android:paddingStart="16dp" 66 android:paddingStart="16dp"
66 android:paddingEnd="16dp" 67 android:paddingEnd="16dp"
67 android:textSize="14sp" /> 68 android:textSize="14sp" />
68 69
69 <!-- Button row. --> 70 <!-- Button row. -->
70 <Button 71 <org.chromium.ui.widget.ButtonCompat
71 android:id="@+id/positive" 72 android:id="@+id/positive"
72 style="?android:attr/buttonBarButtonStyle"
73 android:layout_height="wrap_content" 73 android:layout_height="wrap_content"
74 android:layout_width="wrap_content" 74 android:layout_width="wrap_content"
75 android:layout_gravity="end" 75 android:layout_gravity="end"
76 android:paddingTop="12dp" 76 android:layout_marginTop="12dp"
77 android:paddingEnd="16dp" /> 77 android:layout_marginEnd="12dp"
78 android:paddingStart="16dp"
79 android:paddingEnd="16dp"
80 android:textAllCaps="true"
81 android:textColor="#fff"
82 chrome:buttonColor="@color/pref_accent_color" />
78 </LinearLayout> 83 </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