Merge pull request #352 from whiteout-io/dev/WO-944

[WO-03-011] Fix no Reliable Sender Indication is implemented (Medium)
This commit is contained in:
Felix Hammerl 2015-05-18 16:49:08 +02:00
commit 0bfaba3bd9
3 changed files with 6 additions and 3 deletions

View File

@ -44,7 +44,7 @@
"grunt": "~0.4.1",
"grunt-angular-templates": "~0.5.7",
"grunt-autoprefixer": "~0.7.2",
"grunt-browserify": "^3.0.1",
"grunt-browserify": "~3.7.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-compress": "~0.5.2",
"grunt-contrib-concat": "^0.5.0",

View File

@ -191,6 +191,9 @@
.mail-addresses__stripped {
display: inline;
}
.read__sender-address {
display: none;
}
}
}
}

View File

@ -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}">&#60; {{u.address}} &#62;</span>
<svg ng-show="u.secure === false"><use xlink:href="#icon-add_contact" /></svg>
</span>