diff --git a/client/src/views/stream/notes/post.js b/client/src/views/stream/notes/post.js index b1adaa211b..7c3246c350 100644 --- a/client/src/views/stream/notes/post.js +++ b/client/src/views/stream/notes/post.js @@ -77,6 +77,10 @@ class PostNoteStreamView extends NoteStreamView { } }); + if (this.messageName === 'postThis') { + this.messageTemplate = '{user}'; + } + if (this.model.get('parentId')) { this.createMessage(); diff --git a/frontend/less/espo/custom.less b/frontend/less/espo/custom.less index fa9422e1ce..4467bda108 100644 --- a/frontend/less/espo/custom.less +++ b/frontend/less/espo/custom.less @@ -2305,6 +2305,28 @@ td > span.color-icon { text-align: center; margin-right: var(--6px); } + + [data-key="user"] { + > a { + &, + &:hover, + &:focus { + color: var(--btn-text-color); + } + } + } + + .message { + a { + &[data-scope="User"] { + &, + &:hover, + &:focus { + color: var(--btn-text-color); + } + } + } + } } .stream-post-container,