mirror of
https://github.com/zulip/zulip.git
synced 2025-11-07 23:43:43 +00:00
css: Hyphenate .status-emoji selector.
This commit is contained in:
@@ -190,7 +190,7 @@ function initialize_right_sidebar() {
|
||||
}
|
||||
|
||||
$("#user_presences").on("mouseenter", ".user_sidebar_entry", (e) => {
|
||||
const $status_emoji = $(e.target).closest(".user_sidebar_entry").find("img.status_emoji");
|
||||
const $status_emoji = $(e.target).closest(".user_sidebar_entry").find("img.status-emoji");
|
||||
if ($status_emoji.length) {
|
||||
const animated_url = $status_emoji.data("animated-url");
|
||||
if (animated_url) {
|
||||
@@ -200,7 +200,7 @@ function initialize_right_sidebar() {
|
||||
});
|
||||
|
||||
$("#user_presences").on("mouseleave", ".user_sidebar_entry", (e) => {
|
||||
const $status_emoji = $(e.target).closest(".user_sidebar_entry").find("img.status_emoji");
|
||||
const $status_emoji = $(e.target).closest(".user_sidebar_entry").find("img.status-emoji");
|
||||
if ($status_emoji.length) {
|
||||
const still_url = $status_emoji.data("still-url");
|
||||
if (still_url) {
|
||||
|
||||
Reference in New Issue
Block a user