Stargazers name glow yellow

This commit is contained in:
Jeremy Zhang
2017-12-08 01:43:01 +00:00
parent 80468f71f0
commit 5a51f73f74
3 changed files with 11 additions and 1 deletions

View File

@ -205,6 +205,10 @@ nav .brand-logo {
cursor: pointer;
}
#chatcontent .chatusername.stargazer {
text-shadow: 2px 2px 10px yellow;
}
/*#chatcontent > p > span {*/
/* display: table-row*/
/*}*/

View File

@ -1163,6 +1163,9 @@
} else {
parent.find(".chatusername").css("color", null);
}
if (usr.stargazer) {
parent.find(".chatusername").addClass("stargazer");
}
if (usr.avatar_url) {
parent.attr("discord_userid", usr.id);
parent.find(".authoravatar").prop("src", usr.avatar_url);