| 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 | 8 <LinearLayout |
| 9 xmlns:android="http://schemas.android.com/apk/res/android" | 9 xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 10 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 android:layout_height="@dimen/website_settings_popup_button_height" | 75 android:layout_height="@dimen/website_settings_popup_button_height" |
| 76 android:layout_gravity="end" | 76 android:layout_gravity="end" |
| 77 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" | 77 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" |
| 78 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" | 78 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" |
| 79 android:layout_marginTop="8dp" | 79 android:layout_marginTop="8dp" |
| 80 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" | 80 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" |
| 81 android:paddingStart="@dimen/website_settings_popup_button_padding_sides
" | 81 android:paddingStart="@dimen/website_settings_popup_button_padding_sides
" |
| 82 android:text="@string/page_info_site_settings_button" | 82 android:text="@string/page_info_site_settings_button" |
| 83 android:textColor="@color/light_active_color" | 83 android:textColor="@color/light_active_color" |
| 84 style="@style/ButtonCompatBorderless" /> | 84 style="@style/ButtonCompatBorderless" /> |
| 85 |
| 86 <Button |
| 87 android:id="@+id/website_settings_open_online_button" |
| 88 android:layout_width="wrap_content" |
| 89 android:layout_height="@dimen/website_settings_popup_button_height" |
| 90 android:layout_gravity="end" |
| 91 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" |
| 92 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" |
| 93 android:layout_marginTop="8dp" |
| 94 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" |
| 95 android:paddingStart="@dimen/website_settings_popup_button_padding_sides
" |
| 96 android:text="@string/page_info_open_online_button" |
| 97 android:textColor="@color/light_active_color" |
| 98 style="@style/ButtonCompatBorderless" /> |
| 85 </LinearLayout> | 99 </LinearLayout> |
| OLD | NEW |