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

Side by Side Diff: mobile/android/base/resources/drawable-large-v11/browser_toolbar_action_bar_button.xml

Issue 29348083: Issue 3769 - UI colours gone bad (Closed)
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:
View unified diff | Download patch
OLDNEW
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 5
6 <selector xmlns:android="http://schemas.android.com/apk/res/android" 6 <selector xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:gecko="http://schemas.android.com/apk/res-auto"> 7 xmlns:gecko="http://schemas.android.com/apk/res-auto">
8 8
9 <item gecko:state_private="true" 9 <item gecko:state_private="true"
10 android:state_pressed="true" 10 android:state_pressed="true"
11 android:state_enabled="true"> 11 android:state_enabled="true">
12 12
13 <inset android:insetTop="@dimen/tablet_browser_toolbar_menu_item_inset_v ertical" 13 <inset android:insetTop="@dimen/tablet_browser_toolbar_menu_item_inset_v ertical"
14 android:insetBottom="@dimen/tablet_browser_toolbar_menu_item_inse t_vertical" 14 android:insetBottom="@dimen/tablet_browser_toolbar_menu_item_inse t_vertical"
15 android:insetLeft="@dimen/tablet_browser_toolbar_menu_item_inset_ horizontal" 15 android:insetLeft="@dimen/tablet_browser_toolbar_menu_item_inset_ horizontal"
16 android:insetRight="@dimen/tablet_browser_toolbar_menu_item_inset _horizontal"> 16 android:insetRight="@dimen/tablet_browser_toolbar_menu_item_inset _horizontal">
17 <shape android:shape="rectangle"> 17 <shape android:shape="rectangle">
18 <solid android:color="@color/text_and_tabs_tray_grey"/> 18 <!-- Using ABB color palette. See https://issues.adblockplus.org /ticket/3769 -->
19 <solid android:color="@color/abb_background_light_grey"/>
19 <corners android:radius="@dimen/standard_corner_radius"/> 20 <corners android:radius="@dimen/standard_corner_radius"/>
20 </shape> 21 </shape>
21 </inset> 22 </inset>
22 23
23 </item> 24 </item>
24 25
25 <item gecko:state_private="true" 26 <item gecko:state_private="true"
26 android:state_focused="true" 27 android:state_focused="true"
27 android:state_pressed="false"> 28 android:state_pressed="false">
28 29
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 69
69 </item> 70 </item>
70 71
71 <item> 72 <item>
72 <shape android:shape="rectangle"> 73 <shape android:shape="rectangle">
73 <solid android:color="@android:color/transparent"/> 74 <solid android:color="@android:color/transparent"/>
74 </shape> 75 </shape>
75 </item> 76 </item>
76 77
77 </selector> 78 </selector>
OLDNEW

Powered by Google App Engine
This is Rietveld