Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: mobile/android/base/resources/layout/home_empty_panel.xml

Issue 29348083: Issue 3769 - UI colours gone bad (Closed)
Left Patch Set: Created July 21, 2016, 2:09 a.m.
Right Patch Set: Adjusting comments which indicates what has being changed by this issue in upstream code Created Oct. 25, 2016, 12:16 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6 android:id="@+id/home_empty_view" 6 android:id="@+id/home_empty_view"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="match_parent" 8 android:layout_height="match_parent"
9 android:orientation="vertical" 9 android:orientation="vertical"
10 android:gravity="center" 10 android:gravity="center"
(...skipping 11 matching lines...) Expand all
22 android:layout_marginBottom="10dp" 22 android:layout_marginBottom="10dp"
23 android:gravity="top|center" 23 android:gravity="top|center"
24 android:scaleType="fitCenter"/> 24 android:scaleType="fitCenter"/>
25 25
26 <TextView android:id="@+id/home_empty_text" 26 <TextView android:id="@+id/home_empty_text"
27 android:layout_width="match_parent" 27 android:layout_width="match_parent"
28 android:layout_height="wrap_content" 28 android:layout_height="wrap_content"
29 android:gravity="top|center" 29 android:gravity="top|center"
30 android:textAppearance="@style/TextAppearance.EmptyMessage"/> 30 android:textAppearance="@style/TextAppearance.EmptyMessage"/>
31 31
32 <!-- Using ABB color. See https://issues.adblockplus.org/ticket/3769 --> 32 <!-- Using ABB color palette. See https://issues.adblockplus.org/ticket/3769 -->
33 <TextView android:id="@+id/home_empty_hint" 33 <TextView android:id="@+id/home_empty_hint"
34 android:layout_width="wrap_content" 34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content" 35 android:layout_height="wrap_content"
36 android:visibility="gone" 36 android:visibility="gone"
37 android:gravity="top|center" 37 android:gravity="top|center"
38 android:textAppearance="@style/TextAppearance.EmptyHint" 38 android:textAppearance="@style/TextAppearance.EmptyHint"
39 android:textColorLink="@color/abb_accent_dark_blue" /> 39 android:textColorLink="@color/abb_accent_dark_blue" />
40 <!-- Empty spacer view --> 40 <!-- Empty spacer view -->
41 <View android:layout_width="match_parent" 41 <View android:layout_width="match_parent"
42 android:layout_height="0dip" 42 android:layout_height="0dip"
43 android:layout_weight="2"/> 43 android:layout_weight="2"/>
44 44
45 </LinearLayout> 45 </LinearLayout>
46 46
LEFTRIGHT

Powered by Google App Engine
This is Rietveld