I whipped up a proof-of-concept user CSS that does this (and should automatically adapt to entries shifting down).
**********
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("pawb.social") {
a.text-info[title$="@lemmy.blahaj.zone"] span::before { content: "❤ "; color: red !important; }
a.text-info:not([title*="."]) span::before { content: "★ "; color: yellow !important; }
}
I whipped up a proof-of-concept user CSS that does this (and should automatically adapt to entries shifting down).
**********
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("pawb.social") {
a.text-info[title$="@lemmy.blahaj.zone"] span::before {
content: "❤ ";
color: red !important;
}
a.text-info:not([title*="."]) span::before {
content: "★ ";
color: yellow !important;
}
}