mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 23:22:44 +08:00
FIX: Add the ident to fix user status styling in posts (#26585)
This commit is contained in:
parent
cac21677ee
commit
98ec4af327
|
@ -16,6 +16,7 @@ export class UserStatusMessage {
|
||||||
this.html = this.#statusHtml(status, opts);
|
this.html = this.#statusHtml(status, opts);
|
||||||
this.content = this.#tooltipHtml(status);
|
this.content = this.#tooltipHtml(status);
|
||||||
this.tooltipInstance = this.tooltip.register(this.html, {
|
this.tooltipInstance = this.tooltip.register(this.html, {
|
||||||
|
identifier: "user-status-message-tooltip",
|
||||||
content: this.content,
|
content: this.content,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
[data-content][data-identifier="user-status-message-tooltip"] {
|
[data-content][data-identifier="user-status-message-tooltip"] {
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
.emoji {
|
.emoji {
|
||||||
width: 1em;
|
width: 1em;
|
||||||
height: 1em;
|
height: 1em;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user