DEV: Remove unnecessary element. (#15225)
This was added 6 years ago in d1e85bdd8b
and I can't see how this is useful for any customizations at all.
This commit is contained in:
parent
ae88b52370
commit
e668b3dc71
|
@ -198,10 +198,7 @@ createWidget("post-avatar", {
|
|||
}
|
||||
}
|
||||
|
||||
const result = [
|
||||
h("div.post-avatar", postAvatarBody),
|
||||
h("div.poster-avatar-extra"),
|
||||
];
|
||||
const result = [h("div.post-avatar", postAvatarBody)];
|
||||
|
||||
if (this.settings.displayPosterName) {
|
||||
result.push(this.attach("post-avatar-user-info", attrs));
|
||||
|
|
|
@ -715,9 +715,6 @@ aside.quote {
|
|||
font-size: $font-down-2;
|
||||
}
|
||||
}
|
||||
.topic-avatar .poster-avatar-extra {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.map {
|
||||
&:first-of-type {
|
||||
|
|
Loading…
Reference in New Issue