mirror of
https://github.com/moparisthebest/mail
synced 2024-11-21 08:34:59 -05:00
[WO-03-011] Fix no Reliable Sender Indication is implemented (Medium)
Display sender email address next to full name
This commit is contained in:
parent
f287c4cddf
commit
c76a392abf
@ -191,6 +191,9 @@
|
||||
.mail-addresses__stripped {
|
||||
display: inline;
|
||||
}
|
||||
.read__sender-address {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -75,7 +75,7 @@
|
||||
<label>From:</label>
|
||||
<span ng-repeat="u in state.mailList.selected.from">
|
||||
<span class="label" ng-class="{'label--invalid': u.secure === false, 'label--invalid-clickable': u.secure === false}" ng-mouseover="getKeyId(u.address)" wo-touch="invite(u)" wo-tooltip="#fingerprint-info">
|
||||
{{u.name || u.address}}
|
||||
{{u.name || u.address}} <span ng-show="u.name" ng-class="{'read__sender-address': !notStripped}">< {{u.address}} ></span>
|
||||
<svg ng-show="u.secure === false"><use xlink:href="#icon-add_contact" /></svg>
|
||||
</span>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user