Fixing inconsistency between browser and settings activities

This commit is contained in:
anthony restaino 2017-05-12 13:49:46 -04:00
parent 1b36d65b54
commit cd06cbf696
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@
<style name="Theme.LightTheme" parent="Theme.BaseLightTheme">
<item name="searchBackground">@drawable/card_bg</item>
<item name="listBackground">?attr/listChoiceBackgroundIndicator</item>
<item name="progressBackgroundColor">#00000000</item>
<item name="progressBackgroundColor">@color/transparent</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@color/secondary_color</item>
<item name="android:windowTranslucentStatus">false</item>
@ -39,7 +39,7 @@
<style name="Theme.DarkTheme" parent="Theme.BaseDarkTheme">
<item name="searchBackground">@drawable/card_bg</item>
<item name="listBackground">?attr/listChoiceBackgroundIndicator</item>
<item name="progressBackgroundColor">#00000000</item>
<item name="progressBackgroundColor">@color/transparent</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@color/secondary_color</item>
<item name="android:windowTranslucentStatus">false</item>
@ -48,7 +48,7 @@
<style name="Theme.BlackTheme" parent="Theme.BaseBlackTheme">
<item name="searchBackground">@drawable/card_bg</item>
<item name="listBackground">?attr/listChoiceBackgroundIndicator</item>
<item name="progressBackgroundColor">#00000000</item>
<item name="progressBackgroundColor">@color/transparent</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@color/black</item>
<item name="android:windowTranslucentStatus">false</item>

View File

@ -44,7 +44,7 @@
<!-- Theme Colors -->
<item name="colorPrimary">@color/primary_color</item>
<item name="colorPrimaryDark">@color/primary_color</item>
<item name="colorPrimaryDark">@color/transparent</item>
<item name="colorAccent">@color/accent_color</item>
<item name="drawerBackground">@color/drawer_background</item>
<item name="dividerColor">@color/divider_light</item>
@ -67,7 +67,7 @@
<!-- Theme colors -->
<item name="colorPrimary">@color/primary_color_dark</item>
<item name="colorPrimaryDark">@color/primary_color_dark</item>
<item name="colorPrimaryDark">@color/transparent</item>
<item name="colorAccent">@color/accent_color</item>
<item name="drawerBackground">@color/drawer_background_dark</item>
<item name="dividerColor">@color/divider_dark</item>