diff options
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/styles.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 43df2318..de788275 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -27,11 +27,19 @@ <item name="android:windowTranslucentStatus">true</item> </style> - <style name="AppTheme.NoActionBarWithTransparentBackground" parent="AppTheme.NoActionBar"> + <style name="AppTheme.Slidable" parent="AppTheme.NoActionBar"> <item name="android:windowIsTranslucent">true</item> <item name="android:windowBackground">@android:color/transparent</item> </style> + <style name="AppTheme.SlidableWithTranslucentWindow" parent="AppTheme.Slidable"> + <item name="android:windowTranslucentStatus">true</item> + </style> + + <style name="AppTheme.SlidableWithTransparentStatusBar" parent="AppTheme.Slidable"> + <item name="android:statusBarColor">@android:color/transparent</item> + </style> + <style name="AppTheme.Draggable" parent="AppTheme"> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowContentOverlay">@null</item> |