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

Commit b9f40b9c authored by Abhishek Aggarwal's avatar Abhishek Aggarwal
Browse files

Contacts: Retheme app completely

 * Dropped e-ui-sdk usage
parent 08ce2c6c
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">

    <solid
        android:color="@color/color_default_primary_dark"/>

    <size
        android:width="120dp"
        android:height="120dp"/>
</shape>
+26 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0"
        android:tint="@color/accent">
    <path
        android:fillColor="@color/accent"
        android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@
        android:id="@+id/toolbar_frame"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary">
        android:background="@color/actionbar_background_color">

        <!-- the attribute padding removes the gap between this Toolbar and its parent FrameLayout on tablet -->
        <androidx.appcompat.widget.Toolbar
+0 −1
Original line number Diff line number Diff line
@@ -27,7 +27,6 @@
        style="@style/EditorActionBarStyle"
        android:layout_width="match_parent"
        android:layout_height="?android:attr/actionBarSize"
        android:background="?android:attr/colorPrimary"
        android:elevation="4dp"
        app:navigationContentDescription="@string/cancel_button_content_description"
        app:navigationIcon="@drawable/quantum_ic_close_vd_theme_24"
+2 −2
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
    android:layout_gravity="bottom|end"
    android:layout_marginBottom="@dimen/floating_action_button_margin_bottom"
    android:layout_marginEnd="@dimen/floating_action_button_margin_right"
    android:background="@drawable/fab_pink"
    android:background="@drawable/fab_bg"
    android:elevation="@dimen/design_fab_elevation"
    app:layout_dodgeInsetEdges="bottom" >

@@ -37,5 +37,5 @@
        android:background="@drawable/floating_action_button"
        android:contentDescription="@string/action_menu_add_new_contact_button"
        android:src="@drawable/quantum_ic_add_vd_theme_24"
        android:tint="@color/floating_action_button_icon_color"/>
        android:tint="@color/accent"/>
</FrameLayout>
 No newline at end of file
Loading