diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-09-10 01:23:49 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-09-10 01:23:49 +0000 |
commit | f4515514c10d2f653a638bcdef6bc7ba1ac494b0 (patch) | |
tree | f876a268ce8fe75a632b09e904bd412281098a6f /app/src/main/res | |
parent | c50da35b4f713c14b6b266466a0a1feaa1ad4c20 (diff) | |
download | infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.tar infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.tar.gz infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.tar.bz2 infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.tar.lz infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.tar.xz infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.tar.zst infinity-for-reddit-f4515514c10d2f653a638bcdef6bc7ba1ac494b0.zip |
Fixed clicking username in comments in user's comment section opening current accout profile. Fixed downvote state would not retain after orientation change. Reverse the color of upvote and downvote buttons.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/colors.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 03c19020..42b7bc1c 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -28,9 +28,9 @@ <color name="roundedBottomSheetPrimaryNavigationBarColor">@color/roundedBottomSheetPrimaryBackground</color> - <color name="upvoted">#007DDE</color> + <color name="upvoted">#E91E63</color> - <color name="downvoted">#E91E63</color> + <color name="downvoted">#007DDE</color> <color name="voteAndReplyUnavailableVoteButtonColor">#F0F0F0</color> |