diff options
author | 2014-05-14 09:33:42 +0000 | |
---|---|---|
committer | 2014-05-14 09:33:43 +0000 | |
commit | d7c520bb74cc8214d2182b7950c84bdb576cea77 (patch) | |
tree | 7d537aecc8483dcf4cc301482a8af961cd4450a3 /java/res | |
parent | 0a04f8be93014fe133b88cd9ee4633f278dbff3d (diff) | |
parent | c1094d69134740ee0209f1ddfb25dd770b37ab25 (diff) | |
download | latinime-d7c520bb74cc8214d2182b7950c84bdb576cea77.tar.gz latinime-d7c520bb74cc8214d2182b7950c84bdb576cea77.tar.xz latinime-d7c520bb74cc8214d2182b7950c84bdb576cea77.zip |
Merge "Make Emoji palette more Quantum light compliant"
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/color/emoji_tab_label_color_lmp.xml | 33 | ||||
-rw-r--r-- | java/res/values/themes-lmp.xml | 2 |
2 files changed, 34 insertions, 1 deletions
diff --git a/java/res/color/emoji_tab_label_color_lmp.xml b/java/res/color/emoji_tab_label_color_lmp.xml new file mode 100644 index 000000000..5789d569d --- /dev/null +++ b/java/res/color/emoji_tab_label_color_lmp.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2014, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item + android:state_focused="true" + android:color="@color/key_text_color_holo" /> + <item + android:state_pressed="true" + android:color="@color/key_text_color_holo" /> + <item + android:state_selected="true" + android:color="@color/key_text_color_holo" /> + <item + android:color="@color/key_text_inactive_color_lmp" /> +</selector> diff --git a/java/res/values/themes-lmp.xml b/java/res/values/themes-lmp.xml index a9b8a93cc..823155b23 100644 --- a/java/res/values/themes-lmp.xml +++ b/java/res/values/themes-lmp.xml @@ -88,7 +88,7 @@ name="EmojiPalettesView.LMP" parent="MainKeyboardView.LMP" > - <item name="emojiTabLabelColor">@color/emoji_tab_label_color_holo</item> + <item name="emojiTabLabelColor">@color/emoji_tab_label_color_lmp</item> </style> <style name="MoreKeysKeyboard.LMP" |