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

Commit 35c5477d authored by Jon Miranda's avatar Jon Miranda
Browse files

Remove color extraction from popup arrow, add shadows.

Bug: 175329686
Bug: 187014675
Test: manual

Change-Id: I84a3f23b7a9ceef004a2b1b66e5f8a10585bd113
parent d30f4ce5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <solid android:color="?attr/popupColorSecondary" />
    <solid android:color="?attr/popupColorPrimary" />
    <corners android:radius="8dp" />
    <size android:height="16dp" />
</shape>
+2 −2
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@
     limitations under the License.
-->
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="?attr/popupColorSecondary"/>
    <foreground android:drawable="?attr/popupColorSecondary"/>
    <background android:drawable="?attr/popupColorPrimary"/>
    <foreground android:drawable="?attr/popupColorPrimary"/>
</adaptive-icon>
+0 −20
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2021 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.
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="?attr/popupColorSecondary"/>
    <corners android:radius="@dimen/popup_single_item_radius" />
</shape>
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
    xmlns:launcher="http://schemas.android.com/apk/res-auto"
    android:layout_width="@dimen/bg_popup_item_width"
    android:layout_height="@dimen/bg_popup_item_height"
    android:elevation="@dimen/deep_shortcuts_elevation"
    android:background="@drawable/middle_item_primary"
    android:theme="@style/PopupItem" >

+0 −1
Original line number Diff line number Diff line
@@ -20,6 +20,5 @@
    android:layout_height="wrap_content"
    android:clipToPadding="false"
    android:clipChildren="false"
    android:elevation="@dimen/deep_shortcuts_elevation"
    android:importantForAccessibility="yes"
    android:orientation="vertical" />
Loading