diff --git a/zephyr/static/js/ui.js b/zephyr/static/js/ui.js index 8dadccb684..9e81ced7d7 100644 --- a/zephyr/static/js/ui.js +++ b/zephyr/static/js/ui.js @@ -1004,6 +1004,9 @@ exports.set_presence_list = function (users, presence_info) { .text(name)) .addClass('user_' + type) .attr('title', name + presence_descriptions[type]); + if (email === this.email) { + entry.addClass('my_fullname'); + } $('#user_presences').append(entry); } diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index 3063e647ad..4ff921f98e 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -132,7 +132,7 @@ a:hover code { padding-left: 0.5em; } -.my_fullname { +#my_information .my_fullname { font-weight: bold; white-space: nowrap; }