Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e9637f9 authored by Gary Mai's avatar Gary Mai
Browse files

Import new expand icons

Also update X close icons to be vector drawables, tinting
them to the proper colors where they are currently used.

Test:
Manually verified the following with Bullhead on M (MDA70B):
1. Dropdown icons in compact and full editors are 54% transparent
black.
2. X's next to edit text views are 38% transparent black.
3. X's in search and selection bar are still 54% transparent
black.

Bug: 30160325
Change-Id: Ice24a70f02141f641c389060c37bdc87b727b230
parent ad43f1bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
    <path
        android:fillColor="#FF000000"
        android:fillColor="@android:color/white"
        android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
</vector>
+10 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    <path
        android:fillColor="@android:color/white"
        android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6z"/>
</vector>
 No newline at end of file
+10 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    <path
        android:fillColor="@android:color/white"
        android:pathData="M7.41,7.84L12,12.42l4.59,-4.58L18,9.25l-6,6 -6,-6z"/>
</vector>
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
@@ -29,7 +29,8 @@
        android:layout_gravity="center"
        android:duplicateParentState="true"
        android:background="?android:attr/selectableItemBackground"
        android:src="@drawable/ic_menu_remove_field_holo_light"
        android:src="@drawable/ic_close_24dp"
        android:tint="@color/quantum_black_hint_text"
        android:paddingLeft="@dimen/editor_round_button_padding_left"
        android:paddingRight="@dimen/editor_round_button_padding_right"
        android:paddingStart="@dimen/editor_round_button_padding_left"
+2 −1
Original line number Diff line number Diff line
@@ -66,7 +66,8 @@

    <ImageView
        android:id="@+id/account_expander_icon"
        android:src="@drawable/ic_menu_expander_minimized_holo_light"
        android:src="@drawable/ic_menu_expand_minimized_24dp"
        android:tint="@color/quantum_black_secondary_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical|end"
Loading