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

Commit 04d348aa authored by Sunny Goyal's avatar Sunny Goyal Committed by Android Git Automerger
Browse files

am dd306188: Updating theme to use the light theme by default, instead of...

am dd306188: Updating theme to use the light theme by default, instead of wallpaper theme   > This allows us to use all the goodness of material theme   > Cursor in folder edit text is no longer 1px wide

* commit 'dd306188':
  Updating theme to use the light theme by default, instead of wallpaper theme   > This allows us to use all the goodness of material theme   > Cursor in folder edit text is no longer 1px wide
parents 6e830eb3 dd306188
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
        <item name="android:windowTranslucentNavigation">true</item>
    </style>

    <style name="Theme" parent="@android:style/Theme.DeviceDefault.Wallpaper.NoTitleBar">
    <style name="Theme" parent="@style/BaseWallpaperTheme">
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">true</item>
    </style>
+7 −0
Original line number Diff line number Diff line
@@ -33,4 +33,11 @@
        <item name="android:background">?android:attr/selectableItemBackgroundBorderless</item>
    </style>

    <style name="Theme" parent="@style/BaseWallpaperTheme">
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">true</item>
        <item name="android:colorControlActivated">@color/launcher_accent_color</item>
        <item name="android:colorAccent">@color/launcher_accent_color</item>
        <item name="android:colorPrimary">@color/launcher_accent_color</item>
    </style>
</resources>
 No newline at end of file
+2 −0
Original line number Diff line number Diff line
@@ -19,4 +19,6 @@
-->
<resources>
    <color name="wallpaper_picker_translucent_gray">#66000000</color>

    <color name="launcher_accent_color">#ff009688</color>
</resources>
+7 −1
Original line number Diff line number Diff line
@@ -35,9 +35,15 @@
        <item name="android:background">#88000000</item>
    </style>

    <style name="Theme" parent="@android:style/Theme.DeviceDefault.Wallpaper.NoTitleBar">
    <style name="BaseWallpaperTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar">
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:colorBackgroundCacheHint">@null</item>
        <item name="android:windowShowWallpaper">true</item>
        <item name="android:windowNoTitle">true</item>
    </style>

    <style name="Theme" parent="@style/BaseWallpaperTheme"></style>

    <style name="ActionBarSetWallpaperStyle" parent="@android:style/Widget.DeviceDefault.ActionButton">
        <item name="android:textColor">#ffffffff</item>
        <item name="android:background">?android:attr/selectableItemBackground</item>
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
    android:paddingRight="16dp"
    android:fontFamily="sans-serif-medium"
    android:textSize="14sp"
    android:textColor="#009688"
    android:textColor="@color/launcher_accent_color"
    android:textAllCaps="true"
    android:focusable="false"
    android:background="@drawable/all_apps_search_market_bg" />
Loading