From 1e9bb457a12e2b7f3d42911bb5b67eb6a02aea6d Mon Sep 17 00:00:00 2001 From: Jessica McKellar Date: Wed, 27 Mar 2013 13:26:53 -0400 Subject: [PATCH] Show a bookmark/favorite star on messages. (imported from commit af34abb353f3d5b5aace59c31c073d6426b0ff03) --- zephyr/jstemplates/message.html | 3 +++ zephyr/static/styles/zephyr.css | 10 ++++++++++ 2 files changed, 13 insertions(+) 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; +}