diff --git a/zephyr/jstemplates/message.html b/zephyr/jstemplates/message.html index e12bdf7a32..ffa5bc9a78 100644 --- a/zephyr/jstemplates/message.html +++ b/zephyr/jstemplates/message.html @@ -65,6 +65,9 @@ {{sender_full_name}} {{/include_sender}} +
+ +
{{! If include_sender is not set, we will never show this link anyway. }} {{#include_sender}}« Info{{/include_sender}} diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index 640ef6ce88..acc6a56180 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -1062,3 +1062,13 @@ table.floating_recipient { height: 48px; margin-right: .75em; } + +.star { + padding-left: 2px; + opacity: .4; +} + +.star:hover { + cursor: pointer; + opacity: 1; +}