This commit is contained in:
Mirco Wittrien 2019-03-14 11:15:07 +01:00
parent 4217344f9e
commit 427420c731
3 changed files with 4 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -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/CustomJs.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/FormattableMessageCopier.plugin.js
https://raw.githubusercontent.com/Metalloriff/BetterDiscordPlugins/master/GuildAndFriendRemovalAlerts.plugin.js

View File

@ -22,7 +22,7 @@ class ShowHiddenChannels {
};
this.categoryMarkup =
`<div class="container-hidden ${BDFDB.disCN.channelgroup}">
`<div class="container-hidden">
<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;">
<svg class="${BDFDB.disCNS.categoryicondefault + BDFDB.disCN.categoryicontransition}" width="12" height="12" viewBox="0 0 24 24">
@ -76,7 +76,7 @@ class ShowHiddenChannels {
</div>`;
this.css = `
.container-hidden${BDFDB.disCNS.channelgroup + BDFDB.dotCNS.categorycontainerdefault + BDFDB.dotCN.categoryicontransition} {
.container-hidden ${BDFDB.dotCNS.categorycontainerdefault + BDFDB.dotCN.categoryicontransition} {
position: static;
}`;
@ -370,7 +370,7 @@ class ShowHiddenChannels {
if (!scroller || scroller.lastChild.previousSibling == category) return;
category.remove();
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);
}
}