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

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

Issue 2356643002: Change offline pages icon from offline_bolt to offline_pin (Closed)
Patch Set: optimize resources Created 4 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 unified diff | Download patch
OLDNEW
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 14 matching lines...) Expand all
25 android:layout_height="wrap_content" 25 android:layout_height="wrap_content"
26 android:orientation="horizontal" 26 android:orientation="horizontal"
27 android:paddingTop="16dp" > 27 android:paddingTop="16dp" >
28 28
29 <ImageView android:id="@+id/offline_icon" 29 <ImageView android:id="@+id/offline_icon"
30 style="@style/LocationBarButton" 30 style="@style/LocationBarButton"
31 android:layout_width="wrap_content" 31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content" 32 android:layout_height="wrap_content"
33 android:layout_gravity="start|top" 33 android:layout_gravity="start|top"
34 android:paddingEnd="8dp" 34 android:paddingEnd="8dp"
35 android:src="@drawable/offline_bolt" 35 android:src="@drawable/offline_pin"
36 android:visibility="gone" 36 android:visibility="gone"
37 android:contentDescription="@string/page_info_offline_icon" /> 37 android:contentDescription="@string/page_info_offline_icon" />
38 38
39 <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPop up$ElidedUrlTextView" 39 <view class="org.chromium.chrome.browser.pageinfo.WebsiteSettingsPop up$ElidedUrlTextView"
40 android:id="@+id/website_settings_url" 40 android:id="@+id/website_settings_url"
41 android:layout_width="match_parent" 41 android:layout_width="match_parent"
42 android:layout_height="wrap_content" 42 android:layout_height="wrap_content"
43 android:ellipsize="end" 43 android:ellipsize="end"
44 android:lineSpacingExtra="6dp" 44 android:lineSpacingExtra="6dp"
45 android:textAlignment="viewStart" 45 android:textAlignment="viewStart"
(...skipping 28 matching lines...) Expand all
74 android:layout_gravity="end" 74 android:layout_gravity="end"
75 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides" 75 android:layout_marginEnd="@dimen/website_settings_popup_padding_sides"
76 android:layout_marginStart="@dimen/website_settings_popup_padding_sides" 76 android:layout_marginStart="@dimen/website_settings_popup_padding_sides"
77 android:layout_marginTop="8dp" 77 android:layout_marginTop="8dp"
78 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides" 78 android:paddingEnd="@dimen/website_settings_popup_button_padding_sides"
79 android:paddingStart="@dimen/website_settings_popup_button_padding_sides " 79 android:paddingStart="@dimen/website_settings_popup_button_padding_sides "
80 android:text="@string/page_info_site_settings_button" 80 android:text="@string/page_info_site_settings_button"
81 android:textColor="@color/light_active_color" 81 android:textColor="@color/light_active_color"
82 style="@style/ButtonCompatBorderless" /> 82 style="@style/ButtonCompatBorderless" />
83 </LinearLayout> 83 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698