1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Improve composer background coloring on Holo.

This commit is contained in:
Danny Baumann 2013-02-12 14:28:45 +01:00
parent 473a9d4fa2
commit 9ea5f983b5
2 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,11 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.K9.Dark" parent="Theme.K9.Dark.Base">
<item name="composerBackgroundColor">@android:color/background_dark</item>
</style>
<style name="Theme.K9.Light" parent="Theme.K9.Light.Base">
<item name="composerBackgroundColor">@android:color/background_light</item>
</style>
<style name="Theme.K9.Dialog.Dark" parent="Theme.K9.Dark">

View File

@ -44,7 +44,6 @@
<item name="messageListDividerColor">#ffcccccc</item>
<item name="messageViewHeaderBackgroundColor">#ffffffff</item>
<item name="messageViewAttachmentBackground">@drawable/attachment_text_box_light</item>
<item name="composerBackgroundColor">@android:color/white</item>
</style>
<style name="Theme.K9.Dark.Base" parent="Theme.Sherlock">
@ -90,14 +89,15 @@
<item name="messageListDividerColor">#ff333333</item>
<item name="messageViewHeaderBackgroundColor">#000000</item>
<item name="messageViewAttachmentBackground">@drawable/attachment_text_box_dark</item>
<item name="composerBackgroundColor">@android:color/black</item>
</style>
<style name="Theme.K9.Light" parent="Theme.K9.Light.Base">
<item name="composerBackgroundColor">@android:color/white</item>
</style>
<style name="Theme.K9.Dark" parent="Theme.K9.Dark.Base">
<item name="android:windowBackground">@android:color/black</item>
<item name="composerBackgroundColor">@android:color/black</item>
<!-- Work around some oddities -->
<item name="android:autoCompleteTextViewStyle">@style/Widget.K9.AutoCompleteTextView</item>
<item name="textColorPrimaryRecipientDropdown">@android:color/primary_text_light</item>