diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-09-05 17:02:48 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-09-05 18:35:37 +0200 |
commit | 99989b37ffd28f9f010f780f4456ca8709cbea5b (patch) | |
tree | bfb0728e3d008b67655e756ed996a559661712b8 /apps | |
parent | 83bf3095cf14f63dff551c567dfffb82a061ce8b (diff) | |
download | nextcloud-server-99989b37ffd28f9f010f780f4456ca8709cbea5b.tar.gz nextcloud-server-99989b37ffd28f9f010f780f4456ca8709cbea5b.zip |
Fix pointer cursor not shown on avatars
When the cursor is on an avatar wrapper the cursor is shown as a pointer
to inform the user that it can be clicked (which will either show the
contacts menu or insert a mention, depending on the case); the cursor
must be explicitly defined for the "img" element that shows the avatar
too, or otherwise the default cursor would be shown.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/comments/css/comments.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/comments/css/comments.scss b/apps/comments/css/comments.scss index 11f9df701b6..0ce355cb3aa 100644 --- a/apps/comments/css/comments.scss +++ b/apps/comments/css/comments.scss @@ -141,13 +141,15 @@ #commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper:not(.currentUser), #commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper:not(.currentUser) .avatar, +#commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper:not(.currentUser) .avatar img, #commentsTabView .comment .authorRow .avatar:not(.currentUser), #commentsTabView .comment .authorRow .author:not(.currentUser) { cursor: pointer; } .atwho-view-ul .avatar-name-wrapper, -.atwho-view-ul .avatar-name-wrapper .avatar { +.atwho-view-ul .avatar-name-wrapper .avatar, +.atwho-view-ul .avatar-name-wrapper .avatar img { cursor: pointer; } |