Merge pull request #814 from nextcloud/fix-pointer-cursor-not-shown-on-message-authors

Fix pointer cursor not shown on message authors
This commit is contained in:
Joas Schilling 2018-04-26 12:23:57 +02:00 коммит произвёл GitHub
Родитель 1968038505 6effa97a1e
Коммит dad8c1fdf8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 13 добавлений и 2 удалений

Просмотреть файл

@ -153,6 +153,12 @@
position: relative;
}
#commentsTabView .comment .authorRow .avatar:not(.currentUser),
#commentsTabView .comment .authorRow .avatar:not(.currentUser) img,
#commentsTabView .comment .authorRow .author:not(.currentUser) {
cursor: pointer;
}
.atwho-view-ul * .avatar-name-wrapper {
white-space: nowrap;
}

Просмотреть файл

@ -54,8 +54,8 @@
var COMMENT_TEMPLATE =
'<li class="comment" data-id="{{id}}">' +
' <div class="authorRow">' +
' <div class="avatar" data-user-id="{{actorId}}" data-displayname="{{actorDisplayName}}"> </div>' +
' <div class="author">{{actorDisplayName}}</div>' +
' <div class="avatar{{#if isUserAuthor}} currentUser{{/if}}" data-user-id="{{actorId}}" data-displayname="{{actorDisplayName}}"> </div>' +
' <div class="author{{#if isUserAuthor}} currentUser{{/if}}">{{actorDisplayName}}</div>' +
' <div class="date has-tooltip{{#if relativeDate}} live-relative-timestamp{{/if}}" data-timestamp="{{timestamp}}" title="{{altDate}}">{{date}}</div>' +
' </div>' +
' <div class="message">{{{formattedMessage}}}</div>' +
@ -120,6 +120,11 @@
if (!this._commentTemplate) {
this._commentTemplate = Handlebars.compile(COMMENT_TEMPLATE);
}
params = _.extend({
isUserAuthor: OC.getCurrentUser().uid === params.actorId,
}, params);
return this._commentTemplate(params);
},