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

Commit 3bd4feec authored by John Spurlock's avatar John Spurlock
Browse files

QuickSettings: visual updates.

- Update style for do not disturb subhead.
- Fix strict mode warning setting zen from volume panel.
- Longer delay in volume panel when expanded.
- Update zen icons.
- Update header peek height.
- Update detail pane back icon.

Bug:15186962
Change-Id: Icb8b95656f866bf9b0aa076d0b85c019a77e76c0
parent 414a486e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,5 +24,5 @@ Copyright (C) 2014 The Android Open Source Project

    <path
        android:fill="#FFFFFFFF"
        android:pathData="M19.0,6.4l-1.3999996,-1.4000001 -5.6000004,5.6000004 -5.6,-5.6000004 -1.4000001,1.4000001 5.6000004,5.6 -5.6000004,5.6000004 1.4000001,1.3999996 5.6,-5.6000004 5.6000004,5.6000004 1.3999996,-1.3999996 -5.6000004,-5.6000004z"/>
        android:pathData="M20.0,11.0L7.8,11.0l5.6,-5.6L12.0,4.0l-8.0,8.0l8.0,8.0l1.4,-1.4L7.8,13.0L20.0,13.0L20.0,11.0z"/>
</vector>
+2 −4
Original line number Diff line number Diff line
@@ -23,8 +23,6 @@ Copyright (C) 2014 The Android Open Source Project
        android:viewportHeight="24.0"/>

    <path
        android:fill="#00000000"
        android:stroke="#CCCCCC"
        android:strokeWidth="1.0"
        android:fill="#4DFFFFFF"
        android:pathData="M12.0,2.0C6.5,2.0 2.0,6.5 2.0,12.0s4.5,10.0 10.0,10.0c5.5,0.0 10.0,-4.5 10.0,-10.0S17.5,2.0 12.0,2.0zM4.0,12.0c0.0,-4.4 3.6,-8.0 8.0,-8.0c1.8,0.0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4.0,13.8 4.0,12.0zM12.0,20.0c-1.8,0.0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20.0,10.2 20.0,12.0C20.0,16.4 16.4,20.0 12.0,20.0z"/>
</vector>
+2 −4
Original line number Diff line number Diff line
@@ -23,8 +23,6 @@ Copyright (C) 2014 The Android Open Source Project
        android:viewportHeight="24.0"/>

    <path
        android:fill="#00000000"
        android:stroke="#CCCCCC"
        android:strokeWidth="1.0"
        android:fill="#4DFFFFFF"
        android:pathData="M12.0,2.0C6.5,2.0 2.0,6.5 2.0,12.0s4.5,10.0 10.0,10.0c5.5,0.0 10.0,-4.5 10.0,-10.0S17.5,2.0 12.0,2.0zM4.0,12.0c0.0,-4.4 3.6,-8.0 8.0,-8.0c1.8,0.0 3.5,0.6 4.9,1.7L5.7,16.9C4.6,15.5 4.0,13.8 4.0,12.0zM12.0,20.0c-1.8,0.0 -3.5,-0.6 -4.9,-1.7L18.3,7.1C19.4,8.5 20.0,10.2 20.0,12.0C20.0,16.4 16.4,20.0 12.0,20.0z"/>
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
        android:layout_alignParentStart="true"
        android:contentDescription="@string/accessibility_quick_settings_close"
        android:padding="@dimen/qs_panel_padding"
        android:src="@drawable/ic_qs_close" />
        android:src="@drawable/ic_qs_back" />

    <TextView
        android:id="@android:id/title"
+5 −2
Original line number Diff line number Diff line
@@ -16,11 +16,14 @@
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
    android:layout_height="wrap_content"
    android:layout_marginLeft="@dimen/zen_mode_condition_detail_button_padding"
    android:layout_marginRight="@dimen/zen_mode_condition_detail_button_padding" >

    <RadioButton
        android:id="@android:id/checkbox"
        android:layout_width="32dp"
        android:layout_width="40dp"
        android:layout_marginStart="2dp"
        android:layout_height="@dimen/zen_mode_condition_height"
        android:layout_alignParentStart="true"
        android:gravity="center" />
Loading