Si j’utilise ceci pour mes modérateurs, le code CSS fonctionne
.names {
span.moderator a {
background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
Maintenant, si j’utilise le même code, en incluant juste le groupe DexPremium, ceux qui participent au groupe ne changent pas leurs noms
.names {
span.DexPremium a {
background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
Pourquoi ?
Don
2
Bonjour,
Voici un sujet sur la même question.
La solution et le pourquoi se trouvent dans les réponses.
4 « J'aime »
Don
3
Bonjour,
Cela devrait fonctionner pour le groupe DexPremium si le groupe est défini comme principal.
.names {
span.group--DexPremium a {
background: linear-gradient(to right,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
2 « J'aime »