summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorjrizzoli <joey@cyanogenmoditalia.it>2016-01-26 14:32:31 +0100
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-01-28 08:26:58 -0800
commit7b613aef1d0bceb3d923b5c1022f8e884a8ca185 (patch)
tree4f783946c009bf778aa5ef163859ae2658c66bd5 /res/drawable
parentbc5366f143279e7cc97b93333084a415bec4e718 (diff)
downloadpackages_apps_Settings-7b613aef1d0bceb3d923b5c1022f8e884a8ca185.zip
packages_apps_Settings-7b613aef1d0bceb3d923b5c1022f8e884a8ca185.tar.gz
packages_apps_Settings-7b613aef1d0bceb3d923b5c1022f8e884a8ca185.tar.bz2
[2/2] Settings: blacklist: update iconography
Made with Asher and Dave Change-Id: I0457596078553d170e16d46d7ab30660586d5207 Signed-off-by: jrizzoli <joey@cyanogenmoditalia.it>
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/ic_blacklist_calls.xml11
-rw-r--r--res/drawable/ic_blacklist_messages.xml19
2 files changed, 14 insertions, 16 deletions
diff --git a/res/drawable/ic_blacklist_calls.xml b/res/drawable/ic_blacklist_calls.xml
index 33aa301..06f8e9c 100644
--- a/res/drawable/ic_blacklist_calls.xml
+++ b/res/drawable/ic_blacklist_calls.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The CyanogenMod Project
+<!-- Copyright (C) 2016 The CyanogenMod Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -15,14 +15,13 @@
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
<item android:state_checked="true">
<bitmap android:src="@drawable/ic_blacklist_calls_icon"
- android:tint="@color/theme_accent"/>
+ android:tint="@color/blacklist_enabled"/>
</item>
<item>
- <bitmap
- android:src="@drawable/ic_blacklist_calls_icon"
- android:tint="@*android:color/secondary_text_default_material_light"/>
+ <bitmap android:src="@drawable/ic_blacklist_calls_icon"
+ android:tint="@color/blacklist_disabled"/>
</item>
</selector>
-
diff --git a/res/drawable/ic_blacklist_messages.xml b/res/drawable/ic_blacklist_messages.xml
index 8365b9e..654bc4f 100644
--- a/res/drawable/ic_blacklist_messages.xml
+++ b/res/drawable/ic_blacklist_messages.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2013 The CyanogenMod Project
+<!-- Copyright (C) 2016 The CyanogenMod Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -15,13 +15,12 @@
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item android:state_checked="true">
- <bitmap android:src="@drawable/ic_blacklist_messages_icon"
- android:tint="@color/theme_accent"/>
- </item>
- <item>
- <bitmap android:src="@drawable/ic_blacklist_messages_icon"
- android:tint="@*android:color/secondary_text_default_material_light"/>
- </item>
+ <item android:state_checked="true">
+ <bitmap android:src="@drawable/ic_blacklist_messages_icon"
+ android:tint="@color/blacklist_enabled"/>
+ </item>
+ <item>
+ <bitmap android:src="@drawable/ic_blacklist_messages_icon"
+ android:tint="@color/blacklist_disabled"/>
+ </item>
</selector>
-