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

Commit b4cc7b13 authored by Jason Monk's avatar Jason Monk
Browse files

More QS theme fixes for contrast

Test: visual
Merged-In: I4494e92ebf79bbc20c30a18f5ac13228801a3e54
Change-Id: Ifb03403042561ec23e67159eb51387a460d4f90b
Fixes: 37443237
parent 34bc4af8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@
-->
<inset xmlns:android="http://schemas.android.com/apk/res/android">
    <shape>
        <solid android:color="?android:attr/colorPrimaryDark"/>
        <solid android:color="?android:attr/colorPrimary"/>
    </shape>
</inset>
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:orientation="vertical"
    android:elevation="4dp"
    android:background="@drawable/qs_customizer_background"
    android:gravity="center_horizontal">

+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/qs_detail_background"
    android:elevation="4dp"
    android:clickable="true"
    android:orientation="vertical"
    android:paddingBottom="8dp"
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
    android:id="@+id/header"
    android:layout_width="match_parent"
    android:layout_height="48dp"
    android:elevation="4dp"
    android:baselineAligned="false"
    android:clickable="false"
    android:clipChildren="false"
+18 −12
Original line number Diff line number Diff line
@@ -18,17 +18,23 @@
    android:id="@+id/quick_settings_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
        android:background="@drawable/qs_background_primary"
    android:background="?android:attr/colorPrimaryDark"
    android:clipToPadding="false"
        android:clipChildren="false"
        android:elevation="4dp">
    android:clipChildren="false">

    <View
        android:id="@+id/qs_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/qs_background_primary"
        android:elevation="4dp" />

    <com.android.systemui.qs.QSPanel
        android:id="@+id/quick_settings_panel"
            android:background="#0000"
        android:layout_marginTop="28dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:elevation="4dp"
        android:layout_marginBottom="48dp" />

    <include layout="@layout/quick_status_bar_expanded_header" />
Loading