update to style

This commit is contained in:
MathMan05
2025-09-27 17:54:44 -05:00
parent 644e49cde4
commit 730bd323e6
2 changed files with 9 additions and 1 deletions
+6 -1
View File
@@ -929,7 +929,12 @@ class Localuser {
if (!statuselm || !VoiceGuild || !VoiceButtons) throw new Error("Missing status element");
statuselm.textContent = I18n.Voice.status[status]();
VoiceGuild.textContent = `${channel.guild.properties.name} / ${channel.name}`;
const guildName = document.createElement("span");
guildName.textContent = channel.guild.properties.name;
const channelName = document.createElement("span");
channelName.textContent = channel.name;
VoiceGuild.innerHTML = ``;
VoiceGuild.append(guildName, " / ", channelName);
VoiceGuild.onclick = () => {
this.goToChannel(channel.id);
};
+3
View File
@@ -1482,6 +1482,9 @@ span.instanceStatus {
font-size: 14px;
cursor: pointer;
width: fit-content;
span {
white-space: nowrap;
}
}
#VoiceGuild:hover {
text-decoration: underline;