stuff
This commit is contained in:
parent
4c903aa8cb
commit
210a94994d
|
@ -460,7 +460,7 @@ class EditChannels {
|
|||
let isgradient = data.color && BDFDB.isObject(data.color);
|
||||
let color = this.chooseColor(channelname, data.color);
|
||||
if (isgradient) {
|
||||
channelname.style.removeProperty("color");
|
||||
channelname.style.setProperty("color", BDFDB.colorCONVERT(data.color[Object.keys(data.color)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(channelname, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(color)} !important;">${BDFDB.encodeToHTML(data.name || info.name)}</span>`));
|
||||
}
|
||||
else {
|
||||
|
@ -528,7 +528,7 @@ class EditChannels {
|
|||
let data = this.getChannelData(info.id, info.parent_id, channelname);
|
||||
if (data.name || data.color || channelname.getAttribute("changed-by-editchannels")) {
|
||||
if (BDFDB.isObject(data.color)) {
|
||||
channelname.style.removeProperty("color");
|
||||
channelname.style.setProperty("color", BDFDB.colorCONVERT(data.color[Object.keys(data.color)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(channelname, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(this.chooseColor(channelname, data.color))} !important;">${BDFDB.encodeToHTML("#" + (data.name || info.name))}</span>`));
|
||||
}
|
||||
else {
|
||||
|
@ -588,7 +588,7 @@ class EditChannels {
|
|||
function colorDefault() {
|
||||
mention.style.setProperty("background", color0_1, "important");
|
||||
if (isgradient) {
|
||||
mention.style.removeProperty("color");
|
||||
mention.style.setProperty("color", BDFDB.colorCONVERT(data.color[Object.keys(data.color)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(mention, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${color} !important;">${BDFDB.encodeToHTML(name)}</span>`));
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -482,7 +482,7 @@ class EditServers {
|
|||
let data = this.getGuildData(info.id, guildname);
|
||||
if (data.name || data.color2 || guildname.getAttribute("changed-by-editservers")) {
|
||||
if (BDFDB.isObject(data.color2)) {
|
||||
guildname.style.removeProperty("color");
|
||||
guildname.style.setProperty("color", BDFDB.colorCONVERT(data.color2[Object.keys(data.color2)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(guildname, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(data.color2)} !important;">${BDFDB.encodeToHTML(data.name || info.name)}</span>`));
|
||||
}
|
||||
else {
|
||||
|
@ -527,7 +527,7 @@ class EditServers {
|
|||
if (BDFDB.isObject(data.color1)) fakeicon.style.setProperty("background-image", BDFDB.colorGRADIENT(data.color1));
|
||||
else fakeicon.style.setProperty("background-color", BDFDB.colorCONVERT(data.color1, "RGB"));
|
||||
}
|
||||
if (data.color2 && !BDFDB.isObject(data.color2)) fakeicon.style.setProperty("color", BDFDB.colorCONVERT(data.color2, "RGB"));
|
||||
if (data.color2) fakeicon.style.setProperty("color", BDFDB.colorCONVERT(BDFDB.isObject(data.color2) ? data.color2[Object.keys(data.color2)[0]] : data.color2, "RGB"));
|
||||
BDFDB.setInnerText(fakeicon, BDFDB.isObject(data.color2) ? BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(data.color2)} !important;">${BDFDB.encodeToHTML(shortname)}</span>`) : shortname);
|
||||
icon.parentElement.appendChild(fakeicon);
|
||||
fakeicon.style.setProperty("font-size", this.getFontSize(fakeicon));
|
||||
|
@ -547,8 +547,7 @@ class EditServers {
|
|||
icon.style.removeProperty("background-image");
|
||||
icon.style.removeProperty("background-color");
|
||||
}
|
||||
if (data.color2 && !BDFDB.isObject(data.color2)) icon.style.setProperty("color", BDFDB.colorCONVERT(data.color2, "RGB"));
|
||||
else icon.style.removeProperty("color");
|
||||
if (data.color2) icon.style.setProperty("color", BDFDB.colorCONVERT(BDFDB.isObject(data.color2) ? data.color2[Object.keys(data.color2)[0]] : data.color2, "RGB"));
|
||||
BDFDB.setInnerText(icon, BDFDB.isObject(data.color2) ? BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(data.color2)} !important;">${BDFDB.encodeToHTML(shortname)}</span>`) : shortname);
|
||||
}
|
||||
icon.style.setProperty("font-size", this.getFontSize(icon));
|
||||
|
|
|
@ -795,7 +795,7 @@ class EditUsers {
|
|||
let usemembercolor = !BDFDB.containsClass(username.parentElement, BDFDB.disCN.userprofilelistname) && (BDFDB.containsClass(username, BDFDB.disCN.memberusername, BDFDB.disCN.messageusername, false) || isBRCenabled);
|
||||
|
||||
if (BDFDB.isObject(data.color1)) {
|
||||
username.style.removeProperty("color");
|
||||
username.style.setProperty("color", BDFDB.colorCONVERT(data.color1[Object.keys(data.color1)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(username, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(data.color1)} !important;">${BDFDB.encodeToHTML(data.name || (usenick ? member.nick : info.username))}</span>`));
|
||||
}
|
||||
else {
|
||||
|
@ -825,7 +825,7 @@ class EditUsers {
|
|||
this.changeBotTags(data, username, member);
|
||||
if (data.name || data.color1 || username.getAttribute("changed-by-editusers")) {
|
||||
if (BDFDB.isObject(data.color1)) {
|
||||
username.style.removeProperty("color");
|
||||
username.style.setProperty("color", BDFDB.colorCONVERT(data.color1[Object.keys(data.color1)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(username, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(data.color1)} !important;">${BDFDB.encodeToHTML(data.name || member.nick || info.username)}</span>`));
|
||||
}
|
||||
else {
|
||||
|
@ -854,7 +854,7 @@ class EditUsers {
|
|||
}
|
||||
else {
|
||||
if (BDFDB.isObject(data.color1)) {
|
||||
username.style.removeProperty("color");
|
||||
username.style.setProperty("color", BDFDB.colorCONVERT(data.color1[Object.keys(data.color1)[0]], "RGB"), "important");
|
||||
BDFDB.setInnerText(username, BDFDB.htmlToElement(`<span style="pointer-events: none; -webkit-background-clip: text !important; color: transparent !important; background-image: ${BDFDB.colorGRADIENT(data.color1)} !important;">${BDFDB.encodeToHTML(data.name || info.username)}</span>`));
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in New Issue