| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2013 The Chromium Authors. All rights reserved. | 3 Copyright 2013 The Chromium Authors. All rights reserved. |
| 4 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="match_parent" | 10 android:layout_height="match_parent" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 android:paddingTop="16dp" | 27 android:paddingTop="16dp" |
| 28 android:textColor="@color/url_emphasis_default_text" | 28 android:textColor="@color/url_emphasis_default_text" |
| 29 android:textSize="16sp"/> | 29 android:textSize="16sp"/> |
| 30 | 30 |
| 31 <TextView | 31 <TextView |
| 32 android:id="@+id/website_settings_connection_message" | 32 android:id="@+id/website_settings_connection_message" |
| 33 android:layout_width="match_parent" | 33 android:layout_width="match_parent" |
| 34 android:layout_height="wrap_content" | 34 android:layout_height="wrap_content" |
| 35 android:lineSpacingExtra="3dp" | 35 android:lineSpacingExtra="3dp" |
| 36 android:paddingTop="12dp" | 36 android:paddingTop="12dp" |
| 37 android:textColor="#444444" | 37 android:textColor="@color/website_settings_popup_text" |
| 38 android:textSize="14sp" /> | 38 android:textSize="14sp" /> |
| 39 | 39 |
| 40 <Button | 40 <Button |
| 41 android:id="@+id/website_settings_copy_url_button" | 41 android:id="@+id/website_settings_copy_url_button" |
| 42 android:layout_gravity="end" | 42 android:layout_gravity="end" |
| 43 android:layout_width="wrap_content" | 43 android:layout_width="wrap_content" |
| 44 android:layout_height="@dimen/website_settings_popup_button_height" | 44 android:layout_height="@dimen/website_settings_popup_button_height" |
| 45 android:layout_marginEnd="@dimen/website_settings_popup_button_margi
n_sides" | 45 android:layout_marginEnd="@dimen/website_settings_popup_button_margi
n_sides" |
| 46 android:layout_marginStart="@dimen/website_settings_popup_button_mar
gin_sides" | 46 android:layout_marginStart="@dimen/website_settings_popup_button_mar
gin_sides" |
| 47 android:layout_marginBottom="8dp" | 47 android:layout_marginBottom="8dp" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 android:layout_marginStart="@dimen/website_settings_popup_button
_margin_sides" | 90 android:layout_marginStart="@dimen/website_settings_popup_button
_margin_sides" |
| 91 android:paddingEnd="@dimen/website_settings_popup_button_padding
_sides" | 91 android:paddingEnd="@dimen/website_settings_popup_button_padding
_sides" |
| 92 android:paddingStart="@dimen/website_settings_popup_button_paddi
ng_sides" | 92 android:paddingStart="@dimen/website_settings_popup_button_paddi
ng_sides" |
| 93 android:text="@string/page_info_site_settings_button" | 93 android:text="@string/page_info_site_settings_button" |
| 94 android:textColor="@color/website_settings_popup_button_text" | 94 android:textColor="@color/website_settings_popup_button_text" |
| 95 style="@style/ButtonCompatBorderless" /> | 95 style="@style/ButtonCompatBorderless" /> |
| 96 </FrameLayout> | 96 </FrameLayout> |
| 97 </LinearLayout> | 97 </LinearLayout> |
| 98 | 98 |
| 99 </LinearLayout> | 99 </LinearLayout> |
| OLD | NEW |