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

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

Merge "Make dialogs dark in dark mode."

parents 48319c2d ab833602
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -148,11 +148,11 @@

        <activity android:name="com.android.packageinstaller.permission.ui.LocationProviderInterceptDialog"
                  android:excludeFromRecents="true"
                  android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar" />
                  android:theme="@style/PermissionDialog" />

        <activity android:name="com.android.packageinstaller.permission.ui.ReviewOngoingUsageActivity"
                  android:excludeFromRecents="true"
                  android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar"
                  android:theme="@style/PermissionDialog"
                  android:launchMode="singleInstance"
                  android:permission="android.permission.GRANT_RUNTIME_PERMISSIONS" >
            <intent-filter android:priority="1">
@@ -163,7 +163,7 @@

        <activity android:name="com.android.packageinstaller.permission.ui.ReviewAccessibilityServicesActivity"
                  android:excludeFromRecents="true"
                  android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar"
                  android:theme="@style/PermissionDialog"
                  android:permission="android.permission.REVIEW_ACCESSIBILITY_SERVICES" >
            <intent-filter android:priority="1">
                <action android:name="android.intent.action.REVIEW_ACCESSIBILITY_SERVICES" />
+4 −0
Original line number Diff line number Diff line
@@ -30,4 +30,8 @@
           parent="@android:style/Theme.DeviceDefault.Dialog">
        <item name="android:background">@color/google_grey_800</item>
    </style>

    <style name="PermissionDialog"
           parent="@android:style/Theme.DeviceDefault.Dialog.NoActionBar">
    </style>
</resources>
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
@@ -64,4 +64,8 @@
           parent="@android:style/Theme.DeviceDefault.Light.Dialog">
    </style>

    <style name="PermissionDialog"
           parent="@android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar">
    </style>

</resources>