diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2017-11-27 15:14:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-27 15:14:40 +0100 |
commit | e428ef9d75d8b6ffe92bc9335f587fd934c10bc8 (patch) | |
tree | 2d4aa587c19052024f5d206b091a32fe5a875def /apps/comments/css | |
parent | cfae590ac93f8b5c9c633aafbf205f54a7400201 (diff) | |
parent | d15ca9ffafcb2f3bdec5e53922fb5b5531a9fea3 (diff) | |
download | nextcloud-server-e428ef9d75d8b6ffe92bc9335f587fd934c10bc8.tar.gz nextcloud-server-e428ef9d75d8b6ffe92bc9335f587fd934c10bc8.zip |
Merge pull request #7256 from nextcloud/fix-cursor-for-avatar-and-user-names-in-comments
Fix cursor for avatar and user names in comments
Diffstat (limited to 'apps/comments/css')
-rw-r--r-- | apps/comments/css/comments.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index ccfad1d39f1..646f5f1100c 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -140,6 +140,17 @@ .atwho-view-ul * .avatar-name-wrapper, #commentsTabView .comment .authorRow { position: relative; +} + +#commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper:not(.currentUser), +#commentsTabView .comment:not(.newCommentRow) .message .avatar-name-wrapper:not(.currentUser) .avatar, +#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 { cursor: pointer; display: inline-flex; align-items: center; |