| Index: mobile/android/base/toolbar/NavButton.java |
| =================================================================== |
| --- a/mobile/android/base/toolbar/NavButton.java |
| +++ b/mobile/android/base/toolbar/NavButton.java |
| @@ -65,17 +65,18 @@ abstract class NavButton extends ShapedB |
| if (drawable == null) { |
| return; |
| } |
| final StateListDrawable stateList = new StateListDrawable(); |
| stateList.addState(PRIVATE_PRESSED_STATE_SET, getColorDrawable(R.color.placeholder_active_grey)); |
| stateList.addState(PRESSED_ENABLED_STATE_SET, getColorDrawable(R.color.toolbar_grey_pressed)); |
| - stateList.addState(PRIVATE_FOCUSED_STATE_SET, getColorDrawable(R.color.text_and_tabs_tray_grey)); |
| + // Using ABB color palette. See https://issues.adblockplus.org/ticket/3769 |
| + stateList.addState(PRIVATE_FOCUSED_STATE_SET, getColorDrawable(R.color.abb_background_light_grey)); |
| stateList.addState(FOCUSED_STATE_SET, getColorDrawable(R.color.tablet_highlight_focused)); |
| stateList.addState(PRIVATE_STATE_SET, getColorDrawable(R.color.tabs_tray_grey_pressed)); |
| stateList.addState(EMPTY_STATE_SET, drawable); |
| setBackgroundDrawable(stateList); |
| } |
| @Override |