Update BetterFriendList.plugin.js
This commit is contained in:
parent
b23b18d37d
commit
16a641700e
|
@ -2,7 +2,7 @@
|
|||
* @name BetterFriendList
|
||||
* @author DevilBro
|
||||
* @authorId 278543574059057154
|
||||
* @version 1.3.5
|
||||
* @version 1.3.6
|
||||
* @description Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount
|
||||
* @invite Jx3TjNS
|
||||
* @donate https://www.paypal.me/MircoWittrien
|
||||
|
@ -17,7 +17,7 @@ module.exports = (_ => {
|
|||
"info": {
|
||||
"name": "BetterFriendList",
|
||||
"author": "DevilBro",
|
||||
"version": "1.3.5",
|
||||
"version": "1.3.6",
|
||||
"description": "Adds extra Controls to the Friends Page, for example sort by Name/Status, Search and All/Request/Blocked Amount"
|
||||
},
|
||||
"changeLog": {
|
||||
|
@ -25,7 +25,8 @@ module.exports = (_ => {
|
|||
"Hidden": "You can now hide Friends from your Friend List and put them into an extra category, allowing you to clean up your list without hurting someones feelings"
|
||||
},
|
||||
"fixed": {
|
||||
"Online Count": "No longer includes hidden Friends"
|
||||
"Online Count": "No longer includes hidden Friends",
|
||||
"Actions Overflow/Miss-Align": "Should look normal now"
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -124,16 +125,6 @@ module.exports = (_ => {
|
|||
};
|
||||
|
||||
this.css = `
|
||||
${BDFDB.dotCN.peoplewrapper} > * {
|
||||
justify-content: unset;
|
||||
}
|
||||
${BDFDB.dotCNS.peoplewrapper + BDFDB.dotCN.userinfo} {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
${BDFDB.dotCN._betterfriendlistmutualguilds} {
|
||||
margin-left: 13px;
|
||||
width: 200px;
|
||||
}
|
||||
${BDFDB.dotCNS.peoplestabbar + BDFDB.dotCN.peoplesbadge} {
|
||||
background-color: var(--background-accent);
|
||||
margin-left: 6px;
|
||||
|
@ -144,6 +135,16 @@ module.exports = (_ => {
|
|||
${BDFDB.dotCN._betterfriendlistnamecell} {
|
||||
width: 150px;
|
||||
}
|
||||
${BDFDB.dotCN.peoplesuser} {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
${BDFDB.dotCN.peoplesactions} {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
${BDFDB.dotCN._betterfriendlistmutualguilds} {
|
||||
flex: 0 0 200px;
|
||||
margin-left: 13px;
|
||||
}
|
||||
`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue