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

Commit b02ca57f authored by Bryan Owens's avatar Bryan Owens Committed by Steve Kondik
Browse files

Frameworks: Update DocumentsUI for theme chooser combatibility

PS2: credit: djdarkknight96
PS3: this time, use the correct owner info
PS:4 fix typo in styles.xml

Change-Id: I121099de6c09d33ef9f02019996eac1c6f1d3731
parent 77630d8a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@
        <activity
            android:name=".SettingsActivity"
            android:label="@string/menu_settings"
            android:theme="@android:style/Theme.Holo.Light.DialogWhenLarge"
            android:theme="@style/SettingsTheme"
            android:exported="false" />

        <provider
+1 −1
Original line number Diff line number Diff line
@@ -42,6 +42,6 @@
        android:layout_width="250dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="#fff" />
        android:background="@color/drawer_background" />

</android.support.v4.widget.DrawerLayout>
+2 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#ccc" />
        android:background="@color/title_background" />

    <LinearLayout
        android:layout_width="match_parent"
@@ -31,7 +31,7 @@
        android:orientation="horizontal"
        android:baselineAligned="false"
        android:gravity="center_vertical"
        android:background="#ddd"
        android:background="@color/save_background"
        android:minHeight="?android:attr/listPreferredItemHeightSmall">

        <ImageView
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@
            android:layout_height="0dp"
            android:layout_weight="1"
            android:layout_marginBottom="6dp"
            android:background="#fff"
            android:background="@color/grid_item_background"
            android:foreground="@drawable/ic_grid_gradient_bg"
            android:foregroundGravity="fill">

+4 −0
Original line number Diff line number Diff line
@@ -18,4 +18,8 @@
    <color name="chip">#ddd</color>
    <color name="item_root_pressed">#33cccccc</color>
    <color name="item_root_focused">#66cccccc</color>
    <color name="drawer_background">#fff</color>
    <color name="title_background">#ccc</color>
    <color name="save_background">#ddd</color>
    <color name="grid_item_background">#fff</color>
</resources>
Loading