diff options
author | iNPUTmice <daniel@gultsch.de> | 2014-07-16 12:34:09 +0200 |
---|---|---|
committer | iNPUTmice <daniel@gultsch.de> | 2014-07-16 12:34:09 +0200 |
commit | e79a34b651a626b93686b8c578280b77c54b6138 (patch) | |
tree | 0a09589dda9e69c22f069f9efa815a32673aa8cd /res/values | |
parent | eb8253d49a432412b8a27d4f61f8f009ace4d79b (diff) |
redesigned muc details a little bit
Diffstat (limited to '')
-rw-r--r-- | res/values/colors.xml | 2 | ||||
-rw-r--r-- | res/values/strings.xml | 2 | ||||
-rw-r--r-- | res/values/styles.xml | 4 | ||||
-rw-r--r-- | res/values/themes.xml | 4 |
4 files changed, 8 insertions, 4 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml index 4ede1c10..b6477939 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <resources> + <color name="primary" type="color">#ff259b24</color> + <color name="primarydark" type="color">#ff0a7e07</color> <color name="primarytext" type="color">#de000000</color> <color name="secondarytext" type="color">#8a000000</color> <color name="ondarktext" type="color">#fffafafa</color> diff --git a/res/values/strings.xml b/res/values/strings.xml index 5aa7afe1..26e5dda5 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -270,4 +270,6 @@ <string name="save_as_bookmark">Save as bookmark</string> <string name="delete_bookmark">Delete bookmark</string> <string name="bookmark_already_exists">This bookmark already exists</string> + <string name="you">You</string> + <string name="action_edit_subject">Edit conference subject</string> </resources> diff --git a/res/values/styles.xml b/res/values/styles.xml index 1468283e..a827fe36 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -6,14 +6,14 @@ <item name="android:layout_marginTop">8dp</item> <item name="android:textSize">14sp</item> <item name="android:textAllCaps">true</item> - <item name="android:textColor">#5b5b5b</item> + <item name="android:textColor">@color/primarytext</item> <item name="android:textStyle">bold</item> </style> <style name="Divider"> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">1.5dp</item> - <item name="android:background">#b7b7b7</item> + <item name="android:background">@color/divider</item> </style> </resources>
\ No newline at end of file diff --git a/res/values/themes.xml b/res/values/themes.xml index 0c4ddc39..97f1db8f 100644 --- a/res/values/themes.xml +++ b/res/values/themes.xml @@ -8,8 +8,8 @@ </style> <style name="ConversationsActionBar" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"> - <item name="android:background">#259b24</item> - <item name="android:backgroundStacked">#0a7e07</item> + <item name="android:background">@color/primary</item> + <item name="android:backgroundStacked">@color/primarydark</item> <item name="android:displayOptions">showHome|homeAsUp|showTitle</item> <item name="android:icon">@android:color/transparent</item> </style> |