Drop BetterUserArea

This commit is contained in:
thororen1234 2025-03-26 07:55:22 -04:00
parent 208aa05e9a
commit d5b0438d2e
No known key found for this signature in database
3 changed files with 1 additions and 47 deletions

View file

@ -10,7 +10,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch
### Extra included plugins
<details>
<summary>163 additional plugins</summary>
<summary>162 additional plugins</summary>
### All Platforms
- AllCallTimers by MaxHerbold & D3SOX
@ -27,7 +27,6 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch
- BetterInvites by iamme
- BetterPlusReacts by Joona
- BetterQuickReact by Ven & Sqaaakoi
- BetterUserArea by Samwich
- BlockKeywords by catcraft
- BlockKrisp by D3SOX
- BypassStatus by Inbestigator & thororen

View file

@ -1,34 +0,0 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { disableStyle, enableStyle } from "@api/Styles";
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
import style from "./style.css?managed";
export default definePlugin({
name: "BetterUserArea",
description: "Reworks the user area styling to fit more buttons and overall look nicer",
authors: [Devs.Samwich],
patches: [{
find: "#{intl::ACCOUNT_SPEAKING_WHILE_MUTED}",
replacement:
[
// add a custom class to make things easier
{
match: /className:(\i.container),/,
replace: "className: `${$1} vc-userAreaStyles`,"
},
]
}],
start() {
enableStyle(style);
},
stop() {
disableStyle(style);
}
});

View file

@ -1,11 +0,0 @@
/* stylelint-disable rule-empty-line-before */
.vc-userAreaStyles
{
display: grid;
height: 75px !important;
max-height: 9239080123px !important;
[class*="flex_"]
{
justify-content: space-between !important;
}
}