TheCommieAxolotl / BetterDiscord-Stuff

BetterDiscord Plugins and Themes
https://discord.gg/5BSWtSM3XU
MIT License
115 stars 293 forks source link

[Feature Request] - Ultra Theme toggle for ChannelName Capitalization #83

Closed TheKartel closed 3 months ago

TheKartel commented 3 months ago

Love the Ultra theme it's almost perfect however, there's no current way that I've seen outside of the Raw CSS for the Ultra Theme to toggle or change the "ChannelName" text transform of Capitalization to normal or anything else. Could there be a way to implement a toggle for this or a section in the editable code for this theme within the css ?

TheCommieAxolotl commented 3 months ago

Just put this at the bottom of the theme file/custom css

.name__8d1ec {
    text-transform: unset;
}
TheKartel commented 3 months ago

It didn't work but thank you for the reply anyway!

TheCommieAxolotl commented 3 months ago

You might need to stick an !important before the ; @TheKartel

Replace that with

.overflow__87fe8:not(.nameAndDecorators_cfd1ff .overflow__87fe8) {
    text-transform: unset !important;
}
TheKartel commented 3 months ago

Ah I just saw your edit I managed to figure it out by doing that as well, thank you so much!