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:
@@ -80,7 +80,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'>
|
||||
@@ -251,7 +251,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 }} ·{{ /isVerified }} {{ number }}</div>
|
||||
<div class='number'>{{ #isVerified }}<span class='verified-icon'></span> {{ verified }} ·{{ /isVerified }} {{ number }}</div>
|
||||
</script>
|
||||
<script type='text/x-tmpl-mustache' id='contact'>
|
||||
{{> avatar }}
|
||||
|
Reference in New Issue
Block a user