Browse Source

Fixing inconsistency between browser and settings activities

master
anthony restaino 7 years ago
parent
commit
cd06cbf696
  1. 6
      app/src/main/res/values-v21/styles.xml
  2. 4
      app/src/main/res/values/styles.xml

6
app/src/main/res/values-v21/styles.xml

@ -24,7 +24,7 @@ @@ -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 @@ @@ -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 @@ @@ -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>

4
app/src/main/res/values/styles.xml

@ -44,7 +44,7 @@ @@ -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 @@ @@ -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>

Loading…
Cancel
Save