diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-11-26 23:45:35 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-11-27 00:05:54 +0100 |
commit | 8eb19a278c1667b4c8679076b21c1e5e08a77e9d (patch) | |
tree | 09e36e3fdd4955a7d17c47887ebc9c00f31f8973 /apps/comments/css | |
parent | 107952ff0095e93691a3e0b546ead347dfc5d39c (diff) | |
download | nextcloud-server-8eb19a278c1667b4c8679076b21c1e5e08a77e9d.tar.gz nextcloud-server-8eb19a278c1667b4c8679076b21c1e5e08a77e9d.zip |
Disable contacts menu for mentioned users in comments being composed
The contacts menu does not provide too much value for users mentioned in
a message being composed, so it is now disabled in this case.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/comments/css')
-rw-r--r-- | apps/comments/css/comments.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 14fa4316b5a..16855749268 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -127,8 +127,8 @@ position: relative; } -#commentsTabView .comment .message .avatar-name-wrapper, -#commentsTabView .comment .message .avatar-name-wrapper .avatar, +#commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper, +#commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper .avatar, #commentsTabView .comment .authorRow .avatar:not(.currentUser), #commentsTabView .comment .authorRow .author:not(.currentUser) { cursor: pointer; |