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

docs-bug(cdkDrag): List examples' auto scroll is not working on devices narrower than 721px #26476

Open
Totati opened this issue Jan 24, 2023 · 9 comments
Labels
area: cdk/drag-drop docs This issue is related to documentation good first issue This issue is a good place to start for first time contributors to the project P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent

Comments

@Totati
Copy link
Contributor

Totati commented Jan 24, 2023

Documentation Feedback

Dragging a list element of an example like connected sorting group and moving the item near the page border won't trigger auto scroll on pages narrower than 721px. Resize the page to 721px or wider and it will work again. Last time it worked seems to be in vesion 8 and it looks like it's caused by this flex-basis: auto property

Affected documentation page

https://material.angular.io/cdk/drag-drop/examples

@Totati Totati added docs This issue is related to documentation needs triage This issue needs to be triaged by the team labels Jan 24, 2023
@wagnermaciel wagnermaciel added P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent area: cdk/drag-drop good first issue This issue is a good place to start for first time contributors to the project and removed needs triage This issue needs to be triaged by the team labels May 15, 2023
@Aditya-13
Copy link

Hey @Totati , i think the issue is fixed now. You can check and close this issue.

@Totati
Copy link
Contributor Author

Totati commented May 26, 2023

@Aditya-13, I can reproduce it with version 16.0.2 still.

@simonzea
Copy link

simonzea commented Aug 3, 2023

@Totati hey, is anybody working on it ? Otherwise i can try to fix it if you dont mind.

@simonzea
Copy link

simonzea commented Aug 3, 2023

Hey ! what i found looking into this bug is that is no a problem whit angular material cdk but with the web page where is displayed (https://github.com/angular/material.angular.io). There is a media class call.

@media (max-width: 720px) .docs-component-viewer-sidenav-container { flex: 1 0 auto; }

and this is affecting the auto scroll, if we remove the auto property (flex-basis).

@media (max-width: 720px) .docs-component-viewer-sidenav-container { flex: 1 0; }

works as expected, i will try to create an issue and a pr there.

@Xender007
Copy link

I tried in 17.0.5 and It's working as expected. please check and close this issue.
Let me know if you find anything else @Totati.

@Totati
Copy link
Contributor Author

Totati commented Jan 15, 2024

@Xender007 it's still not working for me, did you shrink your viewport?

@GiftLanga
Copy link
Contributor

@Xender007 I was able to reproduce the bug on version 17.3.1

When I inspect I see that the css class hasn't been updated.
image

@simonzea was your fix merged for release?

@abonvalle
Copy link

@Totati Is it still not working? I couldn't reproduce and I didn't find the docs-component-viewer-sidenav-container class

@Totati
Copy link
Contributor Author

Totati commented May 21, 2024

I can reproduce it in 17.3.6 and 18.0.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: cdk/drag-drop docs This issue is related to documentation good first issue This issue is a good place to start for first time contributors to the project P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
Projects
None yet
Development

No branches or pull requests

7 participants