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

Commit fbf20b7b authored by Aayush Gupta's avatar Aayush Gupta
Browse files

Merge branch '4104-r-contacts_ui' into 'v1-r'

Contacts: /e/ UI Dark Mode Implementation

See merge request !66
parents 191e16ad 7c6a63c8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ android_app {
        "androidx.recyclerview_recyclerview",
        "androidx.palette_palette",
        "androidx.legacy_legacy-support-v4",
        "androidx.webkit_webkit",
        "android-common",
        "com.android.vcard",
        "guava",
+2 −2
Original line number Diff line number Diff line
@@ -287,7 +287,7 @@

        <activity
            android:name=".activities.ShowOrCreateActivity"
            android:theme="@android:style/Theme.Material.Light.Dialog.NoActionBar">
            android:theme="@style/customDialogNoActionBar">

            <intent-filter>
                <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT"/>
@@ -303,7 +303,7 @@
            android:excludeFromRecents="true"
            android:launchMode="singleTop"
            android:taskAffinity=""
            android:theme="@style/Theme.QuickContact"
            android:theme="@style/Theme.QuickContact.White.TopBar"
            android:windowSoftInputMode="stateUnchanged">

            <intent-filter>
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
    android:shape="oval">

    <solid
        android:color="#ffffff"/>
        android:color="@color/primary_color_dark"/>

    <size
        android:width="120dp"
+1 −1
Original line number Diff line number Diff line
@@ -22,6 +22,6 @@
        android:viewportWidth="192.0">
  <path android:fillColor="@color/ic_add_contact_shortcut_background"
        android:pathData="M96,8C47.38,8 8,47.38 8,96s39.38,88 88,88s88,-39.38 88,-88S144.62,8 96,8z"/>
  <path android:fillColor="#039BE5"
  <path android:fillColor="@color/accent"
        android:pathData="M124,100h-24v24h-8v-24H68v-8h24V68h8v24h24V100z"/>
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -22,6 +22,6 @@
    android:viewportWidth="192.0">
    <path android:fillColor="@color/ic_add_contact_shortcut_background"
        android:pathData="M96,8C47.38,8 8,47.38 8,96s39.38,88 88,88s88,-39.38 88,-88S144.62,8 96,8z"/>
    <path android:fillColor="#039BE5"
    <path android:fillColor="@color/accent"
        android:pathData="M124,100h-24v24h-8v-24H68v-8h24V68h8v24h24V100z"/>
</vector>
Loading