stuff
This commit is contained in:
parent
4217344f9e
commit
427420c731
File diff suppressed because one or more lines are too long
|
@ -76,7 +76,6 @@ https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/Better
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/CustomizableAvatarDPI.plugin.js
|
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/CustomizableAvatarDPI.plugin.js
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/CustomJs.plugin.js
|
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/CustomJs.plugin.js
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/DetailedServerTooltips.plugin.js
|
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/DetailedServerTooltips.plugin.js
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/DiscordLogger.plugin.js
|
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/DoubleClickVoiceChannels.plugin.js
|
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/DoubleClickVoiceChannels.plugin.js
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/FormattableMessageCopier.plugin.js
|
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/FormattableMessageCopier.plugin.js
|
||||||
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/GuildAndFriendRemovalAlerts.plugin.js
|
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/GuildAndFriendRemovalAlerts.plugin.js
|
||||||
|
|
|
@ -22,7 +22,7 @@ class ShowHiddenChannels {
|
||||||
};
|
};
|
||||||
|
|
||||||
this.categoryMarkup =
|
this.categoryMarkup =
|
||||||
`<div class="container-hidden ${BDFDB.disCN.channelgroup}">
|
`<div class="container-hidden">
|
||||||
<div class="${BDFDB.disCN.categorycontainerdefault} hidden-channel">
|
<div class="${BDFDB.disCN.categorycontainerdefault} hidden-channel">
|
||||||
<div class="${BDFDB.disCNS.flex + BDFDB.disCNS.flex2 + BDFDB.disCNS.horizontal + BDFDB.disCNS.horizontal2 + BDFDB.disCNS.directionrow + BDFDB.disCNS.justifystart + BDFDB.disCNS.alignstart + BDFDB.disCNS.nowrap + BDFDB.disCNS.categorywrapperdefault + BDFDB.disCN.cursorpointer}" style="flex: 1 1 auto;">
|
<div class="${BDFDB.disCNS.flex + BDFDB.disCNS.flex2 + BDFDB.disCNS.horizontal + BDFDB.disCNS.horizontal2 + BDFDB.disCNS.directionrow + BDFDB.disCNS.justifystart + BDFDB.disCNS.alignstart + BDFDB.disCNS.nowrap + BDFDB.disCNS.categorywrapperdefault + BDFDB.disCN.cursorpointer}" style="flex: 1 1 auto;">
|
||||||
<svg class="${BDFDB.disCNS.categoryicondefault + BDFDB.disCN.categoryicontransition}" width="12" height="12" viewBox="0 0 24 24">
|
<svg class="${BDFDB.disCNS.categoryicondefault + BDFDB.disCN.categoryicontransition}" width="12" height="12" viewBox="0 0 24 24">
|
||||||
|
@ -76,7 +76,7 @@ class ShowHiddenChannels {
|
||||||
</div>`;
|
</div>`;
|
||||||
|
|
||||||
this.css = `
|
this.css = `
|
||||||
.container-hidden${BDFDB.disCNS.channelgroup + BDFDB.dotCNS.categorycontainerdefault + BDFDB.dotCN.categoryicontransition} {
|
.container-hidden ${BDFDB.dotCNS.categorycontainerdefault + BDFDB.dotCN.categoryicontransition} {
|
||||||
position: static;
|
position: static;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
|
@ -370,7 +370,7 @@ class ShowHiddenChannels {
|
||||||
if (!scroller || scroller.lastChild.previousSibling == category) return;
|
if (!scroller || scroller.lastChild.previousSibling == category) return;
|
||||||
category.remove();
|
category.remove();
|
||||||
let count = parseInt(scroller.lastChild.previousSibling.className.split("-")[1])+1;
|
let count = parseInt(scroller.lastChild.previousSibling.className.split("-")[1])+1;
|
||||||
category.className = "container-" + count + " container-hidden " + BDFDB.disCN.channelgroup;
|
category.className = "container-" + count + " container-hidden";
|
||||||
scroller.insertBefore(category, scroller.lastChild);
|
scroller.insertBefore(category, scroller.lastChild);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue