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

[Bug]: Scrollbar appears in custom titlebar #1835

Closed
3 of 5 tasks
MulverineX opened this issue Mar 5, 2024 · 1 comment · Fixed by #1992
Closed
3 of 5 tasks

[Bug]: Scrollbar appears in custom titlebar #1835

MulverineX opened this issue Mar 5, 2024 · 1 comment · Fixed by #1992
Labels
bug Something isn't working fix-available A fix to the issue is available in a new version

Comments

@MulverineX
Copy link
Contributor

Preflight Checklist

  • I use the latest version of YouTube Music (Application).
  • I have searched the issue tracker for a bug report that matches the one I want to file, without success.
  • I understand that th-ch/youtube-music has NO affiliation with Google or YouTube

YouTube Music (Application) Version

3.3.2

Checklists

What operating system are you using?

Windows

Operating System Version

Windows 11 version 23H2

What CPU architecture are you using?

x64

Last Known Working YouTube Music (Application) version

No response

Reproduction steps

  1. Enable the In-App-Menu (if its not already enabled)

Expected Behavior

scrollbar stops at the bottom edge of the titlebar; no page content should escape the boundary

Actual Behavior

image

Enabled plugins

  1. In-App-Menu
  2. Album color theme
  3. Blur nav
  4. If any other plugins are relevant please let me know

Additional Information

No response

@colineberly
Copy link

colineberly commented Mar 26, 2024

You can customize it with CSS to not be so intrusive.

Example of what I am using:

::-webkit-scrollbar {
  max-width: 6px !important;
  background: transparent !important;
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
  max-width: 6px !important;
  background: rgba(0,0,0,0) !important;
}
::-webkit-scrollbar-thumb {
  background: rgb(29, 29, 29) !important;
  border-radius: 6px !important;
}
::-webkit-scrollbar-corner:hover,
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track-piece:hover {
  background: transparent !important;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(43 43 43) !important;
}

image

@JellyBrick JellyBrick added the bug Something isn't working label Mar 26, 2024
@JellyBrick JellyBrick added the fix-available A fix to the issue is available in a new version label May 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working fix-available A fix to the issue is available in a new version
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants