Show a bookmark/favorite star on messages.

(imported from commit af34abb353f3d5b5aace59c31c073d6426b0ff03)
This commit is contained in:
Jessica McKellar 2013-03-27 13:26:53 -04:00
parent 2f560a79db
commit 1e9bb457a1
2 changed files with 13 additions and 0 deletions

View File

@ -65,6 +65,9 @@
<span class="sender_name">{{sender_full_name}}</span>
</span>
{{/include_sender}}
<div class="message_right star">
<i class="{{#if starred}}icon-star{{else}}icon-star-empty{{/if}}" title="Star this message"></i>
</div>
<div class="message_right actions_hover">
{{! If include_sender is not set, we will never show this link anyway. }}
{{#include_sender}}<span class="actions_link">&laquo; Info</span>{{/include_sender}}

View File

@ -1062,3 +1062,13 @@ table.floating_recipient {
height: 48px;
margin-right: .75em;
}
.star {
padding-left: 2px;
opacity: .4;
}
.star:hover {
cursor: pointer;
opacity: 1;
}