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

Commit 3ad8c93e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "More QS theme fixes for contrast" into oc-dev

parents b827c523 b4cc7b13
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