Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some bugs I have found while using the theme #7

Open
jer4rud0 opened this issue Jul 5, 2021 · 0 comments
Open

Some bugs I have found while using the theme #7

jer4rud0 opened this issue Jul 5, 2021 · 0 comments

Comments

@jer4rud0
Copy link

jer4rud0 commented Jul 5, 2021

disclaimer: I know little to none about CSS, I just tried tinkering with the skin file and reading related documentation online so pardon me in advance

  • a bug I can't figure to fix myself is when I go full screen in a voice channel and this code adds a 72px gap on the side of my screen which shows my wallpaper
nav+div [class^='sidebar-'],
nav+div[class^='base-'] {
	max-width: calc(100% - 72px);
}
  • scrollbars appear in context menus and the pasted message screen which adds unnecessary padding
    tried fixing it with this
::-webkit-scrollbar {
	width: 8px !important;
}

::-webkit-scrollbar-track {
	visibility: hidden !important;
}
  • pasted message screen has no text box background
    tried fixing it with this
.theme-dark,
.theme-light {
	/* Discord vars */
    --channeltextarea-background: rgba(0, 0, 0, 0.3);
}
  • background in the base.css is spelled as backgorund
div[id^="members-"] [class*="placeholder"] {
	--backgorund-primary: var(--text-normal);
}
  • buttons that appear on message hover is transparent; the red new messages line can be seen through
    tried fixing it with this
div[id^="chat-messages-"] {
	--background-primary: rgba(var(--black), 1);
}

oh, and window controls on macOS isn't affected by background dimming

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant