Fluent icon indicating copy to clipboard operation
Fluent copied to clipboard

Members sidebar shifted when using ServerFolders

Open maicol07 opened this issue 2 years ago • 1 comments

Describe the bug

When ServerFolders and you open a folder in a new column, the right sidebar shifts over the window edge. This behaviour is not present in the default Discord theme.

To Reproduce

  1. Install Fluent and ServerFolders
  2. Ensure the "Move the servers from opened folder in an extra column" setting is enabled in ServerFolders settings.
  3. Make a server folder and see bug

Screenshots

Fluent Discord Default
Folder closed image image
Folder opened image image

Infomation (please complete the following information)

Discord channel: PTB
OS: Windows
Mod: BetterDiscord
Discord language: Italian

maicol07 avatar May 12 '23 12:05 maicol07

Temporary fix:

.content-Pph8t6:not(.closed-j55_T-) + .base-2jDfDU .content-1SgpWY {
    width: calc(100vw - var(--server-container) - var(--server-container));
}

.content-1SgpWY {
    transition: width 0.25s cubic-bezier(.44,1.04,1,1.01) !important;
}

New fix for Equicord BetterFolders:

nav.wrapper__216eb.guilds__2b93a + div:has(> nav) + .base_c0676e .content__76dcf {
    width: calc(100vw - var(--server-container) - var(--server-container));
}

.content__76dcf {
    transition: width 0.1s cubic-bezier(.44,1.04,1,1.01) !important;
}

maicol07 avatar Jun 21 '23 07:06 maicol07