1
0
Fork 0

For #10848 - Fixes icon colors and missing divider

master
Jeff Boek 2020-05-29 18:16:57 -07:00
parent 8b24970aaf
commit 91402f9b38
2 changed files with 4 additions and 4 deletions

View File

@ -3,6 +3,6 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="?tabTrayHeadingIcon" android:state_selected="true" />
<item android:color="?tabTrayHeadingIconInactive" />
<item android:color="@color/tab_tray_heading_icon_normal_theme" android:state_selected="true" />
<item android:color="@color/tab_tray_heading_icon_inactive_normal_theme" />
</selector>

View File

@ -85,7 +85,7 @@
android:id="@+id/divider"
android:layout_width="0dp"
android:layout_height="1dp"
android:background="?tabTrayItemDivider"
android:background="@color/tab_tray_item_divider_normal_theme"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tab_layout" />
@ -99,7 +99,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tab_layout"
app:layout_constraintTop_toBottomOf="@+id/divider"
mozac:tabsTrayItemBackgroundColor="@color/foundation_normal_theme"
mozac:tabsTrayItemTextColor="@color/tab_tray_item_text_normal_theme"
mozac:tabsTraySelectedItemBackgroundColor="@color/tab_tray_item_selected_background_normal_theme"