Forked from T1ckbase/remove-discord-new-theme-titlebar.css
Last active
June 18, 2025 00:47
-
-
Save DexrnZacAttack/3d66099762af33374f764e8a4919fa80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://gist.github.com/DexrnZacAttack/3d66099762af33374f764e8a4919fa80/ | |
* Modified version of T1ckbase/remove-discord-new-theme-titlebar.css to add support for the ChannelTabs plugin | |
* that was recently added to Equicord. (at the time of writing this) | |
*/ | |
:root { | |
--custom-app-top-bar-height: 4px; | |
} | |
div[class*="container"] div[class*="bar"] > [class*="title"] { | |
display: none; | |
} | |
div[class*="container"] div[class*="bar"] > [class*="trailing"] { | |
position: fixed; | |
right: 0; | |
top: var(--custom-app-top-bar-height); | |
z-index: 1000; | |
gap: 0; | |
} | |
div[class*="container"] div[class*="bar"] div[class*="winButton"] { | |
min-height: 46px; | |
min-width: 36px; | |
gap: 0; | |
} | |
div[class*="winButtonsWithDivider"]::before { | |
content: none; | |
} | |
div[class*="content"] > div[class*="page"] div[class*="chat"] > div[class*="subtitleContainer"] > section[class*="container"] { | |
padding-right: 170px; | |
} | |
div[class*="vc-channeltabs-tab-container"] { | |
max-width: 95%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment