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]: duplicated scrollbar #3039

Open
2 tasks done
ValiantZippu opened this issue Feb 28, 2025 · 13 comments
Open
2 tasks done

[Bug]: duplicated scrollbar #3039

ValiantZippu opened this issue Feb 28, 2025 · 13 comments
Labels
official-youtube-music-issue It's an YouTube's issue (not YTM-Desktop issue)

Comments

@ValiantZippu
Copy link

Preflight Checklist

  • I use the latest version of YouTube Music (Application).
  • I have searched the issue tracker for a feature request that matches the one I want to file, without success.

Problem Description

So basically we have a scroll bar right ?
and it works right ?
but does it looks visually appealing ? No right ?
That's what I am saying

Image
Image
Image
Image

Proposed Solution

I have a suggestion that I hope you will consider. The current scrollbar is not visually appealing, and I find it unnecessary. I believe that the same functionality can be achieved with a more modern, smaller scrollbar.

this is the current one
Image

and this is the simple modern sample [ we all know ]
Image

Alternatives Considered

.

Additional Information

No response

@pedrovanderbeek
Copy link

I second this, but I raise a bigger issue with it.
The 'double scrollbar' issue (shown in the first 3 examples you provided).
It is a huge flaw that needs to be addressed IMO, and should be a quick-fix.

@h-banii
Copy link
Contributor

h-banii commented Mar 2, 2025

you can use a custom css theme to customize the scrollbar

Example:

* {
  scrollbar-width: unset !important;
  scrollbar-color: unset !important;
}

*::-webkit-scrollbar {
    width: 8px !important;
    height: 0px !important;
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

Image


The double scrollbar doesn't seem to happen on Linux, so idk

@ValiantZippu
Copy link
Author

I second this, but I raise a bigger issue with it.
The 'double scrollbar' issue (shown in the first 3 examples you provided).
It is a huge flaw that needs to be addressed IMO, and should be a quick-fix.

Yeah for real literally that's what I am showing 2 big chunk of white scrollbar I hope it gets fixed and gets a modern rounded small scrollbar we all know and also has been shown in my design example.

@ValiantZippu
Copy link
Author

you can use a custom css theme to customize the scrollbar

Example:

* {
  scrollbar-width: unset !important;
  scrollbar-color: unset !important;
}

*::-webkit-scrollbar {
    width: 8px !important;
    height: 0px !important;
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

Image


The double scrollbar doesn't seem to happen on Linux, so idk

I don't know about Linux but most of the people use and it is a problem here so .

@JellyBrick JellyBrick added the official-youtube-music-issue It's an YouTube's issue (not YTM-Desktop issue) label Mar 3, 2025
@JellyBrick
Copy link
Collaborator

JellyBrick commented Mar 3, 2025

It is a huge flaw that needs to be addressed IMO, and should be a quick-fix.

Not easy to fix. this is a UI/UX flaw on YouTube.
I think this issue is caused by Google's A/B testing, I can't reproduce it on my account.

@JellyBrick
Copy link
Collaborator

Also, this is a “bug”, not a “feature request”.

@JellyBrick JellyBrick changed the title [Feature Request] : Scrollbar design change ( simple thing but it would improve the aesthetic and make the Ui Clean ) [Bug]: duplicated scrollbar Mar 3, 2025
@pedrovanderbeek
Copy link

It is a huge flaw that needs to be addressed IMO, and should be a quick-fix.

Not easy to fix. this is a UI/UX flaw on YouTube.
I think this issue is caused by Google's A/B testing, I can't reproduce it on my account.

Appreciate your input. It seems it only shows the double scrollbar sometimes, I reset the app and it worked.

@ValiantZippu
Copy link
Author

It is a huge flaw that needs to be addressed IMO, and should be a quick-fix.

Not easy to fix. this is a UI/UX flaw on YouTube.
I think this issue is caused by Google's A/B testing, I can't reproduce it on my account.

Appreciate your input. It seems it only shows the double scrollbar sometimes, I reset the app and it worked.

For me it shows me ever since from 3.5.3 to 3.7.5 version.It would be a great touch if can be fixed.

@pedrovanderbeek
Copy link

@ValiantZippu and anyone else with this issue...

I should mention something else, it might help fix it, as I think it might have fixed mine, I just forgot that extra step.

  1. Import the custom CSS provided by @h-banii through the menu option in the app.
  2. Restart App through Navigation options in menu (NOT Reload or Force Reload)
  3. Remove the custom CSS snippet.
  4. Restart App through Navigation options in menu (NOT Reload or Force Reload)

I think this might have fixed that issue, for some reason...
Let me know if it works.

CSS snippet:

* {
  scrollbar-width: unset !important;
  scrollbar-color: unset !important;
}

*::-webkit-scrollbar {
    width: 8px !important;
    height: 0px !important;
}

*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

@Damglador
Copy link

The double scrollbar doesn't seem to happen on Linux, so idk

I have it on Arch Linux

@h-banii
Copy link
Contributor

h-banii commented Mar 13, 2025

The double scrollbar doesn't seem to happen on Linux, so idk

I have it on Arch Linux

I couldn't reproduce the bug on NixOS so I assumed it didn't happen on Linux, but as Jellybrick pointed out earlier it could be A/B testing:

Not easy to fix. this is a UI/UX flaw on YouTube. I think this issue is caused by Google's A/B testing, I can't reproduce it on my account.

It's still kinda weird though, I wonder if this happens on the web too (chromium/firefox/webkit) or just here.
(also, the post went from feature request to bug, so it's missing some information to properly reproduce/debug it)

@Damglador
Copy link

I don't think it was always there for me either. In any case, the custom CSS fixed it for me, at least for now.

@ValiantZippu
Copy link
Author

The CSS config works [ Mostly ]

For me the double scrollbar now appears randomly in artist page and anywhere the navigation bar is present
Like the double scrollbar works like if you scroll it on top it would remove the navigation bar dark / blur background and if you scroll it down it would scroll the page a little bit and remove the dark/blur navigation bar. But the CSS theme cannot produce the smooth hovering transition it is just slab of modern scrollbar which works for now but need work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
official-youtube-music-issue It's an YouTube's issue (not YTM-Desktop issue)
Projects
None yet
Development

No branches or pull requests

5 participants