UX: Only the title of a quote should have a pointer cursor

This commit is contained in:
Robin Ward 2014-10-16 13:05:45 -04:00
parent d2ac5a9ac6
commit fe1b561228
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ Discourse.PostView = Discourse.GroupedView.extend(Ember.Evented, {
var expandContract = "";
if (!$aside.data('full')) {
expandContract = "<i class='fa fa-" + desc + "' title='" + I18n.t("post.expand_collapse") + "'></i>";
$aside.css('cursor', 'pointer');
$('.title', $aside).css('cursor', 'pointer');
}
$('.quote-controls', $aside).html(expandContract + navLink);
},