mirror of
https://github.com/Equicord/Equicord.git
synced 2025-04-01 13:11:57 -04:00
Drop BetterUserArea
This commit is contained in:
parent
208aa05e9a
commit
d5b0438d2e
3 changed files with 1 additions and 47 deletions
|
@ -10,7 +10,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch
|
||||||
|
|
||||||
### Extra included plugins
|
### Extra included plugins
|
||||||
<details>
|
<details>
|
||||||
<summary>163 additional plugins</summary>
|
<summary>162 additional plugins</summary>
|
||||||
|
|
||||||
### All Platforms
|
### All Platforms
|
||||||
- AllCallTimers by MaxHerbold & D3SOX
|
- AllCallTimers by MaxHerbold & D3SOX
|
||||||
|
@ -27,7 +27,6 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch
|
||||||
- BetterInvites by iamme
|
- BetterInvites by iamme
|
||||||
- BetterPlusReacts by Joona
|
- BetterPlusReacts by Joona
|
||||||
- BetterQuickReact by Ven & Sqaaakoi
|
- BetterQuickReact by Ven & Sqaaakoi
|
||||||
- BetterUserArea by Samwich
|
|
||||||
- BlockKeywords by catcraft
|
- BlockKeywords by catcraft
|
||||||
- BlockKrisp by D3SOX
|
- BlockKrisp by D3SOX
|
||||||
- BypassStatus by Inbestigator & thororen
|
- BypassStatus by Inbestigator & thororen
|
||||||
|
|
|
@ -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);
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue