popovers: Fix styling of user card/profile status dots.

The tweaks I made as part of merging
f204a4c592 apparently were wrong; the
CSS class .popover_user_presence had been shared between both the user
card and the profile.

Fix this by referencing the right CSS classes. Additionally, fix the
margins to have a square hover region around the presence dot.

Fixes #23588.
This commit is contained in:
Tim Abbott
2022-11-14 13:01:19 -08:00
parent 1365cc2263
commit 23856433e4

View File

@@ -302,7 +302,8 @@ ul {
}
}
.user_profile_presence {
.user_profile_presence,
.popover_user_presence {
width: 8px;
height: 8px;
margin: 0 5px;
@@ -350,8 +351,8 @@ ul {
justify-content: center;
}
.popover_user_presence {
margin: 5px 10px;
.user_profile_presence {
margin: 5px;
vertical-align: middle;
}