Replace unicode check with new svg icon

A good bit of CSS was required to keep the text color changing along
with the text it is nestled within.

Also: took this opportunity to increase the contrast of the number and
verified section right under the contact name in the group members view.

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-06-14 14:06:36 -07:00
parent 688cae6374
commit 47c5142a83
9 changed files with 74 additions and 4 deletions

View file

@ -94,7 +94,7 @@
<span class='conversation-number'>{{ number }}</span>
{{ /number }}
{{ #isVerified }}
<span class='verified'> {{ verified }}</span>
<span class='verified'><span class='verified-icon'></span> {{ verified }}</span>
{{ /isVerified }}
</script>
<script type='text/x-tmpl-mustache' id='conversation'>
@ -236,7 +236,7 @@
</script>
<script type='text/x-tmpl-mustache' id='contact_name_and_number'>
<h3 class='name' dir='auto'> {{ title }} </h3>
<div class='number'>{{ #isVerified }}✓ {{ verified }} &middot;{{ /isVerified }} {{ number }}</div>
<div class='number'>{{ #isVerified }}<span class='verified-icon'></span> {{ verified }} &middot;{{ /
</script>
<script type='text/x-tmpl-mustache' id='contact'>
{{> avatar }}