2015-04-22 00:03:13 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
<style name="AppThemeDark" parent="AppBaseThemeDark">
|
|
|
|
<!-- customizations that are not API-level specific go here. -->
|
2015-07-23 09:29:34 +03:00
|
|
|
<item name="android:alertDialogTheme">@style/AlertDialogThemeDark</item>
|
2017-08-05 01:05:57 +02:00
|
|
|
<item name="android:actionOverflowButtonStyle">@style/ActionButtonOverflow</item>
|
2020-03-22 22:29:37 +00:00
|
|
|
<item name="android:navigationBarColor">@android:color/black</item>
|
2017-08-05 01:05:57 +02:00
|
|
|
<item name="android:windowSharedElementEnterTransition">@transition/shared_elements</item>
|
|
|
|
<item name="android:windowSharedElementExitTransition">@transition/shared_elements</item>
|
2015-04-22 00:03:13 +10:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<style name="AppThemeLight" parent="AppBaseThemeLight">
|
|
|
|
<!-- customizations that are not API-level specific go here. -->
|
2015-07-23 09:29:34 +03:00
|
|
|
<item name="android:alertDialogTheme">@style/AlertDialogThemeLight</item>
|
2015-04-22 00:03:13 +10:00
|
|
|
<item name="android:colorEdgeEffect">@color/fdroid_blue</item>
|
2017-08-05 01:05:57 +02:00
|
|
|
<item name="android:actionOverflowButtonStyle">@style/ActionButtonOverflow</item>
|
|
|
|
<item name="android:windowSharedElementEnterTransition">@transition/shared_elements</item>
|
|
|
|
<item name="android:windowSharedElementExitTransition">@transition/shared_elements</item>
|
2015-04-22 00:03:13 +10:00
|
|
|
</style>
|
|
|
|
|
2016-11-10 12:44:18 +01:00
|
|
|
<style name="AppThemeLight.NoActionBar">
|
|
|
|
<item name="windowActionBar">false</item>
|
|
|
|
<item name="windowNoTitle">true</item>
|
|
|
|
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
|
|
|
|
<item name="android:statusBarColor">@android:color/transparent</item>
|
|
|
|
</style>
|
|
|
|
|
2015-07-23 09:29:34 +03:00
|
|
|
</resources>
|