Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-25 19:01:23 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 10:31:41 +0300
commit9692378f6fd42c3d4514e86dcba3d6d2b6b9b6df (patch)
treeade1f558c44e00a4b50330960dd00c4ad3925dd3 /css
parent5b89513671706ff854f383ece696581318eadcdf (diff)
Fix pointer cursor not shown on participants with a contacts menu
When the current user is an actual user and not a guest clicking on the avatar of a participant shows the contacts menu (unless the participant is the current user or a guest), so when hovering on the avatar the cursor should be a pointer to imply a possible interaction. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/style.scss7
1 files changed, 7 insertions, 0 deletions
diff --git a/css/style.scss b/css/style.scss
index c9c375731..d3411b966 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -737,6 +737,13 @@ input[type="password"] {
background: no-repeat 14px center;
}
+body:not(#body-public) .participantWithList > li > span:not(.currentUser):not(.guestUser) {
+ .avatar,
+ .avatar img {
+ cursor: pointer;
+ }
+}
+
/**