mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 00:42:20 -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 {
|
.mail-addresses__stripped {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
.read__sender-address {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -75,7 +75,7 @@
|
|||||||
<label>From:</label>
|
<label>From:</label>
|
||||||
<span ng-repeat="u in state.mailList.selected.from">
|
<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">
|
<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>
|
<svg ng-show="u.secure === false"><use xlink:href="#icon-add_contact" /></svg>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user