Update EditUsers.plugin.js

This commit is contained in:
Mirco Wittrien 2020-10-20 22:48:48 +02:00
parent bcedf6dd8d
commit 17790ba936
1 changed files with 9 additions and 1 deletions

View File

@ -5,12 +5,15 @@ module.exports = (_ => {
"info": { "info": {
"name": "EditUsers", "name": "EditUsers",
"author": "DevilBro", "author": "DevilBro",
"version": "3.9.9", "version": "4.0.0",
"description": "Allow you to change the icon, name, tag and color of users" "description": "Allow you to change the icon, name, tag and color of users"
}, },
"changeLog": { "changeLog": {
"improved": { "improved": {
"Message Color Gradient": "Color Gradient now also works for messages, kinda" "Message Color Gradient": "Color Gradient now also works for messages, kinda"
},
"fixed": {
"Message Color Gradient": "Fixed issue where some message components lost their text color when a gradient is used"
} }
} }
}; };
@ -154,6 +157,11 @@ module.exports = (_ => {
${BDFDB.dotCNS.userinfohovered + BDFDB.dotCN.userinfodiscriminator} { ${BDFDB.dotCNS.userinfohovered + BDFDB.dotCN.userinfodiscriminator} {
display: block; display: block;
} }
${BDFDB.dotCN.messagemarkup} span[style*="linear-gradient"] code.inline,
${BDFDB.dotCN.messagemarkup} span[style*="linear-gradient"] blockquote,
${BDFDB.dotCN.messagemarkup} span[style*="linear-gradient"] ${BDFDB.dotCN.spoilertext} {
color: var(--text-normal);
}
`; `;
} }