When a user likes a song or an album, a popup appears containing text and an image.
Currently, the image inside the popup is selectable/draggable, which creates an unintended UX behavior.
The image should be non-selectable by applying:
.unselectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Current hover issue:
Fixed:
Note: This issue is unrelated to the API and only affects the frontend/UI.
When a user likes a song or an album, a popup appears containing text and an image.
Currently, the image inside the popup is selectable/draggable, which creates an unintended UX behavior.
The image should be non-selectable by applying:
.unselectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Current hover issue:
Fixed:
Note: This issue is unrelated to the API and only affects the frontend/UI.