Bug 1130203 - Update share overlay row pressed color & color names. r=mhaigh

Switched over to using Fennec color palette rather than specific duplicate
colors.
This commit is contained in:
Michael Comella 2015-03-18 17:17:08 -07:00
parent 8d609702c9
commit 509a1fb787
3 changed files with 4 additions and 8 deletions

View File

@ -9,7 +9,7 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/overlay_share_selected" />
<item android:drawable="@color/overlay_share_background"/>
<item android:state_pressed="true" android:drawable="@color/toolbar_grey_pressed" />
<item android:drawable="@color/toolbar_grey"/>
</selector>

View File

@ -12,7 +12,7 @@
<item android:state_pressed="true">
<shape>
<solid android:color="@color/overlay_share_selected"/>
<solid android:color="@color/toolbar_grey_pressed"/>
<corners android:topLeftRadius="@dimen/button_corner_radius"
android:topRightRadius="@dimen/button_corner_radius"/>
</shape>
@ -20,7 +20,7 @@
<item>
<shape>
<solid android:color="@color/overlay_share_background"/>
<solid android:color="@color/toolbar_grey"/>
<corners android:topLeftRadius="@dimen/button_corner_radius"
android:topRightRadius="@dimen/button_corner_radius"/>
</shape>

View File

@ -81,10 +81,6 @@
<color name="text_color_secondary_inverse">#DDDDDD</color>
<color name="text_color_tertiary_inverse">#A4A7A9</color>
<!-- Colours used for share overlay button background -->
<color name="overlay_share_background">#FFEBEBF0</color>
<color name="overlay_share_selected">#FFF5F5F5</color>
<!-- Disabled colors -->
<color name="text_color_primary_disable_only">#999999</color>